1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.hz.phis.dt.reward;
|
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * @ClassName InvestigateGroupDto
| * @Description 题组数据
| * @Author wrh
| * @Date 2023/4/17 11:53
| * @Version 1.0
| */
| @Data
| public class InvestigateGroupDto {
|
| private String awardId;
| private String groupId;
| //题目数据
| private List<InvestigateTitleDto> titleDtoList;
| }
|
|