Alarm notification return creation and modification time

pull/381/head
chen.ma 4 years ago
parent b7df63b6a2
commit 911271a325

@ -17,8 +17,11 @@
package cn.hippo4j.config.model.biz.notify; package cn.hippo4j.config.model.biz.notify;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data; import lombok.Data;
import java.util.Date;
/** /**
* 消息通知返回. * 消息通知返回.
* *
@ -78,4 +81,15 @@ public class NotifyRespDTO {
*/ */
private Integer enable; private Integer enable;
/**
* 创建时间
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date gmtCreate;
/**
* 修改时间
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date gmtModified;
} }

Loading…
Cancel
Save