| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiParam;
- /**
- * Created by 61618 on 2019/4/12.
- */
- public class PersPositionBaseParam extends PageParam {
- @ApiParam(value = "行政区划code")
- @ApiModelProperty(value = "行政区划code")
- private String adCode;
- @ApiParam(value = "人员id")
- @ApiModelProperty(value = "人员id")
- private String persId;
- // 机构id
- @ApiParam(name = "机构id")
- @ApiModelProperty(value = "机构id")
- private String orgId;
- // 督查组id
- @ApiParam(name = "督查组id")
- @ApiModelProperty(value = "督查组id")
- private String groupId;
- // 人员姓名
- @ApiParam(name = "人员姓名")
- @ApiModelProperty(value = "人员姓名")
- private String persName;
- // 手机号
- @ApiParam(name = "手机号")
- @ApiModelProperty(value = "手机号")
- private String mobile;
- @ApiParam(name = "开始时间")
- @ApiModelProperty(value = "开始时间")
- private String sttm;
- @ApiParam(name = "结束时间")
- @ApiModelProperty(value = "结束时间")
- private String entm;
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- @Override
- public String getOrgId() {
- return orgId;
- }
- @Override
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- public String getGroupId() {
- return groupId;
- }
- public void setGroupId(String groupId) {
- this.groupId = groupId;
- }
- public String getPersName() {
- return persName;
- }
- public void setPersName(String persName) {
- this.persName = persName;
- }
- public String getMobile() {
- return mobile;
- }
- public void setMobile(String mobile) {
- this.mobile = mobile;
- }
- 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;
- }
- @Override
- public String toString() {
- return "PersPositionBaseParam{" +
- "adCode='" + adCode + '\'' +
- ", persId='" + persId + '\'' +
- ", orgId='" + orgId + '\'' +
- ", groupId='" + groupId + '\'' +
- ", persName='" + persName + '\'' +
- ", mobile='" + mobile + '\'' +
- ", sttm='" + sttm + '\'' +
- ", entm='" + entm + '\'' +
- '}';
- }
- }
|