New file |
| | |
| | | package cn.lili.modules.lmk.domain.entity; |
| | | |
| | | import cn.lili.modules.lmk.enums.general.MerchantTagTypeEnums; |
| | | import cn.lili.modules.lmk.enums.general.MerchantVisibilityEnums; |
| | | import cn.lili.mybatis.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * 商户标签 |
| | | * |
| | | * @author peng |
| | | * @since 2025-09-16 |
| | | */ |
| | | @Data |
| | | @TableName("lmk_merchant_tag") |
| | | public class MerchantTag extends BaseEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableField("tag_code") |
| | | /** 标签编码 */ |
| | | private String tagCode; |
| | | |
| | | @TableField("tag_name") |
| | | /** 标签名称 */ |
| | | private String tagName; |
| | | |
| | | @TableField("merchant_visibility") |
| | | /** 是否商户可见 |
| | | * @see MerchantVisibilityEnums |
| | | * */ |
| | | private String merchantVisibility; |
| | | |
| | | @TableField("tag_type") |
| | | /** 标签类型 |
| | | * @see MerchantTagTypeEnums |
| | | * */ |
| | | private String tagType; |
| | | |
| | | |
| | | } |