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

com.lmaye.cloud.starter.delay.queue.entity.DelayQueueBody Maven / Gradle / Ivy

There is a newer version: 1.2.29
Show newest version
package com.lmaye.cloud.starter.delay.queue.entity;

import lombok.Builder;
import lombok.Data;

import java.io.Serializable;

/**
 * -- Delay Queue Body
 *
 * @author Lmay Zhou
 * @date 2021/12/16 18:12
 * @email [email protected]
 * @since JDK1.8
 */
@Data
@Builder
public class DelayQueueBody implements Serializable {
    private final static long serialVersionUID = 1L;

    /**
     * 序列号
     */
    private String serialNo;

    /**
     * 主题
     */
    private String topic;

    /**
     * 消息
     */
    private Object msg;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy