| | |
| | | package com.ruoyi.system.vo; |
| | | |
| | | import com.ruoyi.common.enums.ShowStatusEnum; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * @author mitao |
| | |
| | | */ |
| | | @Data |
| | | @ApiModel(value="字段分类视图对象") |
| | | public class FieldCategoryVO { |
| | | @ApiModelProperty(value = "分类id") |
| | | private Integer id; |
| | | public class FieldCategoryVO implements Serializable { |
| | | |
| | | @ApiModelProperty(value = "状态(0=隐藏 1=显示)") |
| | | private Integer status; |
| | | private static final long serialVersionUID = 6367532315341833784L; |
| | | |
| | | @ApiModelProperty(value = "分类id") |
| | | |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "状态(0=展示 1=隐藏)") |
| | | private ShowStatusEnum status; |
| | | |
| | | @ApiModelProperty(value = "分类名称") |
| | | private String fieldCategoryName; |