package com.glxp.api.entity.system; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; /** * PDF用户对应表 */ @Data @TableName(value = "sys_pdf_template_relevance_label") public class SysPdfTemplateRelevanceLabelEntity { @TableId(value = "id", type = IdType.INPUT) private Integer id; /** * 模板 id */ @TableField(value = "`templateId`") private Integer templateId; /** * 自定义ID */ @TableField(value = "`customerId`") private Long customerId; /** * 用户 id */ @TableField(value = "`adminId`") private Integer adminId; /** * 模块ID */ @TableField(value = "`moduleId`") private Integer moduleId; /** * 业务单据ID */ @TableField(value = "`localAction`") private String localAction; @TableField(value = "`remark1`") private String remark1; @TableField(value = "`remark2`") private String remark2; @TableField(value = "`remark3`") private String remark3; @TableField(value = "`printType`") private Byte printType; @TableField(value = "`modelKey`") private String modelKey; }