chenjiahe
2023-07-03 10121f70218d5af50e68f343c18044073bd6d9ce
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;
}