com.lmaye.cloud.starter.delay.queue.entity.DelayQueueBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lms-cloud-starter-delay-queue Show documentation
Show all versions of lms-cloud-starter-delay-queue Show documentation
LMS Cloud Delay Queue Starter project for Spring Boot
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