240 lines
4.3 KiB
Plaintext
240 lines
4.3 KiB
Plaintext
package com.sercurityControl.proteam.dutyTask.domain;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 违章整改实体类
|
|
*/
|
|
public class NoticeVoiRectEntity implements Serializable {
|
|
|
|
private String usersParam;
|
|
|
|
private String scoreParam;
|
|
|
|
private String namesParam;
|
|
|
|
private String classParam;
|
|
|
|
|
|
/**
|
|
* id
|
|
*/
|
|
private String id;
|
|
|
|
/**
|
|
* 整改/申诉说明
|
|
*/
|
|
private String rectExplain;
|
|
|
|
/**
|
|
* 审核/驳回意见
|
|
*/
|
|
private String checkOpinion;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
private String createTime;
|
|
|
|
/**
|
|
* 违章单id
|
|
*/
|
|
private String notiId;
|
|
|
|
/**
|
|
* 创建日期
|
|
*/
|
|
private String createDate;
|
|
|
|
/**
|
|
* 责任单位
|
|
*/
|
|
private String dutyUnit;
|
|
/**
|
|
* 责任人
|
|
*/
|
|
private String dutyUser;
|
|
/**
|
|
* 整改完成时间
|
|
*/
|
|
private String rectFinshTime;
|
|
/**
|
|
* 联系人及电话
|
|
*/
|
|
private String contactPhone;
|
|
|
|
private String imagePath;
|
|
|
|
private String rectUser;
|
|
|
|
private String status;
|
|
|
|
private String isAppeal;
|
|
|
|
private List<String> base64List;
|
|
|
|
/** 1.值班员督查 2.地市督查*/
|
|
private String supType;
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getRectExplain() {
|
|
return rectExplain;
|
|
}
|
|
|
|
public void setRectExplain(String rectExplain) {
|
|
this.rectExplain = rectExplain;
|
|
}
|
|
|
|
public String getCheckOpinion() {
|
|
return checkOpinion;
|
|
}
|
|
|
|
public void setCheckOpinion(String checkOpinion) {
|
|
this.checkOpinion = checkOpinion;
|
|
}
|
|
|
|
public String getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
public void setCreateTime(String createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
|
|
public String getNotiId() {
|
|
return notiId;
|
|
}
|
|
|
|
public void setNotiId(String notiId) {
|
|
this.notiId = notiId;
|
|
}
|
|
|
|
public String getCreateDate() {
|
|
return createDate;
|
|
}
|
|
|
|
public void setCreateDate(String createDate) {
|
|
this.createDate = createDate;
|
|
}
|
|
|
|
public String getImagePath() {
|
|
return imagePath;
|
|
}
|
|
|
|
public void setImagePath(String imagePath) {
|
|
this.imagePath = imagePath;
|
|
}
|
|
|
|
public String getRectUser() {
|
|
return rectUser;
|
|
}
|
|
|
|
public void setRectUser(String rectUser) {
|
|
this.rectUser = rectUser;
|
|
}
|
|
|
|
public String getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(String status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public String getDutyUnit() {
|
|
return dutyUnit;
|
|
}
|
|
|
|
public void setDutyUnit(String dutyUnit) {
|
|
this.dutyUnit = dutyUnit;
|
|
}
|
|
|
|
public String getDutyUser() {
|
|
return dutyUser;
|
|
}
|
|
|
|
public void setDutyUser(String dutyUser) {
|
|
this.dutyUser = dutyUser;
|
|
}
|
|
|
|
public String getRectFinshTime() {
|
|
return rectFinshTime;
|
|
}
|
|
|
|
public void setRectFinshTime(String rectFinshTime) {
|
|
this.rectFinshTime = rectFinshTime;
|
|
}
|
|
|
|
public String getContactPhone() {
|
|
return contactPhone;
|
|
}
|
|
|
|
public void setContactPhone(String contactPhone) {
|
|
this.contactPhone = contactPhone;
|
|
}
|
|
|
|
public String getIsAppeal() {
|
|
return isAppeal;
|
|
}
|
|
|
|
public void setIsAppeal(String isAppeal) {
|
|
this.isAppeal = isAppeal;
|
|
}
|
|
|
|
public List<String> getBase64List() {
|
|
return base64List;
|
|
}
|
|
|
|
public void setBase64List(List<String> base64List) {
|
|
this.base64List = base64List;
|
|
}
|
|
|
|
public String getUsersParam() {
|
|
return usersParam;
|
|
}
|
|
|
|
public void setUsersParam(String usersParam) {
|
|
this.usersParam = usersParam;
|
|
}
|
|
|
|
public String getScoreParam() {
|
|
return scoreParam;
|
|
}
|
|
|
|
public void setScoreParam(String scoreParam) {
|
|
this.scoreParam = scoreParam;
|
|
}
|
|
|
|
public String getNamesParam() {
|
|
return namesParam;
|
|
}
|
|
|
|
public void setNamesParam(String namesParam) {
|
|
this.namesParam = namesParam;
|
|
}
|
|
|
|
public String getClassParam() {
|
|
return classParam;
|
|
}
|
|
|
|
public void setClassParam(String classParam) {
|
|
this.classParam = classParam;
|
|
}
|
|
|
|
public String getSupType() {
|
|
return supType;
|
|
}
|
|
|
|
public void setSupType(String supType) {
|
|
this.supType = supType;
|
|
}
|
|
}
|