58 lines
855 B
TypeScript
58 lines
855 B
TypeScript
|
|
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 {
|
|
/**
|
|
* @snowFlakeId
|
|
*/
|
|
snowFlakeId?: string
|
|
/**
|
|
* @name 用户名_必传
|
|
*/
|
|
name: string
|
|
/**
|
|
* @sex 性别_必传
|
|
*/
|
|
sex: string
|
|
/**
|
|
* @phoneNumber 手机号_必传
|
|
*/
|
|
phoneNumber: string
|
|
/**
|
|
* @phoneNumber 账号状态_必传
|
|
*/
|
|
|
|
status: string
|
|
|
|
/**
|
|
* @authClient 授权的客户端_必传
|
|
*/
|
|
|
|
authClient: any[]
|
|
/**
|
|
* @deptIds 所属部门id_必传
|
|
*/
|
|
|
|
deptIds?: any[]
|
|
/**
|
|
* @roleIds 所属角色id_必传
|
|
*/
|
|
|
|
roleIds?: any[]
|
|
} |