【2077 06 1.2.3.8上架策略-4.5 新增上架推荐组件】
parent
3924be2504
commit
99f1ba98b6
@ -0,0 +1,41 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsTractics;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jimmy.zeng
|
||||||
|
* @CreateDate : 2020-06-15 13:21
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Api("策略返回model")
|
||||||
|
public class WmsStrategyModel {
|
||||||
|
|
||||||
|
@ApiParam(value = "物料编号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@ApiParam(value = "数量")
|
||||||
|
private Double qty;
|
||||||
|
|
||||||
|
@ApiParam(value = "工厂代码")
|
||||||
|
private String organizeCode;
|
||||||
|
|
||||||
|
@ApiParam("策略对象")
|
||||||
|
public WmsTractics wmsTractics;
|
||||||
|
|
||||||
|
@ApiParam("List结果集")
|
||||||
|
public List<Object> resultList;
|
||||||
|
|
||||||
|
@ApiParam("List结果集")
|
||||||
|
public List<Object> strategyList;
|
||||||
|
|
||||||
|
@ApiParam("返回错误信息")
|
||||||
|
public String errorMsg;
|
||||||
|
}
|
Loading…
Reference in New Issue