Merge branch 'dev'
# Conflicts: # modules/i3plus-pojo-andon/pom.xml # modules/i3plus-pojo-base/pom.xml # modules/i3plus-pojo-form/pom.xml # modules/i3plus-pojo-hardswitch/pom.xml # modules/i3plus-pojo-jobflow/pom.xml # modules/i3plus-pojo-lac/pom.xml # modules/i3plus-pojo-mes-pcn/pom.xml # modules/i3plus-pojo-mes/pom.xml # modules/i3plus-pojo-model/pom.xml # modules/i3plus-pojo-platform/pom.xml # modules/i3plus-pojo-report/pom.xml # modules/i3plus-pojo-softswitch/pom.xml # modules/i3plus-pojo-sweb/pom.xml # modules/i3plus-pojo-wms/pom.xml # modules/i3plus-pojo-workflow/pom.xml # pom.xmlyun-zuoyi
commit
47d4a53706
@ -0,0 +1,29 @@
|
||||
package cn.estsh.i3plus.pojo.model.wms;
|
||||
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsActionGroup;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsOptionModel;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @Description 作业流程缓存Model
|
||||
* @Reference
|
||||
* @Author dragon
|
||||
* @CreateDate 2019/7/24 22:16
|
||||
* @Modify
|
||||
*/
|
||||
@Data
|
||||
public class WmsAgCacheModel implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -330934023509433493L;
|
||||
@ApiParam("作业流程")
|
||||
public WmsActionGroup wmsActionGroup;
|
||||
@ApiParam("流程初始化自定义组件")
|
||||
public List<WmsOptionModel> options;
|
||||
@ApiParam("作业流程明细Model集合")
|
||||
public Map<String, WmsAgdCacheModel> wmsAgdCacheModelMap;
|
||||
}
|
@ -0,0 +1,28 @@
|
||||
package cn.estsh.i3plus.pojo.model.wms;
|
||||
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsActionGroupDetails;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsActionStepCall;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @Description 作业流程明细缓存Model
|
||||
* @Reference
|
||||
* @Author dragon
|
||||
* @CreateDate 2019/7/24 22:16
|
||||
* @Modify
|
||||
*/
|
||||
@Data
|
||||
public class WmsAgdCacheModel implements Serializable {
|
||||
private static final long serialVersionUID = -3299805919552300963L;
|
||||
@ApiParam("作业流程明细")
|
||||
public WmsActionGroupDetails wmsActionGroupDetails;
|
||||
@ApiParam("作业步骤调用")
|
||||
public List<WmsActionStepCall> wmsActionStepCallList;
|
||||
@ApiParam("作业步骤调用参数")
|
||||
public Map<Object,Object> wmsActionStepCallParamsMap;
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
package cn.estsh.i3plus.pojo.model.wms;
|
||||
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsActionModule;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsActionModuleParam;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description 作业处理组件缓存Model
|
||||
* @Reference
|
||||
* @Author dragon
|
||||
* @CreateDate 2019/7/24 22:17
|
||||
* @Modify
|
||||
*/
|
||||
@Data
|
||||
public class WmsAmCacheModel implements Serializable {
|
||||
private static final long serialVersionUID = 8940535584156105748L;
|
||||
@ApiParam("作业处理组件")
|
||||
public WmsActionModule wmsActionModule;
|
||||
@ApiParam("作业处理组件参数集合")
|
||||
public List<WmsActionModuleParam> wmsActionModuleParamList;
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue