fuliqi
2024-07-16 38f9471ecf47b7c15b352113bc0f5a2ec1e64e7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ycl.jxkg.domain.query;
 
import com.ycl.jxkg.domain.base.AbsQuery;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
/**
 * 考试作弊记录查询
 *
 * @author gonghl
 * @since 2024-06-26
 */
@Data
@ApiModel(value = "ExamCheat查询", description = "考试作弊记录查询")
public class ExamCheatQuery extends AbsQuery {
 
    private String keyword;
 
}