Merge branch 'test'
commit
51623754c7
@ -0,0 +1,24 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.model.wms;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsCSOrderMaster;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 盘点批量操作
|
||||||
|
* @author qianhs
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class WmsCSOrderMasterModel implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -5490167040159056107L;
|
||||||
|
|
||||||
|
@ApiParam("盘点订单主表")
|
||||||
|
public List<WmsCSOrderMaster> wmsCSOrderMasterList;
|
||||||
|
|
||||||
|
@ApiParam("工厂代码")
|
||||||
|
public String organizeCode;
|
||||||
|
}
|
@ -0,0 +1,36 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.model.wms;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 条码FIFO推荐
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jimmy.zeng
|
||||||
|
* @CreateDate : 2019-12-17 20:41
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
public class WmsStockFifoModel {
|
||||||
|
|
||||||
|
@ApiParam(value = "工厂代码")
|
||||||
|
String organizeCode;
|
||||||
|
|
||||||
|
@ApiParam(value = "物料集合")
|
||||||
|
List<String> partNos;
|
||||||
|
|
||||||
|
@ApiParam(value = "存储区集合")
|
||||||
|
List<String> zoneNos;
|
||||||
|
|
||||||
|
@ApiParam(value = "物料对应的存储区")
|
||||||
|
Map<String, String> partToZoneMap;
|
||||||
|
|
||||||
|
@ApiParam(value = "单据号")
|
||||||
|
String orderNo;
|
||||||
|
|
||||||
|
@ApiParam(value = "物料对应的存储区集合")
|
||||||
|
Map<String,List<String>> partToZonesMap;
|
||||||
|
}
|
Loading…
Reference in New Issue