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
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 xujun
* @version 2024-11-28
*/
@Data
@EqualsAndHashCode(callSuper=true)
@ApiModel(description = "年度用款计划表VO")
public class ComProjectFundPlanQueryVO extends PaginationVO{
/** 用款计划Id */
@ApiModelProperty(value = "用款计划Id", position = 2 )
@Length(max=36, message = "用款计划Id不能大于36")
private String fundId;
/** 对象id(项目Id/任务书Id) */
@ApiModelProperty(value = "对象id(项目Id/任务书Id)", position = 2 )
@Length(max=36, message = "对象id(项目Id/任务书Id)不能大于36")
private String objectId;
/** 年度1资金数额 */
@ApiModelProperty(value = "年度1资金数额", position = 3 )
private BigDecimal yearValue1;
/** 年度2资金数额 */
@ApiModelProperty(value = "年度2资金数额", position = 3 )
private BigDecimal yearValue2;
/** 年度3资金数额 */
@ApiModelProperty(value = "年度3资金数额", position = 3 )
private BigDecimal yearValue3;
/** 年度4资金数额 */
@ApiModelProperty(value = "年度4资金数额", position = 3 )
private BigDecimal yearValue4;
/** 年度5资金数额 */
@ApiModelProperty(value = "年度5资金数额", position = 3 )
private BigDecimal yearValue5;
/** 总金额 */
@ApiModelProperty(value = "总金额", position = 3)
private BigDecimal totalAmount;
}