mitao
2024-03-14 717811c825b998c3001ad0145bd1fd8f46d1a796
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.system.dto.update;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
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")
    private Integer id;
 
    @ApiModelProperty(value = "是否重点关注(0:否 1:是)")
    private Integer focussed;
}