Merge remote-tracking branch 'origin/dev' into dev
commit
0d40470059
@ -0,0 +1,35 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class RefreshInitModuleModel<T> implements Serializable {
|
||||||
|
|
||||||
|
@ApiParam("工作中心")
|
||||||
|
private String workCenterCode;
|
||||||
|
|
||||||
|
@ApiParam("工作单元")
|
||||||
|
private String workCellCode;
|
||||||
|
|
||||||
|
@ApiParam("组织代码")
|
||||||
|
private String organizeCode;
|
||||||
|
|
||||||
|
@ApiParam("用户信息")
|
||||||
|
private String userInfo;
|
||||||
|
|
||||||
|
@ApiParam("队列展示类型(有序/无序)")
|
||||||
|
private Object resultObj;
|
||||||
|
|
||||||
|
@ApiParam("展示组件定时刷新频率")
|
||||||
|
private Integer timer;
|
||||||
|
|
||||||
|
@ApiParam("List字段集")
|
||||||
|
private List<AttrBean> DataAttrList;
|
||||||
|
|
||||||
|
@ApiParam("List结果集")
|
||||||
|
private List<T> resultList;
|
||||||
|
}
|
@ -0,0 +1,32 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.enumutil.MesPcnEnumUtil;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesPlc;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Wynne.Lu
|
||||||
|
* @date 2020/7/21 00:33
|
||||||
|
* @desc
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class TimeModuleModel {
|
||||||
|
|
||||||
|
private MesPcnEnumUtil timeWay;
|
||||||
|
|
||||||
|
private Integer startTime;
|
||||||
|
|
||||||
|
private Integer endTime;
|
||||||
|
|
||||||
|
private Integer remindTime;
|
||||||
|
|
||||||
|
private String remindContent;
|
||||||
|
|
||||||
|
private String needTimeOutRecord;
|
||||||
|
|
||||||
|
private MesPlc agvRunningPlc;
|
||||||
|
|
||||||
|
private MesPlc mesWriteFlagPlc;
|
||||||
|
|
||||||
|
private MesPlc plcReadFlagPlc;
|
||||||
|
}
|
@ -0,0 +1,34 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: adair.song
|
||||||
|
* @CreateDate: 2020/07/25 14:21
|
||||||
|
* @Description:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@NoArgsConstructor
|
||||||
|
@AllArgsConstructor
|
||||||
|
@Api("工位队列信息model")
|
||||||
|
public class WorkCellPointInfoModel {
|
||||||
|
|
||||||
|
@ApiParam("工作中心")
|
||||||
|
private String workCenterCode;
|
||||||
|
|
||||||
|
@ApiParam("工作单元代码")
|
||||||
|
private String workCellCode;
|
||||||
|
|
||||||
|
@ApiParam("工作单元名称")
|
||||||
|
private String workCellName;
|
||||||
|
|
||||||
|
@ApiParam("Vin")
|
||||||
|
private String vinCode;
|
||||||
|
|
||||||
|
@ApiParam("组织代码")
|
||||||
|
private String organizeCode;
|
||||||
|
}
|
Loading…
Reference in New Issue