You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
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 ;
import java.util.Date ;
/**
* PDF用户对应表
*/
@Data
@TableName ( value = "sys_pdf_template_relevance_statemen" )
public class SysPdfTemplateRelevanceStatemenEntity {
@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 ;
/**
* 打印方式: 0: 批次号打印, 1: 条码清单打印
*/
@TableField ( value = "`printType`" )
private Byte printType ;
@TableField ( value = "`modelKey`" )
private String modelKey ;
@TableField ( value = "updateTime" )
private Date updateTime ;
}