| | |
| | | package com.ruoyi.system.vo; |
| | | |
| | | import com.ruoyi.common.enums.FieldInputTypeEnum; |
| | | import com.ruoyi.common.enums.FieldTypeEnum; |
| | | import com.ruoyi.common.enums.ShowStatusEnum; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import java.io.Serializable; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | |
| | | * @date 2024/3/15 |
| | | */ |
| | | @Data |
| | | @ApiModel(value="字段视图对象") |
| | | public class FieldVO { |
| | | @ApiModel(value = "字段视图对象") |
| | | 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; |
| | |
| | | private Integer numMax; |
| | | |
| | | @ApiModelProperty(value = "文本输入类型(1=手动输入 2=固定内容)") |
| | | private Integer textInputType; |
| | | private FieldInputTypeEnum textInputType; |
| | | |
| | | @ApiModelProperty(value = "文本最少字数") |
| | | private Integer textMinNum; |