| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import cn.com.goldenwater.dcproj.annotation.ExcelImport;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:BisInspAccunt
- *
- * @author lhc
- * @date 2022-3-17
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisInspAccunt extends BaseBean implements Serializable {
- // 主键ID
- @ApiModelProperty(value="主键ID",name="id")
- private String id;
- // 机构ID
- @ApiModelProperty(value="机构ID",name="orgId")
- private String orgId;
- // 数据所属行政区代码
- @ApiModelProperty(value="数据所属行政区代码",name="province")
- private String province;
- // 追责属性 1被上级追责 2对下级追责
- @ApiModelProperty(value="追责属性 1被上级追责 2对下级追责",name="accuntPrp")
- @ExcelImport(titleName = "追责属性", subString = 1, notNull = true)
- private String accuntPrp;
- // 追责事项
- @ApiModelProperty(value="追责事项",name="accuntMttr")
- @ExcelImport(titleName = "追责事项")
- private String accuntMttr;
- // 对象属性 1水行政主管部门 2市场主体 3自然人
- @ApiModelProperty(value="对象属性 1水行政主管部门 2市场主体 3自然人",name="accuntMprp")
- @ExcelImport(titleName = "对象属性", subString = 1, notNull = true)
- private String accuntMprp;
- // 被追责对象名称
- @ApiModelProperty(value="被追责对象名称",name="accuntName")
- @ExcelImport(titleName = "被追责对象名称", notNull = true)
- private String accuntName;
- // 被追责对象行政区编码
- @ApiModelProperty(value="被追责对象行政区编码",name="adCode")
- @ExcelImport(titleName = "行政区划编码", notNull = true)
- private String adCode;
- // 被追责对象行政区名称
- @ApiModelProperty(value="被追责对象行政区名称",name="adName")
- private String adName;
- // 被追责对象地址
- @ApiModelProperty(value="被追责对象地址",name="loc")
- private String loc;
- // 追责项目
- @ApiModelProperty(value="追责项目",name="accuntItem")
- @ExcelImport(titleName = "追责项目", notNull = true)
- private String accuntItem;
- // 追责种类1责令整改 2约谈 3 情况通报
- @ApiModelProperty(value="追责种类1责令整改 2约谈 3 情况通报",name="accuntKind")
- @ExcelImport(titleName = "追责种类", notNull = true)
- private String accuntKind;
- // 追责日期
- @ApiModelProperty(value="追责日期",name="accuntTm")
- @ExcelImport(titleName = "追责日期", notNull = true)
- private Date accuntTm;
- // 状态 1未发布 2 发布
- @ApiModelProperty(value="状态 1未发布 2 发布",name="accuntStat")
- private String accuntStat;
- // 备注
- @ApiModelProperty(value="备注",name="note")
- private String note;
- // 创建人
- @ApiModelProperty(value="创建人",name="persId")
- private String persId;
- // 创建时间
- @ApiModelProperty(value="创建时间",name="intm")
- private Date intm;
- // 修改时间
- @ApiModelProperty(value="修改时间",name="uptm")
- private Date uptm;
- // 数据状态(0:正常;9:删除)
- @ApiModelProperty(value="数据状态(0:正常;9:删除)",name="dataStat")
- private String dataStat;
- public String getUnitName() {
- return unitName;
- }
- public void setUnitName(String unitName) {
- this.unitName = unitName;
- }
- @ApiModelProperty(value="追责单位",name="unitName")
- @ExcelImport(titleName = "追责单位", notNull = true)
- private String unitName;
- public BisInspAccunt() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getOrgId() {
- return orgId;
- }
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- @Override
- public String getProvince() {
- return province;
- }
- @Override
- public void setProvince(String province) {
- this.province = province;
- }
- public String getAccuntPrp() {
- return accuntPrp;
- }
- public void setAccuntPrp(String accuntPrp) {
- this.accuntPrp = accuntPrp;
- }
- public String getAccuntMttr() {
- return accuntMttr;
- }
- public void setAccuntMttr(String accuntMttr) {
- this.accuntMttr = accuntMttr;
- }
- public String getAccuntMprp() {
- return accuntMprp;
- }
- public void setAccuntMprp(String accuntMprp) {
- this.accuntMprp = accuntMprp;
- }
- public String getAccuntName() {
- return accuntName;
- }
- public void setAccuntName(String accuntName) {
- this.accuntName = accuntName;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getAdName() {
- return adName;
- }
- public void setAdName(String adName) {
- this.adName = adName;
- }
- public String getLoc() {
- return loc;
- }
- public void setLoc(String loc) {
- this.loc = loc;
- }
- public String getAccuntItem() {
- return accuntItem;
- }
- public void setAccuntItem(String accuntItem) {
- this.accuntItem = accuntItem;
- }
- public String getAccuntKind() {
- return accuntKind;
- }
- public void setAccuntKind(String accuntKind) {
- this.accuntKind = accuntKind;
- }
- public Date getAccuntTm() {
- return accuntTm;
- }
- public void setAccuntTm(Date accuntTm) {
- this.accuntTm = accuntTm;
- }
- public String getAccuntStat() {
- return accuntStat;
- }
- public void setAccuntStat(String accuntStat) {
- this.accuntStat = accuntStat;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- @Override
- public String toString() {
- return "BisInspAccunt{" +
- "id='" + id + '\'' +
- ", orgId='" + orgId + '\'' +
- ", province='" + province + '\'' +
- ", accuntPrp='" + accuntPrp + '\'' +
- ", accuntMttr='" + accuntMttr + '\'' +
- ", accuntMprp='" + accuntMprp + '\'' +
- ", accuntName='" + accuntName + '\'' +
- ", adCode='" + adCode + '\'' +
- ", adName='" + adName + '\'' +
- ", loc='" + loc + '\'' +
- ", accuntItem='" + accuntItem + '\'' +
- ", accuntKind='" + accuntKind + '\'' +
- ", accuntTm=" + accuntTm +
- ", accuntStat='" + accuntStat + '\'' +
- ", note='" + note + '\'' +
- ", persId='" + persId + '\'' +
- ", intm=" + intm +
- ", uptm=" + uptm +
- ", dataStat='" + dataStat + '\'' +
- ", unitName='" + unitName + '\'' +
- '}';
- }
- }
|