| | |
| | | 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; |
| | | |
| | |
| | | private int batchNo; |
| | | |
| | | private int validState; |
| | | |
| | | @TableField(exist = false) |
| | | private String address; |
| | | |
| | | @TableField(exist = false) |
| | | private String inviteId; |
| | | |
| | | @TableField(exist = false) |
| | | private String refererId; |
| | | |
| | | @TableField(exist = false) |
| | | private Long memberId; |
| | | |
| | | @TableField(exist = false) |
| | | private Long fundId; |
| | | |
| | | } |