🔨 查询字段.

This commit is contained in:
lijiahangmax
2025-03-21 00:05:04 +08:00
parent 819520ef73
commit b3009bb65e
10 changed files with 37 additions and 23 deletions

View File

@@ -29,7 +29,6 @@ import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
import java.util.Date;
/**
* 计划任务主机 视图响应对象
@@ -56,16 +55,4 @@ public class ExecJobHostVO implements Serializable {
@Schema(description = "主机id")
private Long hostId;
@Schema(description = "创建时间")
private Date createTime;
@Schema(description = "修改时间")
private Date updateTime;
@Schema(description = "创建人")
private String creator;
@Schema(description = "修改人")
private String updater;
}

View File

@@ -93,6 +93,12 @@ public class ExecJobVO implements Serializable {
@Schema(description = "修改时间")
private Date updateTime;
@Schema(description = "创建人")
private String creator;
@Schema(description = "修改人")
private String updater;
@Schema(description = "执行主机")
private List<Long> hostIdList;