| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.List;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:ObjKeyPblmRel
- *
- * @author lune
- * @date 2019-4-25
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class ObjKeyPblmRel extends BaseBean implements Serializable {
- // 项目类型
- private String type;
- // 项目子类型:督查分类
- private String proType;
- // 责任单位
- private String reviOrg;
- // 问题类别
- private String pblmType;
- // 对应标准
- private String pblmPoint;
- // 问题附件
- private String pblmAttach;
- // 附件序号范围
- private String pblmSn;
- @ApiModelProperty("单位性质id")
- private String orgType;
- @ApiModelProperty("附件名称")
- private String pblmAttachName;
- @ApiModelProperty("附件名称,附件序号列表")
- private List<PblmRelDic> pblmRelDics;
- public List<PblmRelDic> getPblmRelDics() {
- return pblmRelDics;
- }
- public void setPblmRelDics(List<PblmRelDic> pblmRelDics) {
- this.pblmRelDics = pblmRelDics;
- }
- public String getPblmAttachName() {
- return pblmAttachName;
- }
- public void setPblmAttachName(String pblmAttachName) {
- this.pblmAttachName = pblmAttachName;
- }
- public String getOrgType() {
- return orgType;
- }
- public void setOrgType(String orgType) {
- this.orgType = orgType;
- }
- public ObjKeyPblmRel() {
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getProType() {
- return proType;
- }
- public void setProType(String proType) {
- this.proType = proType;
- }
- public String getReviOrg() {
- return reviOrg;
- }
- public void setReviOrg(String reviOrg) {
- this.reviOrg = reviOrg;
- }
- public String getPblmType() {
- return pblmType;
- }
- public void setPblmType(String pblmType) {
- this.pblmType = pblmType;
- }
- public String getPblmPoint() {
- return pblmPoint;
- }
- public void setPblmPoint(String pblmPoint) {
- this.pblmPoint = pblmPoint;
- }
- public String getPblmAttach() {
- return pblmAttach;
- }
- public void setPblmAttach(String pblmAttach) {
- this.pblmAttach = pblmAttach;
- }
- public String getPblmSn() {
- return pblmSn;
- }
- public void setPblmSn(String pblmSn) {
- this.pblmSn = pblmSn;
- }
- @Override
- public String toString() {
- return "ObjKeyPblmRel [" + "type=" + type + ", proType=" + proType + ", reviOrg=" + reviOrg + ", pblmType=" + pblmType + ", pblmPoint=" + pblmPoint + ", pblmAttach=" + pblmAttach + ", pblmSn=" + pblmSn + "]";
- }
- }
|