forked from I3-YF/i3plus-mes-pcn-yfai
Merge branch 'uat-temp-wj-chongqingdaqu-prod-huaweiyun' into yfai-20250418-dev
commit
a572836ee9
@ -1,49 +0,0 @@
|
||||
package cn.estsh.i3plus.ext.mes.pcn.pojo.context;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 生产过程上下文对象-开模记录明细信息
|
||||
*/
|
||||
@Data
|
||||
public class MesScanMonitorDetailContext implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -7678933218854960945L;
|
||||
|
||||
@ApiParam("扫描/读取信息")
|
||||
private String scanInfo;
|
||||
|
||||
@ApiParam("日志类型")
|
||||
private Integer logType;
|
||||
|
||||
@ApiParam("日志内容")
|
||||
private String message;
|
||||
|
||||
@ApiParam("信息类型")
|
||||
private Integer messageType;
|
||||
|
||||
public MesScanMonitorDetailContext() {}
|
||||
|
||||
public MesScanMonitorDetailContext(Integer logType) {
|
||||
this.logType = logType;
|
||||
}
|
||||
|
||||
public MesScanMonitorDetailContext scanInfo(String scanInfo) {
|
||||
this.scanInfo = scanInfo;
|
||||
return this;
|
||||
}
|
||||
|
||||
public MesScanMonitorDetailContext message(String message) {
|
||||
this.message = message;
|
||||
return this;
|
||||
}
|
||||
|
||||
public MesScanMonitorDetailContext messageType(Integer messageType) {
|
||||
this.messageType = messageType;
|
||||
return this;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue