Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 6m27s
90 lines
961 B
TypeScript
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;
|
|
}
|