| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /**
- * ShelvesAddDTO,货架添加对象 pt_shelves
- */
- export interface WarehouseShelfAddDTO {
- /**
- * 备注
- */
- remark?: string;
- /**
- * 货架名称
- */
- shelvesName?: string;
- /**
- * 货架编号
- */
- sn?: string;
- /**
- * 仓库ID
- */
- warehouseId: number;
- [property: string]: any;
- }
- /**
- * WarehouseAddDTO,仓库添加对象 pt_warehouse
- */
- export interface WarehouseAddDTO {
- /**
- * 仓库地址
- */
- address?: string;
- /**
- * 面积
- */
- area?: number;
- /**
- * 负责人ID
- */
- contact?: string;
- /**
- * 负责人
- */
- contactName?: string;
- /**
- * 仓库附加信息(json 字符串)
- */
- extraInfo?: string;
- /**
- * 备注
- */
- remark?: string;
- /**
- * 仓库编号
- */
- sn?: string;
- /**
- * 仓库条件
- */
- storageCondition?: string;
- /**
- * 联系电话
- */
- tel?: string;
- /**
- * 仓库类型
- */
- type?: string;
- /**
- * 仓库名称
- */
- warehouseName?: string;
- /** * 货架列表
- */
- shelves?: WarehouseShelfAddDTO[];
- [property: string]: any;
- }
|