MqSendLog.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package com.fdkankan.contro.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. import lombok.Getter;
  9. import lombok.Setter;
  10. /**
  11. * <p>
  12. *
  13. * </p>
  14. *
  15. * @author
  16. * @since 2024-03-27
  17. */
  18. @Getter
  19. @Setter
  20. @TableName("mq_send_log")
  21. public class MqSendLog implements Serializable {
  22. private static final long serialVersionUID = 1L;
  23. @TableId(value = "id", type = IdType.AUTO)
  24. private Integer id;
  25. /**
  26. * 发送的队列
  27. */
  28. @TableField("queue")
  29. private String queue;
  30. /**
  31. * 发送的mq消息
  32. */
  33. @TableField("content")
  34. private String content;
  35. @TableField("num")
  36. private String num;
  37. /**
  38. * 0未发送,1已发送
  39. */
  40. @TableField("status")
  41. private Integer status;
  42. @TableField("create_time")
  43. private Date createTime;
  44. @TableField("update_time")
  45. private Date updateTime;
  46. }