mitao
2024-04-19 b21c37b7899b17dede7773db3c799aab1063ae1c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package com.finance.system.vo;
 
import com.finance.common.enums.FieldInputTypeEnum;
import com.finance.common.enums.FieldTypeEnum;
import com.finance.common.enums.ShowStatusEnum;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import lombok.Data;
 
@Data
@ApiModel(value = "数据上报字段视图对象")
public class FieldReportingVO implements Serializable {
 
    private static final long serialVersionUID = -7412686975187928384L;
 
    @ApiModelProperty(value = "字段id")
    private Long id;
 
    @ApiModelProperty(value = "字段名")
    private String fieldName;
 
    @ApiModelProperty(value = "字段类型(1=数字 2=文本 3=百分比)")
    private FieldTypeEnum fieldType;
 
    @ApiModelProperty(value = "一级分类id")
    private Integer levelOneCategoryId;
 
    @ApiModelProperty(value = "二级分类id")
    private Integer levelTwoCategoryId;
 
    @ApiModelProperty(value = "三级分类id")
    private Integer levelThreeCategoryId;
 
    @ApiModelProperty(value = "一级分类")
    private String levelOneCategory;
 
    @ApiModelProperty(value = "二级分类")
    private String levelTwoCategory;
 
    @ApiModelProperty(value = "三级分类")
    private String levelThreeCategory;
 
    @ApiModelProperty(value = "隐藏状态(0=展示中 1=已隐藏)")
    private ShowStatusEnum status;
 
    @ApiModelProperty(value = "数字最小值")
    private Integer numMin;
 
    @ApiModelProperty(value = "数字最大值")
    private Integer numMax;
 
    @ApiModelProperty(value = "文本输入类型(1=手动输入 2=固定内容)")
    private FieldInputTypeEnum textInputType;
 
    @ApiModelProperty(value = "文本最少字数")
    private Integer textMinNum;
 
    @ApiModelProperty(value = "文本最多字数")
    private Integer textMaxNum;
 
    @ApiModelProperty(value = "文本内容设置(不同内容以','隔开)")
    private String textContent;
 
    @ApiModelProperty(value = "部门上报的值")
    private String value;
}