guohongjin
2024-05-15 5b7639f0bd9e056738ec15100ed0532e965c6cd5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package cn.stylefeng.guns.modular.business.dto;
 
import cn.stylefeng.guns.modular.business.entity.MentalTestTopic;
import cn.stylefeng.roses.kernel.rule.annotation.ChineseDescription;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
@ApiModel(value = "心理测试题库详情-响应参数")
public class MentalTestTopicPageDTO extends MentalTestTopic {
 
    @ApiModelProperty(value = "是否测试")
    @ChineseDescription("是否测试")
    private boolean testFlag;
 
    @ApiModelProperty(value = "测试结果记录ID列表")
    @ChineseDescription("测试结果记录ID列表")
    private List<Long> mentalTestRecordIdList;
 
}