@@ -9,11 +9,16 @@ import java.util.List;
@Getter
@Setter
public class PushParam {
+ /** 用户openId */
private String userId;
+ /** 用户名 */
private String userName;
- private String templateId;
+ /** 设备名 */
private String deviceName;
+ /** 告警值 */
private String value;
+ /** 告警内容 */
private String context;
+ /** 告警时间 */
private Date noticeTime;
}