Merge branch 'test' of http://git.estsh.com/i3-IMPP/i3plus-pojo into test
commit
d1fb133839
@ -0,0 +1,31 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description: 中航-产线状态图
|
||||
* @CreateDate: 2020/11/2
|
||||
* @Author: simon.song
|
||||
*/
|
||||
@Data
|
||||
public class MesBoardWorkCenterStatusModel {
|
||||
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@ApiParam("工作单元代码")
|
||||
private String workCellCode;
|
||||
|
||||
@ApiParam("实时节拍")
|
||||
private String realTimeTakt;
|
||||
|
||||
@ApiParam("工位状态列表")
|
||||
private List<MesWorkCellStatusModel> workCellStatusList;
|
||||
|
||||
@ApiParam("工位停线原因")
|
||||
private List<MesAndonManageQueueModel> workCellStopLineList;
|
||||
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class MesWorkCellStatusModel {
|
||||
|
||||
@ApiParam("工位运行状态")
|
||||
private String cellStatus;
|
||||
|
||||
@ApiParam("工作单元代码")
|
||||
private String workCellCode;
|
||||
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class MgnBoardListColorModel {
|
||||
|
||||
@ApiParam("产线")
|
||||
private String workCenterCode;
|
||||
|
||||
@ApiParam("颜色")
|
||||
private String color;
|
||||
|
||||
}
|
Loading…
Reference in New Issue