346 lines
7.9 KiB
Plaintext
346 lines
7.9 KiB
Plaintext
package com.sercurityControl.proteam.dutyTask.domain;
|
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* 违章通知记录实体类
|
|
*/
|
|
public class NoticeVioEntity2 extends BasicEntity implements Serializable {
|
|
|
|
/**
|
|
* id
|
|
*/
|
|
@Excel(name = "序号", width = 10.0, orderNum = "0")
|
|
private String id;
|
|
|
|
/**
|
|
* 作业票编号
|
|
*/
|
|
@Excel(name = "作业票编号", width = 20.0, orderNum = "1")
|
|
private String ticketNo;
|
|
|
|
/**
|
|
* 标段工程名称
|
|
*/
|
|
@Excel(name = "工程名称", width = 20.0, orderNum = "2")
|
|
private String proName;
|
|
|
|
/**
|
|
* 风险等级
|
|
*/
|
|
@Excel(name = "风险等级", width = 20.0, orderNum = "3")
|
|
private String riskLevel;
|
|
/**
|
|
* 建管单位
|
|
*/
|
|
@Excel(name = "违章单位", width = 20.0, orderNum = "4")
|
|
private String org;
|
|
@Excel(name = "违章类型", width = 20.0, orderNum = "5")
|
|
private String type;
|
|
/**
|
|
* 违章等级
|
|
*/
|
|
@Excel(name = "违章等级", width = 20.0, orderNum = "6")
|
|
private String levelId;
|
|
/**
|
|
* 违章内容
|
|
*/
|
|
@Excel(name = "违章内容", width = 20.0, orderNum = "7")
|
|
private String content;
|
|
/**
|
|
* 督查时间
|
|
*/
|
|
@Excel(name = "督查时间", width = 20.0, orderNum = "8")
|
|
private String createTime;
|
|
/**
|
|
* 下发人
|
|
*/
|
|
@Excel(name = "督查人", width = 20.0, orderNum = "9")
|
|
private String issUser;
|
|
|
|
/**
|
|
* 状态
|
|
*/
|
|
@Excel(name = "状态", width = 20.0, orderNum = "17")
|
|
private String status;
|
|
|
|
|
|
@Excel(name = "监理单位", width = 20.0, orderNum = "10")
|
|
private String jlUnit;
|
|
@Excel(name = "施工单位", width = 20.0, orderNum = "11")
|
|
private String sgUnit;
|
|
@Excel(name = "违章条款", width = 20.0, orderNum = "12")
|
|
private String voiTerm;
|
|
@Excel(name = "班组长及电话", width = 20.0, orderNum = "13")
|
|
private String contactPhone;
|
|
|
|
@Excel(name = "业主项目经理", width = 20.0, orderNum = "14")
|
|
private String yz;
|
|
@Excel(name = "总监理工程师", width = 20.0, orderNum = "15")
|
|
private String jl;
|
|
@Excel(name = "施工项目经理", width = 20.0, orderNum = "16")
|
|
private String sg;
|
|
/**
|
|
* 来源
|
|
*/
|
|
@Excel(name = "来源", width = 20.0, orderNum = "18")
|
|
private String resource;
|
|
|
|
@Excel(name = "违章照片", width = 24.0, height = 24.0, orderNum = "19", type = 2, imageType = 2)
|
|
private byte[] disPhoto;
|
|
@Excel(name = "违章照片2", width = 24.0, height = 24.0, orderNum = "20", type = 2, imageType = 2)
|
|
private byte[] disPhoto2;
|
|
@Excel(name = "违章照片3", width = 24.0, height = 24.0, orderNum = "21", type = 2, imageType = 2)
|
|
private byte[] disPhoto3;
|
|
@Excel(name = "违章照片4", width = 24.0, height = 24.0, orderNum = "22", type = 2, imageType = 2)
|
|
private byte[] disPhoto4;
|
|
@Excel(name = "违章照片5", width = 24.0, height = 24.0, orderNum = "23", type = 2, imageType = 2)
|
|
private byte[] disPhoto5;
|
|
@Excel(name = "违章照片6", width = 24.0, height = 24.0, orderNum = "24", type = 2, imageType = 2)
|
|
private byte[] disPhoto6;
|
|
@Excel(name = "违章照片7", width = 24.0, height = 24.0, orderNum = "25", type = 2, imageType = 2)
|
|
private byte[] disPhoto7;
|
|
@Excel(name = "违章照片8", width = 24.0, height = 24.0, orderNum = "26", type = 2, imageType = 2)
|
|
private byte[] disPhoto8;
|
|
@Excel(name = "违章照片9", width = 24.0, height = 24.0, orderNum = "27", type = 2, imageType = 2)
|
|
private byte[] disPhoto9;
|
|
@Excel(name = "违章照片10", width = 24.0, height = 24.0, orderNum = "28", type = 2, imageType = 2)
|
|
private byte[] disPhoto10;
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getTicketNo() {
|
|
return ticketNo;
|
|
}
|
|
|
|
public void setTicketNo(String ticketNo) {
|
|
this.ticketNo = ticketNo;
|
|
}
|
|
|
|
public String getProName() {
|
|
return proName;
|
|
}
|
|
|
|
public void setProName(String proName) {
|
|
this.proName = proName;
|
|
}
|
|
|
|
public String getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
public void setCreateTime(String createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
|
|
|
|
public String getLevelId() {
|
|
return levelId;
|
|
}
|
|
|
|
public void setLevelId(String levelId) {
|
|
this.levelId = levelId;
|
|
}
|
|
|
|
public String getContent() {
|
|
return content;
|
|
}
|
|
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
}
|
|
|
|
public String getOrg() {
|
|
return org;
|
|
}
|
|
|
|
public void setOrg(String org) {
|
|
this.org = org;
|
|
}
|
|
|
|
public String getIssUser() {
|
|
return issUser;
|
|
}
|
|
|
|
public void setIssUser(String issUser) {
|
|
this.issUser = issUser;
|
|
}
|
|
|
|
public String getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(String status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public String getRiskLevel() {
|
|
return riskLevel;
|
|
}
|
|
|
|
public void setRiskLevel(String riskLevel) {
|
|
this.riskLevel = riskLevel;
|
|
}
|
|
|
|
|
|
public String getJlUnit() {
|
|
return jlUnit;
|
|
}
|
|
|
|
public void setJlUnit(String jlUnit) {
|
|
this.jlUnit = jlUnit;
|
|
}
|
|
|
|
public String getSgUnit() {
|
|
return sgUnit;
|
|
}
|
|
|
|
public void setSgUnit(String sgUnit) {
|
|
this.sgUnit = sgUnit;
|
|
}
|
|
|
|
public String getVoiTerm() {
|
|
return voiTerm;
|
|
}
|
|
|
|
public void setVoiTerm(String voiTerm) {
|
|
this.voiTerm = voiTerm;
|
|
}
|
|
|
|
public String getContactPhone() {
|
|
return contactPhone;
|
|
}
|
|
|
|
public void setContactPhone(String contactPhone) {
|
|
this.contactPhone = contactPhone;
|
|
}
|
|
|
|
public byte[] getDisPhoto() {
|
|
return disPhoto;
|
|
}
|
|
|
|
public void setDisPhoto(byte[] disPhoto) {
|
|
this.disPhoto = disPhoto;
|
|
}
|
|
|
|
public byte[] getDisPhoto2() {
|
|
return disPhoto2;
|
|
}
|
|
|
|
public void setDisPhoto2(byte[] disPhoto2) {
|
|
this.disPhoto2 = disPhoto2;
|
|
}
|
|
|
|
public byte[] getDisPhoto3() {
|
|
return disPhoto3;
|
|
}
|
|
|
|
public void setDisPhoto3(byte[] disPhoto3) {
|
|
this.disPhoto3 = disPhoto3;
|
|
}
|
|
|
|
public byte[] getDisPhoto4() {
|
|
return disPhoto4;
|
|
}
|
|
|
|
public void setDisPhoto4(byte[] disPhoto4) {
|
|
this.disPhoto4 = disPhoto4;
|
|
}
|
|
|
|
public byte[] getDisPhoto5() {
|
|
return disPhoto5;
|
|
}
|
|
|
|
public void setDisPhoto5(byte[] disPhoto5) {
|
|
this.disPhoto5 = disPhoto5;
|
|
}
|
|
|
|
public byte[] getDisPhoto6() {
|
|
return disPhoto6;
|
|
}
|
|
|
|
public void setDisPhoto6(byte[] disPhoto6) {
|
|
this.disPhoto6 = disPhoto6;
|
|
}
|
|
|
|
public byte[] getDisPhoto7() {
|
|
return disPhoto7;
|
|
}
|
|
|
|
public void setDisPhoto7(byte[] disPhoto7) {
|
|
this.disPhoto7 = disPhoto7;
|
|
}
|
|
|
|
public byte[] getDisPhoto8() {
|
|
return disPhoto8;
|
|
}
|
|
|
|
public void setDisPhoto8(byte[] disPhoto8) {
|
|
this.disPhoto8 = disPhoto8;
|
|
}
|
|
|
|
public byte[] getDisPhoto9() {
|
|
return disPhoto9;
|
|
}
|
|
|
|
public void setDisPhoto9(byte[] disPhoto9) {
|
|
this.disPhoto9 = disPhoto9;
|
|
}
|
|
|
|
public byte[] getDisPhoto10() {
|
|
return disPhoto10;
|
|
}
|
|
|
|
public void setDisPhoto10(byte[] disPhoto10) {
|
|
this.disPhoto10 = disPhoto10;
|
|
}
|
|
|
|
public String getYz() {
|
|
return yz;
|
|
}
|
|
|
|
public void setYz(String yz) {
|
|
this.yz = yz;
|
|
}
|
|
|
|
public String getJl() {
|
|
return jl;
|
|
}
|
|
|
|
public void setJl(String jl) {
|
|
this.jl = jl;
|
|
}
|
|
|
|
public String getSg() {
|
|
return sg;
|
|
}
|
|
|
|
public void setSg(String sg) {
|
|
this.sg = sg;
|
|
}
|
|
|
|
public String getResource() {
|
|
return resource;
|
|
}
|
|
|
|
public void setResource(String resource) {
|
|
this.resource = resource;
|
|
}
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
}
|