zxl
2025-06-04 33aa0f005c1952dda7dc1f713b424a6700a6befd
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
28
29
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 java.time.LocalDateTime;
import lombok.Data;
 
/**
 *
 *
 * @author zxl
 * @since 2025-05-14
 */
@Data
@TableName("lmk_customer_tag")
public class CustomerTag extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("tag_name")
    /**  标签名称*/
    private String tagName;
 
    @TableField("create_type")
    /** 创建方式 */
    private String createType;
 
}