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