| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiParam;
- import java.io.Serializable;
- /**
- * OlBisInspOrgParam
- *
- * @author lune
- * @date 2019-2-25
- */
- public class OlBisInspOrgParam extends PageParam implements Serializable {
- private String orgId;
- private String orgPid;
- private String orgNm;
- private String rlcode;
- private String adCode;
- @ApiModelProperty("问题标准:0启用全国标准,1启用自定义标准")
- private String pblmLogo;
- @ApiModelProperty("使用标准来源机构,如来自于福建或者来自于全国")
- private String quoteOrgId;
- @ApiModelProperty(value = "人员所属orgId", name = "currOrgId")
- private String currOrgId;
- @ApiModelProperty(value = "1省 2省监督处 3 省业务司局 4 市 5 县", name = "orgType")
- private String orgType;
- public String getOrgType() {
- return orgType;
- }
- public void setOrgType(String orgType) {
- this.orgType = orgType;
- }
- public String getCurrOrgId() {
- return currOrgId;
- }
- public void setCurrOrgId(String currOrgId) {
- this.currOrgId = currOrgId;
- }
- public String getPblmLogo() {
- return pblmLogo;
- }
- public void setPblmLogo(String pblmLogo) {
- this.pblmLogo = pblmLogo;
- }
- public OlBisInspOrgParam() {
- }
- public String getQuoteOrgId() {
- return quoteOrgId;
- }
- public void setQuoteOrgId(String quoteOrgId) {
- this.quoteOrgId = quoteOrgId;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- @Override
- public String getOrgId() {
- return orgId;
- }
- @Override
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- public String getOrgPid() {
- return orgPid;
- }
- public void setOrgPid(String orgPid) {
- this.orgPid = orgPid;
- }
- public String getOrgNm() {
- return orgNm;
- }
- public void setOrgNm(String orgNm) {
- this.orgNm = orgNm;
- }
- public String getRlcode() {
- return rlcode;
- }
- public void setRlcode(String rlcode) {
- this.rlcode = rlcode;
- }
- }
|