| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:BisInsNtfctn
- *
- * @author lhc
- * @date 2019-4-30
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInsNtfctn extends BaseBean implements Serializable {
- private String id;
- // 督查类型 001:水库 002人饮 003水毁 004:172 地下水005地下水006水闸
- @ApiModelProperty(value = "督查类型 001:水库 002人饮 003水毁 004:172 地下水005地下水006水闸", name = "inspType")
- private String inspType;
- // 计划名称
- @ApiModelProperty(value = "计划名称", name = "plnNm")
- private String plnNm;
- // 年度
- @ApiModelProperty(value = "年度", name = "planYr")
- private Long planYr;
- // 公文号
- @ApiModelProperty(value = "公文号", name = "planNo")
- private String planNo;
- // 下发单位编码
- @ApiModelProperty(value = "下发单位编码", name = "orgId")
- private String orgId;
- // 发文单位
- @ApiModelProperty(value = "发文单位", name = "planUnt")
- private String planUnt;
- // 下发状态
- @ApiModelProperty(value = "下发状态", name = "planUnt")
- private String sendState;
- // 发文时间
- @ApiModelProperty(value = "发文时间", name = "intm")
- private Date intm;
- // 督查内容简述
- @ApiModelProperty(value = "督查内容简述", name = "planCnt")
- private String planCnt;
- // 车辆安排简述
- @ApiModelProperty(value = "车辆安排简述", name = "planCar")
- private String planCar;
- // 发文人ID
- @ApiModelProperty(value = "发文人ID", name = "pesrid")
- private String pesrid;
- // 数据是否有效 1 0
- @ApiModelProperty(value = "数据是否有效 1 0 ", name = "flagValid")
- private String flagValid;
- @ApiModelProperty(value = "接收单位编码", name = "recvOrgId")
- private String recvOrgId;
- @ApiModelProperty(value = "抄送单位编码", name = "copyOrgId")
- private String copyOrgId;
- public String getRecvOrgId() {
- return recvOrgId;
- }
- public void setRecvOrgId(String recvOrgId) {
- this.recvOrgId = recvOrgId;
- }
- public String getCopyOrgId() {
- return copyOrgId;
- }
- public void setCopyOrgId(String copyOrgId) {
- this.copyOrgId = copyOrgId;
- }
- public BisInsNtfctn() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getInspType() {
- return inspType;
- }
- public void setInspType(String inspType) {
- this.inspType = inspType;
- }
- public String getPlnNm() {
- return plnNm;
- }
- public void setPlnNm(String plnNm) {
- this.plnNm = plnNm;
- }
- public Long getPlanYr() {
- return planYr;
- }
- public void setPlanYr(Long planYr) {
- this.planYr = planYr;
- }
- public String getPlanNo() {
- return planNo;
- }
- public void setPlanNo(String planNo) {
- this.planNo = planNo;
- }
- @Override
- public String getOrgId() {
- return orgId;
- }
- @Override
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- public String getPlanUnt() {
- return planUnt;
- }
- public void setPlanUnt(String planUnt) {
- this.planUnt = planUnt;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public String getPlanCnt() {
- return planCnt;
- }
- public void setPlanCnt(String planCnt) {
- this.planCnt = planCnt;
- }
- public String getPlanCar() {
- return planCar;
- }
- public void setPlanCar(String planCar) {
- this.planCar = planCar;
- }
- public String getPesrid() {
- return pesrid;
- }
- public void setPesrid(String pesrid) {
- this.pesrid = pesrid;
- }
- public String getFlagValid() {
- return flagValid;
- }
- public void setFlagValid(String flagValid) {
- this.flagValid = flagValid;
- }
- public String getSendState() {
- return sendState;
- }
- public void setSendState(String sendState) {
- this.sendState = sendState;
- }
- @Override
- public String toString() {
- return "BisInsNtfctn{" +
- "id='" + id + '\'' +
- ", inspType='" + inspType + '\'' +
- ", plnNm='" + plnNm + '\'' +
- ", planYr=" + planYr +
- ", planNo='" + planNo + '\'' +
- ", orgId='" + orgId + '\'' +
- ", planUnt='" + planUnt + '\'' +
- ", sendState='" + sendState + '\'' +
- ", intm=" + intm +
- ", planCnt='" + planCnt + '\'' +
- ", planCar='" + planCar + '\'' +
- ", pesrid='" + pesrid + '\'' +
- ", flagValid='" + flagValid + '\'' +
- ", recvOrgId='" + recvOrgId + '\'' +
- ", copyOrgId='" + copyOrgId + '\'' +
- '}';
- }
- }
|