| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- import java.util.List;
- /**
- * entity:TacProvincePblmInfo
- *
- * @author lune
- * @date 2020-5-28
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class TacProvincePblmInfoDingChuan extends BaseBean implements Serializable {
- @ApiModelProperty("主键ID")
- private String id;
- @ApiModelProperty("问题名称")
- private String problemName;
- @ApiModelProperty("严重等级:0一般,1较重,2严重")
- private String pblmPasi;
- @ApiModelProperty("主体单位名称,多个名称用','分隔")
- private String subjectNames;
- @ApiModelProperty("存在问题描述")
- private String pblmDesc;
- @ApiModelProperty("问题原因分析")
- private String pblmReason;
- @ApiModelProperty("整改意见或建议")
- private String pblmSggtn;
- @ApiModelProperty("问题序号")
- private String pblmSn;
- @ApiModelProperty("工作底稿类型")
- private String listType;
- @ApiModelProperty("专家姓名")
- private String persNm;
- @ApiModelProperty("创建时间(专家填写日期)")
- private Date intm;
- @ApiModelProperty("特派员姓名")
- private String spclNm;
- @ApiModelProperty("特派员复核意见")
- private String spclRvwOptn;
- @ApiModelProperty("备注")
- private String note;
- private List<TacPblmSubject> pblmSubjectList;
- @ApiModelProperty("附件信息")
- private List<GwComFile> gwComFileList;
- @ApiModelProperty("序号")
- private int sn;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getProblemName() {
- return problemName;
- }
- public void setProblemName(String problemName) {
- this.problemName = problemName;
- }
- public String getPblmPasi() {
- return pblmPasi;
- }
- public void setPblmPasi(String pblmPasi) {
- this.pblmPasi = pblmPasi;
- }
- public String getSubjectNames() {
- return subjectNames;
- }
- public void setSubjectNames(String subjectNames) {
- this.subjectNames = subjectNames;
- }
- public String getPblmDesc() {
- return pblmDesc;
- }
- public void setPblmDesc(String pblmDesc) {
- this.pblmDesc = pblmDesc;
- }
- public String getPblmReason() {
- return pblmReason;
- }
- public void setPblmReason(String pblmReason) {
- this.pblmReason = pblmReason;
- }
- public String getPblmSggtn() {
- return pblmSggtn;
- }
- public void setPblmSggtn(String pblmSggtn) {
- this.pblmSggtn = pblmSggtn;
- }
- public String getPblmSn() {
- return pblmSn;
- }
- public void setPblmSn(String pblmSn) {
- this.pblmSn = pblmSn;
- }
- public String getListType() {
- return listType;
- }
- public void setListType(String listType) {
- this.listType = listType;
- }
- public String getPersNm() {
- return persNm;
- }
- public void setPersNm(String persNm) {
- this.persNm = persNm;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public String getSpclNm() {
- return spclNm;
- }
- public void setSpclNm(String spclNm) {
- this.spclNm = spclNm;
- }
- public String getSpclRvwOptn() {
- return spclRvwOptn;
- }
- public void setSpclRvwOptn(String spclRvwOptn) {
- this.spclRvwOptn = spclRvwOptn;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public List<TacPblmSubject> getPblmSubjectList() {
- return pblmSubjectList;
- }
- public void setPblmSubjectList(List<TacPblmSubject> pblmSubjectList) {
- this.pblmSubjectList = pblmSubjectList;
- }
- public List<GwComFile> getGwComFileList() {
- return gwComFileList;
- }
- public void setGwComFileList(List<GwComFile> gwComFileList) {
- this.gwComFileList = gwComFileList;
- }
- public int getSn() {
- return sn;
- }
- public void setSn(int sn) {
- this.sn = sn;
- }
- }
|