|
|
@@ -1,10 +1,10 @@
|
|
|
package cn.iocoder.yudao.module.iscs.controller.admin.workdesign.workflowdesign.vo;
|
|
|
|
|
|
-import lombok.*;
|
|
|
-import java.util.*;
|
|
|
-import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
+import lombok.Data;
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
|
|
@@ -25,8 +25,15 @@ public class WorkflowDesignPageReqVO extends PageParam {
|
|
|
@Schema(description = "状态:0-禁用,1-启用", example = "1")
|
|
|
private Integer status;
|
|
|
|
|
|
+ @Schema(description = "描述", example = "1")
|
|
|
+ private String description;
|
|
|
+
|
|
|
@Schema(description = "创建时间")
|
|
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
|
|
private LocalDateTime[] createTime;
|
|
|
|
|
|
+ @Schema(description = "更新时间")
|
|
|
+ @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
|
|
+ private LocalDateTime[] updateTime;
|
|
|
+
|
|
|
}
|