| package com.doumee.dao.system.vo; | 
|   | 
| import com.baomidou.mybatisplus.annotation.IdType; | 
| import com.baomidou.mybatisplus.annotation.TableId; | 
| import com.doumee.core.constants.OperaType; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import javax.validation.constraints.NotBlank; | 
| import javax.validation.constraints.NotNull; | 
|   | 
| /** | 
|  * @author T14 | 
|  */ | 
| @Data | 
| public class SystemUserSimpleVo { | 
|   | 
|     @ApiModelProperty(value = "用户主键", example = "1") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "用户名") | 
|     private String username; | 
|   | 
|     @ApiModelProperty(value = "姓名") | 
|     private String realname; | 
|   | 
|     @ApiModelProperty(value = "部门主键", example = "1") | 
|     private Integer departmentId; | 
|   | 
|     @ApiModelProperty(value = "部门名称") | 
|     private String departmentName; | 
| } |