Skip to content

Commit

Permalink
modify escape false
Browse files Browse the repository at this point in the history
  • Loading branch information
ponfee committed Nov 23, 2024
1 parent 9639547 commit 1c0d348
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ var table = {
toolbar: "toolbar",
loadingFontSize: 13,
striped: true,
escape: true,
escape: false,
firstLoad: true,
showFooter: false,
search: false,
Expand Down Expand Up @@ -947,7 +947,7 @@ var table = {
fix: false,
area: [_width + 'px', _height + 'px'],
content: _url,
closeBtn: $.common.isEmpty(options.closeBtn) ? 1 : options.closeBtn,
closeBtn: $.common.isEmpty(options.closeBtn) ? true : options.closeBtn,
shadeClose: $.common.isEmpty(options.shadeClose) ? true : options.shadeClose,
skin: options.skin,
// options.btn设置为0表示不显示按钮
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,13 @@ public class SchedJobResponse extends ToJsonString implements Serializable {
private Integer misfireStrategy;
private Integer routeStrategy;
private Integer shutdownStrategy;

@JsonFormat(shape = JsonFormat.Shape.STRING)
private Long lastTriggerTime;

@JsonFormat(shape = JsonFormat.Shape.STRING)
private Long nextTriggerTime;

private String remark;

private Integer version;
Expand Down

0 comments on commit 1c0d348

Please sign in to comment.