PersonalMessageContent.java 781 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package com.fjhx.email.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.Getter;
  6. import lombok.Setter;
  7. import java.io.Serializable;
  8. /**
  9. * <p>
  10. * 个人邮件正文
  11. * </p>
  12. *
  13. * @author zlj
  14. * @since 2023-04-11
  15. */
  16. @Getter
  17. @Setter
  18. @TableName("personal_message_content")
  19. public class PersonalMessageContent implements Serializable {
  20. private static final long serialVersionUID = 1L;
  21. @TableId(value = "id", type = IdType.ASSIGN_ID)
  22. private Long id;
  23. /**
  24. * 邮件主表id
  25. */
  26. private Long messageId;
  27. /**
  28. * 内容
  29. */
  30. private String content;
  31. /**
  32. * 类型
  33. */
  34. private String mimeType;
  35. }