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
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;
/**
* 查询经费申请表(任务书/项目申请书)VO
*
* @author lkl
* @version 2021-08-26
*/
@Data
@EqualsAndHashCode(callSuper=true)
@ApiModel(description = "设备仪器经费表(任务书/项目申请书)VO")
public class ComProjectEquipmentQueryVO extends PaginationVO{
/** 购置类型Id */
@ApiModelProperty(value = "购置类型Id", position = 2 )
@Length(max=36, message = "购置类型Id不能大于36")
private String purchaseId;
/** 对象id(项目Id/任务书Id) */
@ApiModelProperty(value = "对象id(项目Id/任务书Id)", position = 2 )
@Length(max=36, message = "对象id(项目Id/任务书Id)不能大于36")
private String objectId;
/** 设备仪器名称 */
@ApiModelProperty(value = "设备仪器名称", position = 1 )
@Length(max=36, message = "设备仪器名称不能大于200")
private String name;
/** 功能和技术指标 */
@ApiModelProperty(value = "功能和技术指标", position = 1 )
@Length(max=200, message = "功能和技术指标不能大于200")
private String functionTarget;
/** 规格型号 */
@ApiModelProperty(value = "规格型号", position = 1 )
@Length(max=36, message = "规格型号不能大于200")
private String specificationType;
/** 数量 */
@ApiModelProperty(value = "数量", position = 1 )
private Integer quantity;
/** 金额 */
@ApiModelProperty(value = "金额", position = 3 )
private BigDecimal totalBudget;
/** 用途 */
@ApiModelProperty(value = "用途", position = 1 )
@Length(max=36, message = "用途不能大于200")
private String useFrom;
/** 购置单位 */
@ApiModelProperty(value = "购置单位", position = 1)
@Length(max=100, message = "购置单位不能大于100")
private String buyUnit;
/** 存放单位(地点) */
@ApiModelProperty(value = "存放单位(地点)", position = 1)
@Length(max=200, message = "存放单位(地点)不能大于200")
private String storageLocation;
/** 设备类型 */
@ApiModelProperty(value = "设备类型", position = 1)
@Length(max=100, message = "设备类型不能大于100")
private String equipmentType;
/** 主要生产厂家及国别 */
@ApiModelProperty(value = "主要生产厂家及国别", position = 1)
@Length(max=100, message = "主要生产厂家及国别不能大于100")
private String manufacturer;
/** 单价(万元/台套) */
@ApiModelProperty(value = "单价(万元/台套)", position = 3)
private BigDecimal unitPrice;
/** 拟开发共享范围 */
@ApiModelProperty(value = "拟开发共享范围", position = 3)
private String sharedScope;
}