package cc.mrbird.febs.mall.entity;
|
|
import cc.mrbird.febs.common.entity.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
/**
|
* @author wzy
|
* @date 2022-05-12
|
**/
|
@Data
|
@TableName("mall_shop_apply")
|
public class MallShopApply extends BaseEntity {
|
|
public static final Integer APPLY_AGREE = 1;
|
public static final Integer APPLY_ING = 2;
|
public static final Integer APPLY_DISAGREE = 3;
|
|
private Long memberId;
|
|
/**
|
* 姓名
|
*/
|
private String name;
|
|
/**
|
* 联系方式
|
*/
|
private String phone;
|
|
/**
|
* 身份证
|
*/
|
private String idcard;
|
|
/**
|
* 营业执照
|
*/
|
private String businessLicense;
|
|
/**
|
* 经营场地
|
*/
|
private String saleArea;
|
|
/**
|
* 1-通过 2-申请中 3-驳回
|
*/
|
private Integer status;
|
|
private String longitude;
|
|
private String latitude;
|
|
private String shopName;
|
|
private String address;
|
|
@TableField(exist = false)
|
private String vipName;
|
|
@TableField(exist = false)
|
private String inviteId;
|
}
|