1、入驻管理
This commit is contained in:
169
apps/web-antd/src/api/property/resident/unit/model.d.ts
vendored
Normal file
169
apps/web-antd/src/api/property/resident/unit/model.d.ts
vendored
Normal file
@@ -0,0 +1,169 @@
|
||||
import type { PageQuery, BaseEntity } from '#/api/common';
|
||||
|
||||
export interface Resident_unitVO {
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
id: string | number;
|
||||
|
||||
/**
|
||||
* 入驻单位名称
|
||||
*/
|
||||
name: string;
|
||||
|
||||
/**
|
||||
* 单位编号
|
||||
*/
|
||||
unitNumber: number;
|
||||
|
||||
/**
|
||||
* 企业类型
|
||||
*/
|
||||
type: number;
|
||||
|
||||
/**
|
||||
* 联系人
|
||||
*/
|
||||
contactPerson: string;
|
||||
|
||||
/**
|
||||
* 联系电话
|
||||
*/
|
||||
phone: number;
|
||||
|
||||
/**
|
||||
* 入驻位置
|
||||
*/
|
||||
location: string;
|
||||
|
||||
/**
|
||||
* 入驻时间
|
||||
*/
|
||||
time: string;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
state: number;
|
||||
|
||||
/**
|
||||
* 员工人数
|
||||
*/
|
||||
number: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
remark: string;
|
||||
|
||||
}
|
||||
|
||||
export interface Resident_unitForm 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;
|
||||
|
||||
}
|
||||
|
||||
export interface Resident_unitQuery extends PageQuery {
|
||||
/**
|
||||
* 入驻单位名称
|
||||
*/
|
||||
name?: string;
|
||||
|
||||
/**
|
||||
* 单位编号
|
||||
*/
|
||||
unitNumber?: number;
|
||||
|
||||
/**
|
||||
* 企业类型
|
||||
*/
|
||||
type?: number;
|
||||
|
||||
/**
|
||||
* 联系人
|
||||
*/
|
||||
contactPerson?: string;
|
||||
|
||||
/**
|
||||
* 联系电话
|
||||
*/
|
||||
phone?: number;
|
||||
|
||||
/**
|
||||
* 入驻位置
|
||||
*/
|
||||
location?: string;
|
||||
|
||||
/**
|
||||
* 入驻时间
|
||||
*/
|
||||
time?: string;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
state?: number;
|
||||
|
||||
/**
|
||||
* 员工人数
|
||||
*/
|
||||
number?: number;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
params?: any;
|
||||
}
|
Reference in New Issue
Block a user