Merge remote-tracking branch 'origin/master'
commit
eabf618a1a
@ -0,0 +1,104 @@
|
||||
package com.op.mes.domain.dto;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 料罐接口数据
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-07-03
|
||||
*/
|
||||
public class LGInfoDto {
|
||||
|
||||
private String deviceCode;
|
||||
private String deviceName;
|
||||
private String id;
|
||||
private String used;
|
||||
private String usedUnit;
|
||||
private String createDate;
|
||||
private Date lgCreateTime;
|
||||
private Date createTime;
|
||||
private String factoryCode;
|
||||
private String delFlag;
|
||||
|
||||
public Date getLgCreateTime() {
|
||||
return lgCreateTime;
|
||||
}
|
||||
|
||||
public void setLgCreateTime(Date lgCreateTime) {
|
||||
this.lgCreateTime = lgCreateTime;
|
||||
}
|
||||
|
||||
public String getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
|
||||
public void setCreateDate(String createDate) {
|
||||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
public String getDeviceCode() {
|
||||
return deviceCode;
|
||||
}
|
||||
|
||||
public void setDeviceCode(String deviceCode) {
|
||||
this.deviceCode = deviceCode;
|
||||
}
|
||||
|
||||
public String getUsed() {
|
||||
return used;
|
||||
}
|
||||
|
||||
public void setUsed(String used) {
|
||||
this.used = used;
|
||||
}
|
||||
|
||||
public String getUsedUnit() {
|
||||
return usedUnit;
|
||||
}
|
||||
|
||||
public void setUsedUnit(String usedUnit) {
|
||||
this.usedUnit = usedUnit;
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Date createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getFactoryCode() {
|
||||
return factoryCode;
|
||||
}
|
||||
|
||||
public void setFactoryCode(String factoryCode) {
|
||||
this.factoryCode = factoryCode;
|
||||
}
|
||||
|
||||
public String getDelFlag() {
|
||||
return delFlag;
|
||||
}
|
||||
|
||||
public void setDelFlag(String delFlag) {
|
||||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public String getDeviceName() {
|
||||
return deviceName;
|
||||
}
|
||||
|
||||
public void setDeviceName(String deviceName) {
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue