xiaoyong931011
2021-03-04 c4d28ba6e429f8d031b60e0a7f627a07e3ca74b8
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
package com.xcong.excoin.modules.documentary.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.system.base.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * @author wzy
 * @date 2020-07-29
 **/
@EqualsAndHashCode(callSuper = true)
@Data
@TableName("follow_follower_notice")
public class FollowFollowerNoticeEntity extends BaseEntity {
 
    /**
     * 会员ID
     */
    private Long memberId;
    /**
     * 标题
     */
    private String title;
    /**
     * 内容
     */
    private String content;
 
}