@xj-hospital/basic-user
Advanced tools
Comparing version 1.0.34 to 1.0.39
{ | ||
"name": "@xj-hospital/basic-user", | ||
"version": "1.0.34", | ||
"version": "1.0.39", | ||
"description": "用户管理", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -35,3 +35,6 @@ import { DbSchema } from '@vmm/api'; | ||
computed = 8, | ||
img = 9 | ||
img = 9, | ||
dateRange = 10, | ||
file = 11, | ||
medicine = 12 | ||
} | ||
@@ -144,2 +147,17 @@ export declare const Formula: string[]; | ||
} | ||
/** | ||
* 统计信息模版 | ||
*/ | ||
export interface IDataStatTemplate { | ||
id: string; | ||
did: string; | ||
gid: string; | ||
db: string; | ||
name: string; | ||
engName: string; | ||
description?: string; | ||
collectionName: string; | ||
index: number; | ||
calcLogic: any; | ||
} | ||
export declare const schemas: { | ||
@@ -152,2 +170,3 @@ Disease: DbSchema<IDisease>; | ||
DefinitionGroup: DbSchema<IDefinitionGroup>; | ||
DataStatTemplate: DbSchema<IDataStatTemplate>; | ||
}; |
@@ -41,2 +41,3 @@ import { DbSchema } from "@vmm/api"; | ||
topicRight?: string[]; | ||
reviewRight?: string[]; | ||
permissions?: {}; | ||
@@ -43,0 +44,0 @@ headImg: string; |
@@ -13,2 +13,3 @@ import { IPERMISSIONS } from '../db/DbSchema'; | ||
topicRight: string[]; | ||
reviewRight: string[]; | ||
department: string[]; | ||
@@ -15,0 +16,0 @@ permissions: IPERMISSIONS[]; |
@@ -7,19 +7,18 @@ /** | ||
sysLog: import("@vmm/api/types/apiBase").IAPI<{ | ||
/** | ||
* 用户日志事件,事件简述 如 场地管理-增加场地 (一级菜单-二级菜单) | ||
*/ | ||
action: string; | ||
/** | ||
* 用户操作数据库表名 如 会议表 请使用中文描述 | ||
*/ | ||
logType?: string | undefined; | ||
subType?: string | undefined; | ||
ip?: string | undefined; | ||
createdTime?: Date | undefined; | ||
actorName?: string | undefined; | ||
actorAccount?: string | undefined; | ||
actorId?: string | undefined; | ||
act: string; | ||
objectType: string; | ||
objectName: string; | ||
objectId?: string | undefined; | ||
remark?: string | undefined; | ||
action?: string | undefined; | ||
actionDbName?: string | undefined; | ||
/** | ||
* 用户操作数据库的内容 如 { 第五会议室 } 等,使用中文描述 | ||
*/ | ||
actionContent?: string | undefined; | ||
/** | ||
/** | ||
* 操作结果,可以为错误代码,操作失败描述等,成功则为null | ||
*/ | ||
actErr: string | null; | ||
actErr?: string | null | undefined; | ||
}, { | ||
@@ -26,0 +25,0 @@ /** |
@@ -67,34 +67,188 @@ import { DbSchema } from '@vmm/api'; | ||
} | ||
export interface systemDataDict { | ||
id: string; | ||
name: 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; | ||
} | ||
export interface ILog { | ||
/** | ||
* 用户日志事件,事件简述 如 场地管理-增加场地 (一级菜单-二级菜单) | ||
*/ | ||
action: string; | ||
/** | ||
* 用户操作数据库表名 如 会议表 请使用中文描述 | ||
*/ | ||
logType?: string; | ||
subType?: string; | ||
ip?: string; | ||
createdTime?: Date; | ||
actorName?: string; | ||
actorAccount?: string; | ||
actorId?: string; | ||
act: string; | ||
objectType: string; | ||
objectName: string; | ||
objectId?: string; | ||
remark?: string; | ||
action?: string; | ||
actionDbName?: string; | ||
/** | ||
* 用户操作数据库的内容 如 { 第五会议室 } 等,使用中文描述 | ||
*/ | ||
actionContent?: string; | ||
/** | ||
* 操作结果,可以为错误代码,操作失败描述等,成功则为null | ||
*/ | ||
actErr: string | null; | ||
/** | ||
* 操作人员信息 | ||
*/ | ||
actorName: string; | ||
actorId: string; | ||
/** | ||
* 操作IP | ||
*/ | ||
ip: string; | ||
createdTime: Date; | ||
actErr?: string | null; | ||
} | ||
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; | ||
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<ILog>; | ||
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: {}; | ||
}; | ||
}; |
@@ -50,3 +50,3 @@ import Vue from 'vue'; | ||
onClickUser(u: any): void; | ||
}, unknown, Record<"isHide" | "checkedUsers" | "extCheckedUsers" | "conflict", any>>; | ||
}, unknown, Record<"checkedUsers" | "isHide" | "extCheckedUsers" | "conflict", 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
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
3336245
13362
3