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
package com.yiboshi.science.param.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.yiboshi.science.base.BaseDTO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.math.BigDecimal;
import java.util.Date;
/**
* 经费申请表(任务书/项目申请书)DTO
*
* @author lkl
* @version 2021-08-26
*/
@Data
@EqualsAndHashCode(callSuper=true)
@ApiModel(description = "设备仪器经费表(任务书/项目申请书)DTO")
public class ComProjectEquipmentDTO extends BaseDTO {
/** 对象id(项目Id/任务书Id) */
@ApiModelProperty(value = "对象id(项目Id/任务书Id)", position = 2 )
private String objectId;
/** 设备仪器名称 */
@ApiModelProperty(value = "设备仪器名称", position = 1 )
private String name;
/** 规格型号 */
@ApiModelProperty(value = "规格型号", position = 1 )
private String specificationType;
/** 数量 */
@ApiModelProperty(value = "数量", position = 1 )
private Integer quantity;
/** 金额 */
@ApiModelProperty(value = "金额", position = 3 )
private BigDecimal totalBudget;
/** 用途 */
@ApiModelProperty(value = "用途", position = 1 )
private String useFrom;
}