| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * entity:BisInspRecvUnit
- *
- * @author lhc
- * @date 2019-4-30
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspRecvUnitDto extends BaseBean implements Serializable {
- // ID
- @ApiModelProperty(value = "ID", name = "id")
- private String id;
- // 下发单位编码
- @ApiModelProperty(value = "下发单位编码", name = "orgId")
- private String orgId;
- // 是否查看
- @ApiModelProperty(value = "是否查看", name = "flagChk")
- private String flagChk;
- // COPY:抄送 RECV:接收
- @ApiModelProperty(value = "COPY:抄送 RECV:接收", name = "recvType")
- private String recvType;
- // 消息关闭人员
- @ApiModelProperty(value = "消息关闭人员", name = "persid")
- private String persid;
- // 通知ID
- @ApiModelProperty(value = "通知ID", name = "ntfctnId")
- private String ntfctnId;
- // 数据是否有效 1 0
- @ApiModelProperty(value = "数据是否有效 1 0 ", name = "flagValid")
- private String flagValid;
- @ApiModelProperty(value = "人员姓名", name = "persName")
- private String persName;//pers_name
- @ApiModelProperty(value = "单位名称", name = "orgNm")
- private String orgNm;//ORG_NM
- public BisInspRecvUnitDto() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- @Override
- public String getOrgId() {
- return orgId;
- }
- @Override
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- public String getFlagChk() {
- return flagChk;
- }
- public void setFlagChk(String flagChk) {
- this.flagChk = flagChk;
- }
- public String getRecvType() {
- return recvType;
- }
- public void setRecvType(String recvType) {
- this.recvType = recvType;
- }
- public String getPersid() {
- return persid;
- }
- public void setPersid(String persid) {
- this.persid = persid;
- }
- public String getNtfctnId() {
- return ntfctnId;
- }
- public void setNtfctnId(String ntfctnId) {
- this.ntfctnId = ntfctnId;
- }
- public String getFlagValid() {
- return flagValid;
- }
- public void setFlagValid(String flagValid) {
- this.flagValid = flagValid;
- }
- public String getPersName() {
- return persName;
- }
- public void setPersName(String persName) {
- this.persName = persName;
- }
- public String getOrgNm() {
- return orgNm;
- }
- public void setOrgNm(String orgNm) {
- this.orgNm = orgNm;
- }
- }
|