| | |
| | | package com.consum.base.pojo.response; |
| | | |
| | | import com.consum.model.po.FinSysTenantUser; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "FinSysTenantUserVO", description = "机构用户信息") |
| | | public class FinSysTenantUserVO extends FinSysTenantUser { |
| | | public class FinSysTenantUserVO { |
| | | |
| | | // 主键 |
| | | @ApiModelProperty(value = "主键") |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "用户编码") |
| | | private String userCode; |
| | | |
| | | @ApiModelProperty(value = "用户姓名") |
| | | private String userName; |
| | | |
| | | @ApiModelProperty(value = "用户登录名") |
| | | private String userPhone; |
| | | |
| | | @ApiModelProperty(value = "机构id") |
| | | private String tenantId; |
| | | |
| | | @ApiModelProperty(value = "机构名称") |
| | | private String tenantName; |
| | | |
| | | @ApiModelProperty(value = "部门名称") |
| | | private String sysDeptName; |
| | | |
| | | @ApiModelProperty(value = "状态 (0禁用1启用)") |
| | | private Integer status; |
| | | |
| | | // private String createBy; |
| | | // |
| | | // private Long createTime; |
| | | // |
| | | // private String updateBy; |
| | | // |
| | | // private Long updateTime; |
| | | // |
| | | // private Integer sex; |
| | | // |
| | | // private Long seq; |
| | | // |
| | | // private Long sysUserId; |
| | | // |
| | | // private Long sysDeptId; |
| | | // |
| | | // private String tenantCode; |
| | | // |
| | | // private Integer isDelete; |
| | | // |
| | | // private Long supplierId; |
| | | // |
| | | // |
| | | // |
| | | // private String roleStr; |
| | | // |
| | | // private List<Long> roleList; |
| | | // |
| | | // // 是否为运维商 如果有运维商id 则代表是,反之不是 |
| | | // private String isSupplier; |
| | | |
| | | |
| | | } |