| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:AttInspTypeDuty
- *
- * @author lhc
- * @date 2021-7-14
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class AttInspTypeDuty extends BaseBean implements Serializable {
- /** 责任处室 */
- @ApiModelProperty(value="责任处室",name="dutyDep")
- private String dutyDep;
- /** 督查类别 */
- @ApiModelProperty(value="督查类别",name="ptype")
- private String ptype;
- /** 机构ID */
- @ApiModelProperty(value="机构ID",name="orgId")
- private String orgId;
- public String getDutyDep() {
- return dutyDep;
- }
- public void setDutyDep(String dutyDep) {
- this.dutyDep = dutyDep;
- }
- public String getPtype() {
- return ptype;
- }
- public void setPtype(String ptype) {
- this.ptype = ptype;
- }
- public String getOrgId() {
- return orgId;
- }
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- @Override
- public String toString() {
- return "AttInspTypeDuty [" + "dutyDep=" + dutyDep + ", ptype=" + ptype + ", orgId=" + orgId + "]";
- }
- }
|