增加消息处理异常记录--system模块
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
package com.njcn.system.pojo.po;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* rocketmq消息处理记录表
|
||||
* </p>
|
||||
*
|
||||
* @author hongawen
|
||||
* @since 2023-08-17
|
||||
*/
|
||||
@Data
|
||||
@TableName("rocketmq_msg_error_log")
|
||||
public class RocketmqMsgErrorLog{
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* key
|
||||
*/
|
||||
private String key;
|
||||
|
||||
/**
|
||||
* 来源
|
||||
*/
|
||||
private String resource;
|
||||
|
||||
/**
|
||||
* 记录
|
||||
*/
|
||||
private String record;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user