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
package com.yiboshi.science.param.query;
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;
/**
* 查询项目申请书在研项目情况表VO
*
* @author lkl
* @version 2021-08-26
*/
@Data
@EqualsAndHashCode(callSuper=true)
@ApiModel(description = "查询项目申请书在研项目情况表VO")
public class ComProjectResearchQueryVO extends PaginationVO{
/** 项目id / */
@ApiModelProperty(value = "项目id", position = 1 )
@Length(max=36, message = "项目id不能大于36")
private String objectId;
/** 项目编号 */
@ApiModelProperty(value = "项目编号", position = 2 )
@Length(max=100, message = "项目编号不能大于100")
private String projNo;
/** 项目名称 */
@ApiModelProperty(value = "项目名称", position = 3 )
@Length(max=100, message = "项目名称不能大于100")
private String projName;
/** 批准单位 */
@ApiModelProperty(value = "批准单位", position = 4 )
@Length(max=100, message = "批准单位不能大于100")
private String approveUnit;
/** 负责人 */
@ApiModelProperty(value = "负责人", position = 5 )
@Length(max=100, message = "负责人不能大于100")
private String leader;
/** 起止年限(开始) */
@ApiModelProperty(value = "起止年限", position = 6 )
private Date startDate;
/** 起止年限(结束) */
@ApiModelProperty(value = "起止年限", position = 6 )
private Date endDate;
/** 项目经费 */
@ApiModelProperty(value = "项目经费", position = 7 )
private BigDecimal funds;
/** 排序 */
@ApiModelProperty(value = "排序", position = 10 )
private Integer showIndex;
}