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