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
| package com.hz.phis.dt.reward;
|
| import com.alibaba.fastjson.JSONArray;
| import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
| import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant;
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * @ClassName AwardDto
| * @Description 调查问卷提交数据dto
| * @Author wrh
| * @Date 2023/4/17 10:46
| * @Version 1.0
| */
| @Data
| public class AnswerDto {
|
| private String code;
| private String titleId;
| private String title;
| private String[] answer;
|
| }
|
|