cmg
2024-04-30 3dac1b9697a7a214789cc2d95788a178a63be4aa
提交 | 用户 | age
b07575 1 package com.hz.phis.dt.reward;
W 2
15b964 3 import com.alibaba.fastjson.JSONArray;
b07575 4 import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
W 5 import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant;
6 import lombok.Data;
7
cefa40 8 import java.util.List;
W 9
b07575 10 /**
W 11  * @ClassName AwardDto
12  * @Description 调查问卷提交数据dto
13  * @Author wrh
14  * @Date 2023/4/17 10:46
15  * @Version 1.0
16  */
17 @Data
18 public class AnswerDto {
19
20     private String code;
21     private String titleId;
1e0bc0 22     private String title;
99a89b 23     private String[] answer;
b07575 24
W 25 }