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.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; /** * 模板标题 * * @author peng * @since 2025-10-09 */ @Data @NoArgsConstructor @AllArgsConstructor @TableName("lmk_template_constomize_title") public class TemplateConstomizeTitle extends BaseEntity { private static final long serialVersionUID = 1L; @TableField("template_id") /** 模板id */ private String templateId; @TableField("template_title") /** 模板标题 */ private String templateTitle; @TableField("content_type") /** 标题类型 */ /** * @see cn.lili.modules.lmk.enums.general.TemplateContentTypeEnum */ private String contentType; public TemplateConstomizeTitle(String templateTitle,String contentType) { this.templateTitle = templateTitle; this.contentType = contentType; } }