| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- 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;
- /**
- * BisInspOrgParam
- *
- * @author lhc
- * @date 2019-6-4
- */
- public class BisInspOrgParam extends PageParam implements Serializable {
- private String norgId;
- private String norgPid;
- @ApiModelProperty(value = "机构父节点id",required = true)
- private String orgPid;
- @ApiModelProperty(value = "机构名称",required = true)
- private String orgNm;
- @ApiModelProperty(value = "机构编码",required = true)
- private String rlcode;
- @ApiModelProperty("用户id")
- private String persId;
- private String orgType;
- public BisInspOrgParam() {
- }
- public String getOrgType() {
- return orgType;
- }
- public void setOrgType(String orgType) {
- this.orgType = orgType;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getNorgId() {
- return norgId;
- }
- public void setNorgId(String norgId) {
- this.norgId = norgId;
- }
- public String getNorgPid() {
- return norgPid;
- }
- public void setNorgPid(String norgPid) {
- this.norgPid = norgPid;
- }
- 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;
- }
- }
|