初始版本提交

This commit is contained in:
yaoyn
2024-02-05 09:15:37 +08:00
parent b52d4414be
commit 445292105f
1848 changed files with 236859 additions and 75 deletions

View File

@ -0,0 +1,31 @@
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
export interface PropertyPageListParams {
propertyName?: string; //物料属性
createDate?: string; //创建时间
}
export interface PropertyAddParamsModel {
propertyName: string; //物料属性
state: number; //状态 0-关闭 1-开启
remark: string; //备注
}
export interface PropertyUpdateParamsModel {
id: string; //详情id
propertyName: string; //物料属性
state: number; //状态 0-关闭 1-开启
remark: string; //备注
}
export interface PropertyListModel {
id: string; //详情id
propertyName: string; //物料属性
createUserName: string; //创建人
createDate: string; //创建时间
state: number; //状态 0-关闭 1-开启
remark: string; //备注
}
export type PropertyPageListSearchModel = BasicPageParams & PropertyPageListParams;
export type PropertyPageListResultModel = BasicFetchResult<PropertyListModel>;