zxl
4 天以前 b038327c1c8ac3fd40bab7e6e2f1866807496b32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
 
/**
 * lmk-shop-java
 * 会员自定义标签
 * @author : zxl
 * @date : 2025-07-21 13:40
 **/
 
@Data
@TableName("lmk_member_customer_tag")
public class MemberCustomerTag extends BaseEntity {
 
    @TableField("tag_name")
    private String tagName;
 
    @TableField("member_id")
    private String memberId;
}