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;
|
|
}
|