刘光辉
昨天 bb638871a7fb692d80f1b7a758f991dc0879002c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package jnpf.base.model.base;
 
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotNull;
import lombok.Data;
 
@Data
@Schema(description = "应用置顶表单")
public class SystemTopModel {
 
    @NotNull(message = "置顶数据id必填")
    @Schema(description = "置顶数据id")
    private String id;
 
    @NotNull(message = "置顶类型id必填:home-首页,appCenter-应用中心")
    @Schema(description = "类型:home-首页,appCenter-应用中心")
    private String type = "appCenter";
 
    @NotNull(message = "动作类型必填:0-取消置顶,1-置顶")
    @Schema(description = "动作类型:0-取消,1-置顶")
    private Integer actionType;
}