peng
2025-10-27 2a7b0a64b14b22ec45f8a0f6e4764bc3cd16919c
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;
 
/**
 * 
 *
 * @author zxl
 * @since 2025-10-09
 */
@Data
@TableName("lmk_store_tag")
public class StoreTag extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("tag_name")
    /** 标签名称 */
    private String tagName;
 
 
 
}