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;
|
| }
|
|