| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- /**
- * entity:BisInspPersOrg
- *
- * @author lune
- * @date 2019-7-12
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisInspPersOrg extends BaseBean implements Serializable {
- @ApiModelProperty("用户id")
- private String persId;
- @ApiModelProperty("机构id")
- private String orgId;
- @ApiModelProperty("用户身份")
- private String userType;
- public BisInspPersOrg() {
- }
- 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;
- }
- @Override
- public String toString() {
- return "BisInspPersOrg [" + "persId=" + persId + ", orgId=" + orgId + "]";
- }
- }
|