|
package com.muyu.mqttmessage.common;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @ClassName Test
|
|
* @Description 描述
|
|
* @Author Xin.Yao
|
|
* @Date 2024/6/9 上午10:56
|
|
*/
|
|
@Data
|
|
public class Test {
|
|
private Integer partitions;
|
|
private String key;
|
|
private String data;
|
|
private String consumerName;
|
|
}
|