| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package com.fdkankan.contro.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- *
- * </p>
- *
- * @author
- * @since 2024-03-27
- */
- @Getter
- @Setter
- @TableName("mq_send_log")
- public class MqSendLog implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 发送的队列
- */
- @TableField("queue")
- private String queue;
- /**
- * 发送的mq消息
- */
- @TableField("content")
- private String content;
- @TableField("num")
- private String num;
- /**
- * 0未发送,1已发送
- */
- @TableField("status")
- private Integer status;
- @TableField("create_time")
- private Date createTime;
- @TableField("update_time")
- private Date updateTime;
- }
|