| | |
| | | package com.doumee.dao.business.web.response; |
| | | |
| | | import com.doumee.core.annotation.excel.ExcelColumn; |
| | | import com.doumee.dao.system.model.SystemUser; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | public class UserResponse { |
| | | |
| | | @ApiModelProperty(value = "用户主键") |
| | | private Integer id; |
| | | private String id; |
| | | |
| | | @ApiModelProperty(value = "姓名") |
| | | private String name; |
| | |
| | | @ApiModelProperty(value = "性别") |
| | | private Integer sex; |
| | | |
| | | |
| | | @ApiModelProperty(value = "关联系统管理员账号编码") |
| | | private SystemUser sysuser; |
| | | |
| | | } |