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
package com.yiboshi.science.param.query;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.yiboshi.science.base.PaginationVO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
import java.math.BigDecimal;
import java.util.Date;
@Data
@EqualsAndHashCode(callSuper = true)
@ApiModel(description = "评审表VO")
public class ComEvaluationContentQueryVO extends PaginationVO {
/** 评审表Id */
@ApiModelProperty(value = "评审表Id", position = 2)
@Length(max=36, message = "评审表Id不能大于36")
private String evaluationId;
/** 标题 */
@ApiModelProperty(value = "标题", position = 3)
@Length(max=200, message = "标题不能大于200")
private String name;
/** 总分 */
@ApiModelProperty(value = "总分", position = 4)
private BigDecimal score;
/** 排序 */
@ApiModelProperty(value = "排序", position = 5)
private Integer showIndex;
/** 是否有子项 */
@ApiModelProperty(value = "是否有子项", position = 6)
private Boolean hasSubitem;
/** 值类型:1单选、2多选、3打分 */
@ApiModelProperty(value = "值类型:1单选、2多选、3打分", position = 7)
private Integer valueType;
/** 备注 */
@ApiModelProperty(value = "备注", position = 8)
@Length(max=200, message = "备注不能大于200")
private String remark;
}