peng
2025-10-13 4735bf93cce99c4cb22c14d52dba12ae6023642f
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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 peng
 * @since 2025-10-09
 */
@Data
@TableName("lmk_user_check_template")
public class UserCheckTemplate extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("order_sn")
    /** 订单编号 */
    private String orderSn;
 
    @TableField("template_id")
    /** 模板id */
    private String templateId;
 
    @TableField("sub_id")
    /** 子模板id */
    private String subId;
 
    @TableField("sub_name")
    /** 子模板名称 */
    private String subName;
 
    @TableField("content")
    /** 文本值 */
    private String content;
 
    @TableField("template_name")
    /** 模板名称 */
    private String templateName;
 
    @TableField("choose_img_id")
    /** 选择模板图片id */
    private String chooseImgId;
 
    @TableField("choose_img")
    /** 选择模板图片 */
    private String chooseImg;
 
    @TableField("content_type")
    /** 模板文本类型 */
    private String contentType;
 
 
}