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
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;
/**
* 查询经费申请表(任务书/项目申请书)VO
*
* @author lkl
* @version 2021-08-26
*/
@Data
@EqualsAndHashCode(callSuper=true)
@ApiModel(description = "查询经费申请表(任务书/项目申请书)VO")
public class ComProjectFundCompositionQueryVO extends PaginationVO{
/** 对象id(项目Id/任务书Id) */
@ApiModelProperty(value = "对象id(项目Id/任务书Id)", position = 2 )
@Length(max=36, message = "对象id(项目Id/任务书Id)不能大于36")
private String objectId;
/** 年度 */
@ApiModelProperty(value = "年度", position = 2 )
private Integer year;
/** 总 额 */
@ApiModelProperty(value = "总 额", position = 3 )
private BigDecimal totalFund;
/** 自治区公立医院专项资金 */
@ApiModelProperty(value = "自治区公立医院专项资金", position = 3 )
private BigDecimal specialFund;
/** 自筹经费 */
@ApiModelProperty(value = "自筹经费", position = 3 )
private BigDecimal selfFund;
/** 盟市财政资金 */
@ApiModelProperty(value = "盟市财政资金", position = 3 )
private BigDecimal cityFund;
/** 其他渠道资金 */
@ApiModelProperty(value = "其他渠道资金", position = 3 )
private BigDecimal otherFund;
/** 备注 */
@ApiModelProperty(value = "备注", position = 6 )
@Length(max=200, message = "备注不能大于200")
private String remark;
/** 排序 */
@ApiModelProperty(value = "排序", position = 10 )
private Integer showIndex;
}