xiaoyong931011
2022-11-21 5f51a29343d6021e5d2745163c07afe1a67d35cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package cc.mrbird.febs.dapp.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName("dapp_message")
public class DappMessageEntity extends BaseEntity {
 
    private Long memberId;
 
    private String message;
 
    /**
     * 回复消息
     ALTER TABLE `dapp_message`
     DROP COLUMN `back_message`,
     ADD COLUMN `back_message`  varchar(1000) NULL COMMENT '回复消息' AFTER `update_time`;
     */
    private String backMessage;
 
    @TableField(exist = false)
    private String username;
 
    /**
     * 后台操作用户的标识
     */
    @TableField(exist = false)
    private String description;
 
}