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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package com.yiboshi.science.param.query;
import com.alibaba.excel.annotation.ExcelProperty;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.yiboshi.science.base.PaginationVO;
import com.yiboshi.science.param.dto.ComExpertSpecDTO;
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;
import java.util.List;
@Data
@EqualsAndHashCode(callSuper = true)
@ApiModel(description = "专家项目分配表VO")
public class ComProjectAssignQueryVO extends PaginationVO {
/** 专家Id */
@ApiModelProperty(value = "专家Id", position = 1)
@Length(max=36, message = "专家Id不能大于36")
private String expertId;
/** 项目Id */
@ApiModelProperty(value = "项目Id", position = 2)
@Length(max=36, message = "项目Id不能大于36")
private String projId;
/** 分配年度 */
@ApiModelProperty(value = "分配年度", position = 3)
private Integer assignYear;
@ApiModelProperty(value = "score1", position = 4)
private BigDecimal score1;
@ApiModelProperty(value = "score2", position = 4)
private BigDecimal score2;
@ApiModelProperty(value = "score3", position = 4)
private BigDecimal score3;
@ApiModelProperty(value = "score4", position = 4)
private BigDecimal score4;
@ApiModelProperty(value = "score5", position = 4)
private BigDecimal score5;
@ApiModelProperty(value = "score6", position = 4)
private BigDecimal score6;
@ApiModelProperty(value = "score7", position = 4)
private BigDecimal score7;
@ApiModelProperty(value = "score8", position = 4)
private BigDecimal score8;
@ApiModelProperty(value = "score9", position = 4)
private BigDecimal score9;
@ApiModelProperty(value = "score10", position = 4)
private BigDecimal score10;
@ApiModelProperty(value = "score11", position = 4)
private BigDecimal score11;
@ApiModelProperty(value = "score12", position = 4)
private BigDecimal score12;
@ApiModelProperty(value = "score13", position = 4)
private BigDecimal score13;
@ApiModelProperty(value = "score14", position = 4)
private BigDecimal score14;
@ApiModelProperty(value = "score15", position = 4)
private BigDecimal score15;
@ApiModelProperty(value = "score16", position = 4)
private BigDecimal score16;
@ApiModelProperty(value = "score17", position = 4)
private BigDecimal score17;
/** 总分 */
@ApiModelProperty(value = "总分", position = 9)
private BigDecimal totalScore;
/** 备注 */
@ApiModelProperty(value = "备注", position =10)
@Length(max=65535, message = "备注不能大于65535")
private String remark;
/** 审核状态(0 未评审 1 保存 2 已提交) */
@ApiModelProperty(value = "审核状态(0 未评审 1 已评审)", position = 11)
private Integer auditState;
/** 是否支持立项(0 不支持 1 支持) */
@ApiModelProperty(value = "审核状态(0 不支持 1 支持)", position = 11)
private Integer supportState;
/** 评审类别(A通过(80分及以上)、B返回修改(60分及以上)、C不通过(60分以下)) */
@ApiModelProperty(value = "评审类别", position = 11)
private Integer evaluationType;
/** 证件号 */
@ExcelProperty("证件号")
@ApiModelProperty(value = "证件号", position = 1)
private String certId;
/** 姓名 */
@ExcelProperty("姓名")
@ApiModelProperty(value = "姓名", position = 3)
private String personName;
/** 性别 */
@ExcelProperty("性别")
@ApiModelProperty(value = "性别", position = 4)
private String sex;
/** 出生日期 */
@ApiModelProperty(value = "出生日期", position = 5)
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
private Date birthday;
/** 职称 */
@ApiModelProperty(value = "职称", position = 7)
private String title;
/** 学位 */
@ApiModelProperty(value = "学位", position = 8 )
private String degree;
/** 邮箱 */
@ApiModelProperty(value = "邮箱", position = 9)
private String email;
/** 电话号码 */
@ApiModelProperty(value = "电话号码", position = 10)
private String mobile;
/** 单位 */
@ApiModelProperty(value = "单位", position = 13)
private String unitName;
/** 工作单位 */
@ApiModelProperty(value = "工作单位", position = 13)
private String workUnit;
/** 项目名称 */
@ApiModelProperty(value = "项目名称", position = 1 )
private String projName;
/** 项目编号 */
@ApiModelProperty(value = "项目编号", position = 2 )
private String projNo;
/** 项目类型 1 科研项目 2重点学科项目 */
@ApiModelProperty(value = "项目名称", position = 1 )
private Integer projType;
}