148 lines
2.8 KiB
Plaintext
148 lines
2.8 KiB
Plaintext
package com.bonus.ma.beans;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* @author syruan
|
|
*/
|
|
public class ChangeWarning {
|
|
|
|
private Long id;
|
|
private String title;
|
|
private String deviceCode;
|
|
private String taskCode;
|
|
private String taskId;
|
|
private String typeId;
|
|
private String typeName;
|
|
private String deviceName;
|
|
private String deviceType;
|
|
private Double num;
|
|
private String warningContent;
|
|
private String createTime;
|
|
private String userName;
|
|
private String userRole;
|
|
private String userAvatar;
|
|
|
|
// Getters and Setters
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getTitle() {
|
|
return title;
|
|
}
|
|
|
|
public void setTitle(String title) {
|
|
this.title = title;
|
|
}
|
|
|
|
public String getDeviceCode() {
|
|
return deviceCode;
|
|
}
|
|
|
|
public void setDeviceCode(String deviceCode) {
|
|
this.deviceCode = deviceCode;
|
|
}
|
|
|
|
public String getWarningContent() {
|
|
return warningContent;
|
|
}
|
|
|
|
public void setWarningContent(String warningContent) {
|
|
this.warningContent = warningContent;
|
|
}
|
|
|
|
public String getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
public void setCreateTime(String createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
|
|
public String getUserName() {
|
|
return userName;
|
|
}
|
|
|
|
public void setUserName(String userName) {
|
|
this.userName = userName;
|
|
}
|
|
|
|
public String getUserRole() {
|
|
return userRole;
|
|
}
|
|
|
|
public void setUserRole(String userRole) {
|
|
this.userRole = userRole;
|
|
}
|
|
|
|
public String getUserAvatar() {
|
|
return userAvatar;
|
|
}
|
|
|
|
public void setUserAvatar(String userAvatar) {
|
|
this.userAvatar = userAvatar;
|
|
}
|
|
|
|
public String getTaskCode() {
|
|
return taskCode;
|
|
}
|
|
|
|
public void setTaskCode(String taskCode) {
|
|
this.taskCode = taskCode;
|
|
}
|
|
|
|
public String getTaskId() {
|
|
return taskId;
|
|
}
|
|
|
|
public void setTaskId(String taskId) {
|
|
this.taskId = taskId;
|
|
}
|
|
|
|
public String getTypeId() {
|
|
return typeId;
|
|
}
|
|
|
|
public void setTypeId(String typeId) {
|
|
this.typeId = typeId;
|
|
}
|
|
|
|
public String getTypeName() {
|
|
return typeName;
|
|
}
|
|
|
|
public void setTypeName(String typeName) {
|
|
this.typeName = typeName;
|
|
}
|
|
|
|
public Double getNum() {
|
|
return num;
|
|
}
|
|
|
|
public void setNum(Double num) {
|
|
this.num = num;
|
|
}
|
|
|
|
|
|
public String getDeviceName() {
|
|
return deviceName;
|
|
}
|
|
|
|
public void setDeviceName(String deviceName) {
|
|
this.deviceName = deviceName;
|
|
}
|
|
|
|
public String getDeviceType() {
|
|
return deviceType;
|
|
}
|
|
|
|
public void setDeviceType(String deviceType) {
|
|
this.deviceType = deviceType;
|
|
}
|
|
|
|
} |