canteen_system/src/views/personnelManagement/departmentStructure/index.ts

58 lines
855 B
TypeScript
Raw Normal View History

2025-05-06 14:59:27 +08:00
export interface modelDefaultValue {
snowFlakeId?: string,
commodity: string,
specifications: string,
brand: string,
units:string,
commodityType:string,
inventory:string,
maxNumber:string,
warningValue:string,
replenishment?:string
}
export interface Role {
label: string
value: string
}
export interface userInterface {
2025-05-06 10:07:08 +08:00
/**
2025-05-06 14:59:27 +08:00
* @snowFlakeId
2025-05-06 10:07:08 +08:00
*/
2025-05-06 14:59:27 +08:00
snowFlakeId?: string
2025-05-06 10:07:08 +08:00
/**
2025-05-06 14:59:27 +08:00
* @name _必传
2025-05-06 10:07:08 +08:00
*/
name: string
/**
2025-05-06 14:59:27 +08:00
* @sex _必传
2025-05-06 10:07:08 +08:00
*/
2025-05-06 14:59:27 +08:00
sex: string
2025-05-06 10:07:08 +08:00
/**
2025-05-06 14:59:27 +08:00
* @phoneNumber _必传
2025-05-06 10:07:08 +08:00
*/
2025-05-06 14:59:27 +08:00
phoneNumber: string
2025-05-06 10:07:08 +08:00
/**
2025-05-06 14:59:27 +08:00
* @phoneNumber _必传
2025-05-06 10:07:08 +08:00
*/
2025-05-06 14:59:27 +08:00
status: string
/**
* @authClient _必传
*/
authClient: any[]
/**
* @deptIds id_必传
*/
deptIds?: any[]
/**
* @roleIds id_必传
*/
roleIds?: any[]
}