@xj-hospital/data-dict
Advanced tools
Comparing version 1.0.4 to 1.0.7
{ | ||
"name": "@xj-hospital/data-dict", | ||
"version": "1.0.4", | ||
"version": "1.0.7", | ||
"description": "西京系统设置", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -67,5 +67,203 @@ import { DbSchema } from '@vmm/api'; | ||
} | ||
export interface ILog { | ||
/** | ||
* 用户日志事件,事件简述 如 场地管理-增加场地 (一级菜单-二级菜单) | ||
*/ | ||
action: string; | ||
/** | ||
* 用户操作数据库表名 如 会议表 请使用中文描述 | ||
*/ | ||
actionDbName?: string; | ||
/** | ||
* 用户操作数据库的内容 如 { 第五会议室 } 等,使用中文描述 | ||
*/ | ||
actionContent?: string; | ||
/** | ||
* 操作结果,可以为错误代码,操作失败描述等,成功则为null | ||
*/ | ||
actErr: string | null; | ||
/** | ||
* 操作人员信息 | ||
*/ | ||
actorName: string; | ||
actorId: string; | ||
/** | ||
* 操作IP | ||
*/ | ||
ip: string; | ||
createdTime: Date; | ||
} | ||
export interface IVenueKind { | ||
id: string; | ||
name: string; | ||
} | ||
export interface IPeople { | ||
userName: string; | ||
userPhone: string; | ||
} | ||
export interface IRepairGroup { | ||
id: string; | ||
loginName: string; | ||
} | ||
export interface IDevicesStatus { | ||
id: string; | ||
name: string; | ||
} | ||
export interface IDevicesPartMent { | ||
id: string; | ||
name: string; | ||
} | ||
export interface IDevicesType { | ||
id: string; | ||
name: string; | ||
} | ||
export interface IMediaTemplate { | ||
id: string; | ||
name: string; | ||
imageUrl: string; | ||
extId: string; | ||
} | ||
export interface IMindMeeting { | ||
id: string; | ||
minutes: number[]; | ||
} | ||
export interface IDomain { | ||
id: string; | ||
domainName: string; | ||
} | ||
export interface IMainShowModal { | ||
id: string; | ||
user: string; | ||
showModal: "精简模式" | "专业模式"; | ||
} | ||
export interface IVenueGroup { | ||
id: string; | ||
name: string; | ||
venues: any[]; | ||
control: any[]; | ||
check: any[]; | ||
} | ||
export interface ISettingText { | ||
id: string; | ||
send: "会议待审批提醒" | "审批通过提醒" | "参会通知" | "服务通知"; | ||
noticeSwitch: boolean; | ||
content: string; | ||
} | ||
export interface ICheckPeople { | ||
id: string; | ||
checkType: "直播审核" | "会议审核"; | ||
peopleArr: any[]; | ||
} | ||
export declare const schemas: { | ||
Patient: DbSchema<IPatient>; | ||
Drug: DbSchema<IDrug>; | ||
useLogs: DbSchema<{ | ||
id: string; | ||
createdTime: Date; | ||
detailTime: string; | ||
useName: string; | ||
useDept: string; | ||
deviceId: string; | ||
}>; | ||
dataDict: DbSchema<{ | ||
id: string; | ||
name: string; | ||
mentingLongDay: number; | ||
activeType: string; | ||
deviceType: string; | ||
meetingType: string; | ||
meetingColor: string; | ||
}>; | ||
systemDataDict: DbSchema<{ | ||
id: string; | ||
name: string | null; | ||
systemPrompt: string | null; | ||
logsDays: number | null; | ||
prompt: string | null; | ||
language: string | null; | ||
hompicPath: string | null; | ||
loginPicPath: string | null; | ||
messageLimitDays: number | null; | ||
domain: string | null; | ||
publishDomain: string | null; | ||
latestBookingTime: number | null; | ||
defaultMediaImage: string; | ||
defaultMediaVideo: string; | ||
workTimeRange: { | ||
start: string; | ||
end: string; | ||
}; | ||
tailNumber: string; | ||
holiday: string[]; | ||
nMinBeforeTheMeeting: number; | ||
nMinAfterTheMeeting: number; | ||
}>; | ||
meetingType: DbSchema<{ | ||
id: string; | ||
name: string; | ||
color: string; | ||
}>; | ||
devicesType: DbSchema<IDevicesType>; | ||
devicesStatus: DbSchema<IDevicesStatus>; | ||
devicesPartMent: DbSchema<IDevicesPartMent>; | ||
serviceType: DbSchema<{ | ||
id: string; | ||
name: string; | ||
relatedDepartmentId: string; | ||
relatedDepartment: string; | ||
}>; | ||
servicePro: DbSchema<{ | ||
id: string; | ||
name: string; | ||
serTypeId: string; | ||
serviceType: string; | ||
}>; | ||
loginPic: DbSchema<{ | ||
id: string; | ||
name: string; | ||
logPath: string; | ||
loginName: string; | ||
}>; | ||
homePic: DbSchema<{ | ||
id: string; | ||
name: string; | ||
homePath: string; | ||
picName: string; | ||
}>; | ||
sysLogs: DbSchema<{ | ||
/** | ||
* 用户日志事件,事件简述 如 场地管理-增加场地 (一级菜单-二级菜单) | ||
*/ | ||
action: string; | ||
/** | ||
* 用户操作数据库表名 如 会议表 请使用中文描述 | ||
*/ | ||
actionDbName?: string | undefined; | ||
/** | ||
* 用户操作数据库的内容 如 { 第五会议室 } 等,使用中文描述 | ||
*/ | ||
actionContent?: string | undefined; | ||
/** | ||
* 操作结果,可以为错误代码,操作失败描述等,成功则为null | ||
*/ | ||
actErr: string | null; | ||
/** | ||
* 操作人员信息 | ||
*/ | ||
actorName: string; | ||
actorId: string; | ||
/** | ||
* 操作IP | ||
*/ | ||
ip: string; | ||
createdTime: Date; | ||
}>; | ||
mediaTemplate: DbSchema<IMediaTemplate>; | ||
mindMeeting: DbSchema<IMindMeeting>; | ||
venueKind: DbSchema<IVenueKind>; | ||
repairGroup: DbSchema<IRepairGroup>; | ||
mainShowModal: DbSchema<IMainShowModal>; | ||
venueGroup: DbSchema<IVenueGroup>; | ||
settingText: DbSchema<ISettingText>; | ||
checkPeople: DbSchema<ICheckPeople>; | ||
}; |
@@ -1,1 +0,6 @@ | ||
export declare const sessions: {}; | ||
export declare const sessions: { | ||
res: { | ||
client: {}; | ||
server: {}; | ||
}; | ||
}; |
@@ -1,8 +0,19 @@ | ||
import Vue from 'vue'; | ||
import Vue from "vue"; | ||
declare const _default: import("vue/types/vue").ExtendedVue<Vue, { | ||
title: string; | ||
isShowCheckBgImgCard: boolean; | ||
loginBgImgUrl: string; | ||
isShowReplaceBgImgCard: boolean; | ||
uploadLoginBgImg: string; | ||
formItem: { | ||
input: string; | ||
}; | ||
}, {}, unknown, Record<never, any>>; | ||
}, { | ||
checkLoginBgImg(): void; | ||
submitCheckLoginBgImg(): void; | ||
openReplaceLoginBgImg(): void; | ||
closeReplaceLoginBgImg(): void; | ||
submitReplaceLoginBgImg(url: string): Promise<void>; | ||
initData(): Promise<void>; | ||
}, unknown, Record<never, any>>; | ||
export default _default; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1309328
23
443