Files
admin-vben5/apps/web-antd/src/api/sis/factory/model.d.ts
2025-07-21 03:38:19 +08:00

95 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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