mitao
2024-03-22 e69dec94fe9763d04425756370760698850f926f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.ruoyi.system.dto.update;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
import java.io.Serializable;
 
/**
 * @author mitao
 * @date 2024/3/14
 */
@Data
@ApiModel("部门更新实体")
public class DeptFocusDTO implements Serializable {
 
    private static final long serialVersionUID = -7322348219193526224L;
 
    @ApiModelProperty(value = "部门id")
    @NotNull(message = "id不能为空")
    private Integer id;
 
    @ApiModelProperty(value = "是否重点关注(0:否 1:是)")
    @NotNull(message = "是否重点关注不能为空")
    private Integer focussed;
}