liuyu
21 小时以前 6eef0b6730d940ef44e0f66dd8e7d178f1cd2d1f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package jnpf.tmsEntity.selftest;
 
import io.swagger.v3.oas.annotations.media.Schema;
import jnpf.base.Pagination;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * 自我检测记录分页查询
 */
@Data
@EqualsAndHashCode(callSuper = true)
public class TmsSelfTestQuery extends Pagination {
 
    @Schema(description = "题库ID")
    private String bankId;
 
    @Schema(description = "状态 doing/submitted")
    private String testStatus;
 
    @Schema(description = "开始时间起 yyyy-MM-dd HH:mm:ss")
    private String startTimeBegin;
 
    @Schema(description = "开始时间止 yyyy-MM-dd HH:mm:ss")
    private String startTimeEnd;
 
    @Schema(description = "关键词(题库名称)")
    private String keyword;
}