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;
|
}
|