| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * @author mitao |
| | | * @date 2024/3/15 |
| | | */ |
| | | @Data |
| | | @ApiModel(value="字段视图对象") |
| | | public class FieldVO { |
| | | public class FieldVO implements Serializable { |
| | | |
| | | private static final long serialVersionUID = -8474307057802966503L; |
| | | |
| | | @ApiModelProperty(value = "字段id") |
| | | private Integer id; |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "字段名") |
| | | private String fieldName; |
| | |
| | | private FieldTypeEnum fieldType; |
| | | |
| | | @ApiModelProperty(value = "一级分类id") |
| | | private Integer levelOneCategoryId; |
| | | private Long levelOneCategoryId; |
| | | |
| | | @ApiModelProperty(value = "二级分类id") |
| | | private Integer levelTwoCategoryId; |
| | | private Long levelTwoCategoryId; |
| | | |
| | | @ApiModelProperty(value = "三级分类id") |
| | | private Integer levelThreeCategoryId; |
| | | private Long levelThreeCategoryId; |
| | | |
| | | @ApiModelProperty(value = "一级分类") |
| | | private String levelOneCategory; |