wangrenhuang
2023-04-18 cefa402af661e831c59b8a169aa74da02575fb4d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.hz.phis.dt.reward;
 
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 List<String> answer;
 
}