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_store_member")
|
public class MallStoreMember extends BaseEntity {
|
private String account;//机器账号
|
private String password;//机器密码
|
private Long storeItemId;//店铺ID
|
private Long storeId;//店铺ID
|
private Long memberId;//店铺ID
|
|
|
|
private String name;//机器账号
|
private String address;//机器账号
|
private Integer age;//机器账号
|
private String phone;//机器账号
|
private Long bindId;//机器账号
|
|
}
|