com.litongjava.tio.utils.notification.NotifactionWarmModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-utils Show documentation
Show all versions of tio-utils Show documentation
t-io is a aio framework for java
package com.litongjava.tio.utils.notification;
import java.util.Date;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@AllArgsConstructor
public class NotifactionWarmModel {
private String appGroupName;
private String appName;
private String warningName;
private String level;
private String deviceName;
private String content;
private Date time;
}