| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * BisInspPersOrgParam
- *
- * @author lune
- * @date 2019-7-12
- */
- public class BisInspPersOrgParam extends PageParam implements Serializable {
- @ApiModelProperty("用户id")
- private String persId;
- @ApiModelProperty("机构id")
- private String orgId;
- @ApiModelProperty("用户身份")
- private String userType;
- public BisInspPersOrgParam() {
- }
- public String getUserType() {
- return userType;
- }
- public void setUserType(String userType) {
- this.userType = userType;
- }
- 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;
- }
- }
|