Files
admin-vben5/apps/web-antd/src/api/property/productManagement/model.d.ts

155 lines
1.7 KiB
TypeScript
Raw Normal View History

2025-06-26 09:50:41 +08:00
import type { PageQuery, BaseEntity } from '#/api/common';
export interface PropertyVO {
/**
*
*/
id: string | number;
/**
*
*/
plantCode: string;
/**
*
*/
plantName: string;
/**
*
*/
plantType: number;
/**
*
*/
imgPath: string;
/**
*
*/
specification: string;
/**
*
*/
rent: number;
/**
*
*/
inventory: number;
/**
* 0 1
*/
state: number;
/**
*
*/
remark: string;
}
export interface PropertyForm extends BaseEntity {
/**
*
*/
id?: string | number;
/**
*
*/
plantCode?: string;
/**
*
*/
plantName?: string;
/**
*
*/
plantType?: number;
/**
*
*/
imgPath?: string;
/**
*
*/
specification?: string;
/**
*
*/
rent?: number;
/**
*
*/
inventory?: number;
/**
* 0 1
*/
state?: number;
/**
*
*/
remark?: string;
}
export interface PropertyQuery extends PageQuery {
/**
*
*/
plantCode?: string;
/**
*
*/
plantName?: string;
/**
*
*/
plantType?: number;
/**
*
*/
imgPath?: string;
/**
*
*/
specification?: string;
/**
*
*/
rent?: number;
/**
*
*/
inventory?: number;
/**
* 0 1
*/
state?: number;
/**
*
*/
params?: any;
}