package org.springblade.mdm.flow.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Getter;
|
import lombok.Setter;
|
import org.springblade.core.mp.support.Query;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDateTime;
|
|
@Setter
|
@Getter
|
public class DoneQueryVO extends Query {
|
@Schema(description = "当前用户id,后端设置")
|
private String userId;
|
@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 keyword;
|
@Schema(description = "流程状态:0:全部,1:进行中;2已结束")
|
private Integer status;
|
}
|