fwq
2024-04-01 3e8397cc9f2aece1b0430fcd4fe3162a22bc499f
提交 | 用户 | 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 }