|
@@ -23,25 +23,25 @@ public class TMonitoringAlarms extends BaseEntity
|
|
|
private Long id;
|
|
|
|
|
|
/** 创建时间 */
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date createDate;
|
|
|
|
|
|
/** 更新时间 */
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "更新时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Excel(name = "更新时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date updateDate;
|
|
|
|
|
|
/** 告警时间 */
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "告警时间 ", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Excel(name = "告警时间 ", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date alarmDate;
|
|
|
|
|
|
private List<String> alarmDateStart;
|
|
|
|
|
|
/** 告警处理时间 */
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "告警处理时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Excel(name = "告警处理时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date alarmDealDate;
|
|
|
|
|
|
private List<String> alarmDealDateStart;
|