All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.zhxu.bp.model.Message Maven / Gradle / Ivy

The newest version!
package cn.zhxu.bp.model;

import lombok.Getter;
import lombok.Setter;

/**
 * 推送消息对象
 */
@Getter
@Setter
public class Message {

    /**
     * 事件类型
     */
    private String evtType;

    /**
     * 消息内容
     */
    private String message;

    /**
     * 事件时间戳(毫秒)
     */
    private long evtTime;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy