File was renamed from framework/src/main/java/cn/lili/modules/lmk/domain/entity/CustomerTag.java |
| | |
| | | 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 { |
| | | @TableName("lmk_goods_tag") |
| | | public class GoodsTag extends BaseEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableField("tag_id") |
| | | private String tagId; |
| | | |
| | | @TableField("goods_id") |
| | | private String goodsId; |
| | | |
| | | @TableField("tag_name") |
| | | /** 标签名称*/ |
| | | private String tagName; |