package cc.mrbird.febs.mall.entity; import cc.mrbird.febs.common.entity.BaseEntity; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; @Data @TableName("mall_doctor") public class MallDoctor extends BaseEntity { /** * `member_id` bigint(20) DEFAULT NULL, `store_member_id` bigint(20) DEFAULT NULL, `bind_member_id` bigint(20) DEFAULT NULL, `bind_phone` varchar(100) DEFAULT NULL, `bind_name` varchar(100) DEFAULT NULL, `bind_info` varchar(150) DEFAULT NULL, `bind_age` int(11) DEFAULT NULL, */ private Long memberId; private Long storeMemberId; private Long bindMemberId; private String bindPhone; private String bindName; private String bindInfo; private Integer bindAge; }