| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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;
- /**
- * BisInspAllRlationPersOrgaParam
- *
- * @author lhc
- * @date 2020-7-20
- */
- public class BisInspAllRlationPersOrgaParam extends PageParam implements Serializable {
- // 人员ID
- @ApiParam(name = "人员ID")
- @ApiModelProperty(value = "人员ID", name = "userCode")
- private String userCode;
- // 组织机构代码
- @ApiParam(name = "组织机构代码")
- @ApiModelProperty(value = "组织机构代码", name = "organizationId")
- private String deptId;
- private String jobs;
- private String position;
- private Integer orderId;
- public Integer getOrderId() {
- return orderId;
- }
- public void setOrderId(Integer orderId) {
- this.orderId = orderId;
- }
- public BisInspAllRlationPersOrgaParam() {
- }
- public String getUserCode() {
- return userCode;
- }
- public void setUserCode(String userCode) {
- this.userCode = userCode;
- }
- public String getDeptId() {
- return deptId;
- }
- public void setDeptId(String deptId) {
- this.deptId = deptId;
- }
- public String getJobs() {
- return jobs;
- }
- public void setJobs(String jobs) {
- this.jobs = jobs;
- }
- public String getPosition() {
- return position;
- }
- public void setPosition(String position) {
- this.position = position;
- }
- }
|