客户扫码关联关系
parent
1753712259
commit
3f672eefa6
@ -0,0 +1,79 @@
|
|||||||
|
package com.kiisoo.ic.customer.entity;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
|
import lombok.Data;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description
|
||||||
|
* @Author Caps
|
||||||
|
* @Date 2020-04-07
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@TableName ("op_vip")
|
||||||
|
public class OpVip {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 主键ID
|
||||||
|
*/
|
||||||
|
@TableId(type = IdType.AUTO)
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 原始会员ID
|
||||||
|
*/
|
||||||
|
private String originalId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 原始会员CODE
|
||||||
|
*/
|
||||||
|
private String originalCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 会员状态 1 有效 2 无效
|
||||||
|
*/
|
||||||
|
private Long status;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 手机号
|
||||||
|
*/
|
||||||
|
private String phone;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 名称
|
||||||
|
*/
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生日
|
||||||
|
*/
|
||||||
|
private Date birthday;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 邮箱
|
||||||
|
*/
|
||||||
|
private String mail;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
private Date createTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改时间
|
||||||
|
*/
|
||||||
|
private Date updateTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建人
|
||||||
|
*/
|
||||||
|
private String createBy;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改人
|
||||||
|
*/
|
||||||
|
private String updateBy;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,43 @@
|
|||||||
|
package com.kiisoo.ic.customer.entity;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description
|
||||||
|
* @Author Caps
|
||||||
|
* @Date 2020-04-07
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@TableName ("op_vip_attr")
|
||||||
|
public class OpVipAttr {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 主键ID
|
||||||
|
*/
|
||||||
|
@TableId(type = IdType.AUTO)
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 会员ID
|
||||||
|
*/
|
||||||
|
private Long vipId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 品牌ID
|
||||||
|
*/
|
||||||
|
private Long brandId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 开户店铺
|
||||||
|
*/
|
||||||
|
private Long registerStoreId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 会员渠道 0 导入 1 导购扫码
|
||||||
|
*/
|
||||||
|
private Long channel;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue