12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- import {ListParams} from '.';
- /** 获取产成品出库流水列表 */
- export type GetFinishProductListStreamParams = {
- /** 物料名称
- *
- */
- /** 物料编号 */
- wllbCode: string;
- /** 开始时间 */
- startTime: string;
- /** 结束时间 */
- endTime: string;
- /**
- * 属性
- */
- attribute: string;
- /**
- * 物料名称
- */
- materialName: string;
- /**
- * 库位名称
- */
- storageLocationName: string;
- /**
- * 用户名称
- */
- userName: string;
- /** wbs编号 */
- wbs: string;
- /** 利道单号 */
- storageCode: string;
- } & ListParams;
- /** 其他出库 */
- export type OtherGoodsOutParams = {
- /** 物料code */
- wllbCode: string;
- /** 库位code */
- storageLocationCode: string;
- /** 出库数量 */
- num: string;
- /** 用户id */
- userId: string;
- /** 部门id */
- department: string;
- /** wbs编号 */
- wbs: string;
- /** 公司tldId */
- accountSleeve: string;
- };
|