fwq
2024-04-01 3e8397cc9f2aece1b0430fcd4fe3162a22bc499f
提交 | 用户 | age
b07575 1 package com.hz.phis.dt.reward;
W 2
3 import com.hz.phis.dt.BaseDt;
4 import lombok.Data;
5
6 import java.util.Date;
7 import java.util.List;
8
9 /**
10  * @ClassName QuestionInvestigateDto
11  * @Description 调查问卷dto
12  * @Author wrh
13  * @Date 2023/4/17 10:39
14  * @Version 1.0
15  */
16 @Data
17 public class QuestionInvestigateDto extends BaseDt {
18
19     private String code;
20
a6d72c 21     private String deductionSingleId;
W 22
b07575 23     private String investigateId;
W 24
25     private String userId;
26
27     private Integer type;
28
29     private Date startTime;
30
31     private Date doneTime;
32
33     private String proposal;
34
35     //答案数据
36     private List<AnswerDto> answerDtoList;
4eb0b3 37
W 38     private List<InvestigateGroupDto> investigateGroupDtos;
b07575 39 }