12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.fjhx.email.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Getter;
- import lombok.Setter;
- import java.io.Serializable;
- /**
- * <p>
- * 个人邮件正文
- * </p>
- *
- * @author zlj
- * @since 2023-04-11
- */
- @Getter
- @Setter
- @TableName("personal_message_content")
- public class PersonalMessageContent implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.ASSIGN_ID)
- private Long id;
- /**
- * 邮件主表id
- */
- private Long messageId;
- /**
- * 内容
- */
- private String content;
- /**
- * 类型
- */
- private String mimeType;
- }
|