wangrenhuang
2023-04-17 4eb0b38880ba741e9227ff8fe58d9bbc4a49f3fd
提交 | 用户 | 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
21     private String investigateId;
22
23     private String userId;
24
25     private Integer type;
26
27     private Date startTime;
28
29     private Date doneTime;
30
31     private String proposal;
32
33     //答案数据
34     private List<AnswerDto> answerDtoList;
4eb0b3 35
W 36     private List<InvestigateGroupDto> investigateGroupDtos;
b07575 37 }