peng
7 天以前 745af316b6f14cc97f6cb64d56eda4cb68960c3e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
 
 
}