zhanghua
14 小时以前 00beb9134f167d3692c26fa8362907b07ed89d19
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 lombok.Data;
 
/**
 * @author zxl
 * @since 2025-05-14
 */
@Data
@TableName("lmk_tag")
public class Tag extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
 
    @TableField("tag_name")
    private String tagName;
 
    @TableField("tag_type_id")
    private String tagTypeId;
 
 
    @TableField("sort_num")
    private Integer sortNum;
 
}