mitao
2024-03-15 92b586e7d47167421f6500be641734acebeacd79
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author mitao
 * @date 2024/3/14
 */
@Data
@ApiModel(value="字段分类视图对象")
public class FieldCategoryVO {
    @ApiModelProperty(value = "分类id")
    private Integer id;
 
    @ApiModelProperty(value = "状态(0=展示 1=隐藏)")
    private Integer status;
 
    @ApiModelProperty(value = "分类名称")
    private String fieldCategoryName;
}