This commit is contained in:
89
apps/web-antd/src/api/property/assetManage/depot/model.d.ts
vendored
Normal file
89
apps/web-antd/src/api/property/assetManage/depot/model.d.ts
vendored
Normal file
@@ -0,0 +1,89 @@
|
||||
import type { PageQuery, BaseEntity } from '#/api/common';
|
||||
|
||||
export interface DepotVO {
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
id: string | number;
|
||||
|
||||
/**
|
||||
* 类型名称
|
||||
*/
|
||||
depotName: string;
|
||||
|
||||
/**
|
||||
* 描述信息
|
||||
*/
|
||||
msg: string;
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
modelType: string;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
state: number;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
createTime: string;
|
||||
|
||||
}
|
||||
|
||||
export interface DepotForm extends BaseEntity {
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
id?: string | number;
|
||||
|
||||
/**
|
||||
* 类型名称
|
||||
*/
|
||||
depotName?: string;
|
||||
|
||||
/**
|
||||
* 描述信息
|
||||
*/
|
||||
msg?: string;
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
modelType?: string;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
state?: number;
|
||||
|
||||
}
|
||||
|
||||
export interface DepotQuery extends PageQuery {
|
||||
/**
|
||||
* 类型名称
|
||||
*/
|
||||
depotName?: string;
|
||||
|
||||
/**
|
||||
* 描述信息
|
||||
*/
|
||||
msg?: string;
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
modelType?: string;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
state?: number;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
params?: any;
|
||||
}
|
Reference in New Issue
Block a user