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
| package com.hz.phis.dt.reward;
|
| import com.hz.phis.dt.BaseDt;
| import lombok.Data;
|
| import java.util.Date;
| import java.util.List;
|
| /**
| * @ClassName QuestionInvestigateDto
| * @Description 调查问卷dto
| * @Author wrh
| * @Date 2023/4/17 10:39
| * @Version 1.0
| */
| @Data
| public class QuestionInvestigateDto extends BaseDt {
|
| private String code;
|
| private String investigateId;
|
| private String userId;
|
| private Integer type;
|
| private Date startTime;
|
| private Date doneTime;
|
| private String proposal;
|
| //答案数据
| private List<AnswerDto> answerDtoList;
|
| private List<InvestigateGroupDto> investigateGroupDtos;
| }
|
|