Files
admin-vben5/apps/web-antd/src/api/property/assetManage/depot/model.d.ts
dev_ljl a107323e36
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 6m27s
1、资产管理
2025-06-24 14:52:45 +08:00

90 lines
961 B
TypeScript

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;
}