no message
parent
c67b81d243
commit
1f2cc6c64c
|
|
@ -4,6 +4,7 @@ import net.lab1024.sa.base.common.domain.PageParam;
|
|||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.validator.constraints.Length;
|
||||
|
||||
/**
|
||||
* Task任务 分页查询表单
|
||||
|
|
@ -26,4 +27,8 @@ public class TaskQueryForm extends PageParam {
|
|||
@Schema(description = "任务类型")
|
||||
private String taskType;
|
||||
|
||||
@Schema(description = "关键字")
|
||||
@Length(max = 200, message = "关键字最多200字符")
|
||||
private String keywords;
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue