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