package cc.mrbird.febs.mall.entity;
|
|
import cc.mrbird.febs.common.controller.BaseController;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
/**
|
* @author wzy
|
* @date 2021-09-16
|
**/
|
@Data
|
@TableName("mall_member")
|
public class MallMember extends BaseController {
|
|
private String name;
|
|
private String phone;
|
|
private String email;
|
|
private String password;
|
|
private String sex;
|
|
private String inviteId;
|
|
private String referrerId;
|
|
private String referrerIds;
|
|
private String level;
|
|
private Integer accountStatus;
|
|
private Integer accountType;
|
|
}
|