2025-06-18 11:03:42 +08:00
|
|
|
|
import type { PageQuery, BaseEntity } from '#/api/common';
|
|
|
|
|
|
|
|
|
|
export interface FactoryVO {
|
2025-06-19 09:50:46 +08:00
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
id: string | number;
|
|
|
|
|
|
2025-06-18 11:03:42 +08:00
|
|
|
|
/**
|
|
|
|
|
* 厂商编码
|
|
|
|
|
*/
|
|
|
|
|
factoryNo: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 设备厂商名称
|
|
|
|
|
*/
|
|
|
|
|
factoryName: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 备注
|
|
|
|
|
*/
|
|
|
|
|
remark: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 数据状态:1有效,0无效
|
|
|
|
|
*/
|
|
|
|
|
dataState: number;
|
|
|
|
|
|
2025-06-19 09:50:46 +08:00
|
|
|
|
/**
|
|
|
|
|
* 搜索值
|
|
|
|
|
*/
|
|
|
|
|
searchValue: string;
|
|
|
|
|
|
2025-06-18 11:03:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface FactoryForm extends BaseEntity {
|
|
|
|
|
/**
|
2025-06-19 09:50:46 +08:00
|
|
|
|
*
|
2025-06-18 11:03:42 +08:00
|
|
|
|
*/
|
|
|
|
|
id?: string | number;
|
|
|
|
|
|
2025-06-19 09:50:46 +08:00
|
|
|
|
/**
|
|
|
|
|
* 厂商编码
|
|
|
|
|
*/
|
|
|
|
|
factoryNo?: string;
|
|
|
|
|
|
2025-06-18 11:03:42 +08:00
|
|
|
|
/**
|
|
|
|
|
* 设备厂商名称
|
|
|
|
|
*/
|
|
|
|
|
factoryName?: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 备注
|
|
|
|
|
*/
|
|
|
|
|
remark?: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 数据状态:1有效,0无效
|
|
|
|
|
*/
|
|
|
|
|
dataState?: number;
|
|
|
|
|
|
2025-06-19 09:50:46 +08:00
|
|
|
|
/**
|
|
|
|
|
* 搜索值
|
|
|
|
|
*/
|
|
|
|
|
searchValue?: string;
|
|
|
|
|
|
2025-06-18 11:03:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface FactoryQuery extends PageQuery {
|
|
|
|
|
/**
|
|
|
|
|
* 厂商编码
|
|
|
|
|
*/
|
|
|
|
|
factoryNo?: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 设备厂商名称
|
|
|
|
|
*/
|
|
|
|
|
factoryName?: string;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 数据状态:1有效,0无效
|
|
|
|
|
*/
|
|
|
|
|
dataState?: number;
|
|
|
|
|
|
2025-06-19 09:50:46 +08:00
|
|
|
|
/**
|
|
|
|
|
* 搜索值
|
|
|
|
|
*/
|
|
|
|
|
searchValue?: string;
|
|
|
|
|
|
2025-06-18 11:03:42 +08:00
|
|
|
|
/**
|
|
|
|
|
* 日期范围参数
|
|
|
|
|
*/
|
|
|
|
|
params?: any;
|
|
|
|
|
}
|