代码调整

This commit is contained in:
2023-11-07 11:28:30 +08:00
parent 8a0d956e06
commit 86816568ce
27 changed files with 660 additions and 84 deletions

View File

@@ -10,7 +10,12 @@ import lombok.Getter;
@Getter
public enum PrepareResponseEnum {
PREPARE_INNER_ERROR("A0801", "业务功能内部错误")
PREPARE_INNER_ERROR("A0801", "业务功能内部错误"),
NO_EXECUTOR_NODE("A0802", "无可执行节点"),
NO_REPAIR_DATE("A0803", "未指定补招日期"),
;
private final String code;

View File

@@ -32,7 +32,6 @@ public class LineParam {
private Integer type;
@ApiModelProperty(name = "dataDate",value = "时间日期,存的是起始时间的日期类型,去除时分秒")
@Deprecated
private String dataDate;
/**
@@ -45,13 +44,13 @@ public class LineParam {
/**
* 调度任务开始时间
*/
@NotBlank(message = "调度任务开始时间不可为空 yyyy-MM-dd hh:mm:ss")
@Deprecated
private String beginTime;
/**
* 调度任务结束时间
*/
@NotBlank(message = "调度任务结束时间不可为空 yyyy-MM-dd hh:mm:ss")
@Deprecated
private String endTime;