|
@@ -126,16 +126,40 @@ export interface ItemQueryParams extends BaseQueryParams {
|
|
|
*/
|
|
|
export interface ItemRecord {
|
|
|
id: string;
|
|
|
- itemCode: string;
|
|
|
- itemName: string;
|
|
|
- specs: string;
|
|
|
- unit: string;
|
|
|
- category: string;
|
|
|
- brand: string;
|
|
|
- model: string;
|
|
|
- description: string;
|
|
|
- unitPrice: string;
|
|
|
- remark: string;
|
|
|
+ createUser: string;
|
|
|
+ createDept: string;
|
|
|
+ createTime: string;
|
|
|
+ updateUser: string;
|
|
|
+ updateTime: string;
|
|
|
+ status: number;
|
|
|
+ isDeleted: number;
|
|
|
+ ORG_ID: number;
|
|
|
+ ORG_CODE: string;
|
|
|
+ ORG_NAME: string;
|
|
|
+ Item_ID: number;
|
|
|
+ Item_Code: string;
|
|
|
+ Item_Name: string;
|
|
|
+ Item_PECS: string;
|
|
|
+ Item_Description: string | null;
|
|
|
+ Item_Code1: string;
|
|
|
+ Item_Code2: string;
|
|
|
+ MainItemCategory_ID: number;
|
|
|
+ MainItemCategory_Code: string;
|
|
|
+ MainItemCategory_Name: string;
|
|
|
+ InventoryInfo_ID: number;
|
|
|
+ InventoryInfo_Code: string;
|
|
|
+ InventoryInfo_Name: string;
|
|
|
+ Warehouse_ID: number | null;
|
|
|
+ Warehouse_Code: string | null;
|
|
|
+ Warehouse_Name: string | null;
|
|
|
+ Saleser_ID: number | null;
|
|
|
+ Saleser_CODE: string | null;
|
|
|
+ Saleser_NAME: string | null;
|
|
|
+ ShipmentWarehouse_ID: number | null;
|
|
|
+ ShipmentWarehouse_Code: string | null;
|
|
|
+ ShipmentWarehouse_Name: string | null;
|
|
|
+ createdon: string;
|
|
|
+ ModifiedOn: string;
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -151,4 +175,4 @@ export type CustomerDetailResponse = AxiosResponse<ApiResponseData<CustomerItem>
|
|
|
/**
|
|
|
* 物料列表响应类型
|
|
|
*/
|
|
|
-export type ItemListResponse = AxiosResponse<ApiResponseData<PageResult<ItemRecord>>>;
|
|
|
+export type ItemListResponse = AxiosResponse<ApiResponseData<PageResult<ItemRecord>>>;
|