| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * BisInspAllRlationParam
- *
- * @author lune
- * @date 2019-2-23
- */
- public class BisInspAllRlationParam extends PageParam implements Serializable {
- @ApiModelProperty(value = "用户ID", name = "persid")
- private String persid;
- @ApiModelProperty(value = "督查组ID", name = "id")
- private String id;
- @ApiModelProperty(value = "用户类型(1:组长;2:组员;3:联络员;4:专家;11:前期专家;12:监管专家;13:计划专家;14:财务专家;15:质量专家;16:安全专家;19:助理;20:特派员)", name = "pertype")
- private String pertype;
- @ApiModelProperty("行政编码")
- private String adCode;
- @ApiModelProperty("")
- private String pType;
- @ApiModelProperty("")
- private String sttm;
- private String entm;
- public String getSttm() {
- return sttm;
- }
- public void setSttm(String sttm) {
- this.sttm = sttm;
- }
- public String getEntm() {
- return entm;
- }
- public void setEntm(String entm) {
- this.entm = entm;
- }
- public String getpType() {
- return pType;
- }
- public void setpType(String pType) {
- this.pType = pType;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public BisInspAllRlationParam() {
- }
- public String getPersid() {
- return persid;
- }
- public void setPersid(String persid) {
- this.persid = persid;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getPertype() {
- return pertype;
- }
- public void setPertype(String pertype) {
- this.pertype = pertype;
- }
- }
|