| | |
| | | package com.ruoyi.system.dto.update; |
| | | |
| | | import com.ruoyi.common.enums.DisabledEnum; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | private static final long serialVersionUID = -7322348219193526224L; |
| | | |
| | | @ApiModelProperty(value = "部门id") |
| | | @NotNull(message = "id不能为空") |
| | | private Integer id; |
| | | @NotNull(message = "userId不能为空") |
| | | private Long userId; |
| | | |
| | | @ApiModelProperty(value = "是否重点关注(0:否 1:是)") |
| | | @ApiModelProperty(value = "是否重点关注 传 是/否") |
| | | @NotNull(message = "是否重点关注不能为空") |
| | | private Integer focussed; |
| | | private DisabledEnum focussed; |
| | | } |