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.
27 lines
603 B
Java
27 lines
603 B
Java
package com.glxp.api.entity.system;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
@TableName("sys_pdf_template")
|
|
public class SystemPDFTemplateEntity {
|
|
|
|
private Integer id;
|
|
private String name;
|
|
private int type;
|
|
private int module;
|
|
private String param;
|
|
private String path;
|
|
private int rowCount;
|
|
private int qrcodeCount;
|
|
private String remark;
|
|
private Date create_time;
|
|
private Date update_time;
|
|
private String jrxmlPath;
|
|
private String bussinessType;
|
|
private String bussinessStatus;
|
|
}
|