提交 3d3e4260 编写于 作者: xuhui961310148's avatar xuhui961310148

update:利用应用界面无存储字段,格式化设置调度时间为年月日时分秒格式

上级 bd451c9d
......@@ -145,6 +145,22 @@ public class JobsInfoDTO extends DTOBase implements Serializable {
@JsonProperty("create_time")
private Timestamp createTime;
/**
* 上次调度时间格式化值
*/
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "last_run")
@JsonProperty("last_run")
private Timestamp lastRun;
/**
* 上次调度时间格式化值
*/
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
@JSONField(name = "next_run")
@JsonProperty("next_run")
private Timestamp nextRun;
/**
* 设置 [TENANT_ID]
......@@ -258,6 +274,34 @@ public class JobsInfoDTO extends DTOBase implements Serializable {
this.modify("create_time",createTime);
}
/**
* 上次执行时间格式化
* @return
*/
public Timestamp getLastRun() {
try{
if (lastTime == null || lastTime == 0){
return null;
}
return new Timestamp(lastTime);
}catch (Exception e){
}
return null;
}
/**
* 下次执行时间格式化
* @return
*/
public Timestamp getNextRun() {
try {
if (nextTime == null || nextTime == 0) {
return null;
}
return new Timestamp(nextTime);
} catch (Exception e) {
}
return null;
}
}
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册