Merge remote-tracking branch 'origin/dev' into test
commit
21d3c053ca
@ -0,0 +1,30 @@
|
||||
package cn.estsh.i3plus.pojo.model.mes;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesRouteProcess;
|
||||
import cn.estsh.i3plus.pojo.model.wms.WmsActionGroupDetailsModel;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description : 流程Model
|
||||
* @Reference :
|
||||
* @Author : dragon.xu
|
||||
* @CreateDate : 2019-05-15 13:27
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("流程Model")
|
||||
public class MesRouteModel implements Serializable {
|
||||
@ApiParam("流程代码")
|
||||
public String routeCode;
|
||||
@ApiParam("工厂代码")
|
||||
public String organizeCode;
|
||||
@ApiParam("GOJS位置")
|
||||
public String position;
|
||||
@ApiParam("流程明细Model集合")
|
||||
public List<MesRouteProcessModel> mesRouteProcessModelList;
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
package cn.estsh.i3plus.pojo.model.mes;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesProdRouteOptParam;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesRouteProcess;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesRouteProcessStep;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.*;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @Description : 流程工序Model
|
||||
* @Reference :
|
||||
* @Author : dragon.xu
|
||||
* @CreateDate : 2019-04-29 15:39
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("流程工序Model")
|
||||
public class MesRouteProcessModel {
|
||||
@ApiParam("流程工序")
|
||||
public MesRouteProcess mesRouteProcess;
|
||||
@ApiParam("流程工步参数配置表(根据Seq分组)")
|
||||
public Map<String, List<MesRouteProcessStep>> mesRouteProcessStepMap;
|
||||
@ApiParam("流程工步参数配置表(根据Seq分组)")
|
||||
public Map<String, List<MesProdRouteOptParam>> mesProdRouteOptParamMap;
|
||||
}
|
Loading…
Reference in New Issue