package org.springblade.mdm.flow.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import org.springblade.core.mp.support.Query;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDateTime;
|
|
@EqualsAndHashCode(callSuper = true)
|
@Data
|
public class TodoQueryVO extends Query {
|
@Schema(description = "关键字")
|
private String keyword;
|
|
@Schema(description = "创建时间开始")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private LocalDateTime createTimeBegin;
|
|
@Schema(description = "创建时间截止")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private LocalDateTime createTimeEnd;
|
|
@Schema(description = "机床类型")
|
private String[] machineSpec;
|
}
|