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;
|
|
|
}
|