1、入驻人员

This commit is contained in:
2025-06-23 09:39:53 +08:00
parent 255481861a
commit 8c5d26c12e
12 changed files with 696 additions and 137 deletions

View File

@@ -167,3 +167,61 @@ export interface Resident_unitQuery extends PageQuery {
*/
params?: any;
}
export interface Unit extends BaseEntity {
/**
* id
*/
id?: string | number;
/**
* 入驻单位名称
*/
name?: string;
/**
* 单位编号
*/
unitNumber?: number;
/**
* 企业类型
*/
type?: number;
/**
* 联系人
*/
contactPerson?: string;
/**
* 联系电话
*/
phone?: number;
/**
* 入驻位置
*/
location?: string;
/**
* 入驻时间
*/
time?: string;
/**
* 状态
*/
state?: number;
/**
* 员工人数
*/
number?: number;
/**
* 备注
*/
remark?: string;
}