添加产品流程批量配置功能

yun-zuoyi
宋军超 5 years ago
parent 82d5332861
commit f64a543a4a

@ -0,0 +1,27 @@
package cn.estsh.i3plus.pojo.mes.model;
import io.swagger.annotations.ApiParam;
import lombok.Data;
/**
* @Description : Model
* @Reference :
* @Author : adair
* @CreateDate : 2020-4-2
* @Modify:
**/
@Data
public class MesRouteCfgModel {
@ApiParam("物料号")
private String partNo;
@ApiParam("产品生产类型")
private String pptCode;
@ApiParam("工作中心代码")
private String workCenterCode;
@ApiParam("流程代码")
private String routeCode;
}

@ -0,0 +1,25 @@
package cn.estsh.i3plus.pojo.mes.model;
import io.swagger.annotations.ApiParam;
import lombok.Data;
import java.util.List;
/**
* @Description : Model
* @Reference :
* @Author : adair
* @CreateDate : 2020-4-2
* @Modify:
**/
@Data
public class MesRouteCfgParamModel {
@ApiParam("工序代码")
private String processCode;
@ApiParam("是否执行 1=是 2=否")
private Integer isActive;
List<MesRouteCfgStepModel> stepModelList;
}

@ -0,0 +1,22 @@
package cn.estsh.i3plus.pojo.mes.model;
import io.swagger.annotations.ApiParam;
import lombok.Data;
import java.util.List;
/**
* @Description : Model
* @Reference :
* @Author : adair
* @CreateDate : 2020-4-2
* @Modify:
**/
@Data
public class MesRouteCfgStepModel {
@ApiParam("工步代码")
private String stepCode;
List<MesRouteCfgModel> routeCfgModelList;
}
Loading…
Cancel
Save