| | |
| | | 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; |
| | | |
| | | /** |
| | | * 模板标题 |
| | |
| | | * @since 2025-10-09 |
| | | */ |
| | | @Data |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | @TableName("lmk_template_constomize_title") |
| | | public class TemplateConstomizeTitle extends BaseEntity { |
| | | |
| | |
| | | |
| | | @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; |
| | | } |
| | | |
| | | } |