package cn.lili.modules.lmk.domain.entity;
|
|
import cn.lili.mybatis.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
@Data
|
@TableName("lmk_customer_tag_ref")
|
public class CustomerTagRef extends BaseEntity {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableField("customerId")
|
/**
|
* 客户id
|
*/
|
private String customerId;
|
|
@TableField("customer_tag_id")
|
/**
|
* 客户对应标签id
|
*/
|
private String customerTagId;
|
|
|
}
|