com.redismq.server.pojo.MQMessageDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redismq-server Show documentation
Show all versions of redismq-server Show documentation
redismq server and console
package com.redismq.server.pojo;
import lombok.Data;
/**
* mqmessage
*
* @author hzh
* @date 2023/11/20
*/
@Data
public class MQMessageDTO {
/**
* 消息主体
*/
private Object body;
/**
* 主题
*/
private String queue;
/**
* 标签
*/
private String tag = "";
/**
* 消费时间
*/
private Long consumeTime;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy