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
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 org.hibernate.validator.constraints.Length;
import java.util.Date;
/**
* 预期成果DTO
*
* @author lkl
* @version 2021-08-26
*/
@Data
@EqualsAndHashCode(callSuper=true)
@ApiModel(description = "预期成果DTO")
public class ComProjectResultsDTO extends BaseDTO {
/** 对象Id(中期考核表Id) */
@ApiModelProperty(value = "对象Id(中期考核表Id)", position = 1)
private String objectId;
/** 成果Id (参数表获取) */
@ApiModelProperty(value = "成果Id (参数表获取)", position = 2)
private String resultId;
/** 数量 */
@ApiModelProperty(value = "数量", position = 3)
private Integer resultCount;
/** 备注 */
@ApiModelProperty(value = "备注", position = 4)
@Length(max=200, message = "备注长度不能大于200")
private String remark;
/** 成果类型名 */
@ApiModelProperty(value = "成果类型名", position = 5)
private String resultName;
}