bug修改
parent
1eb3c65bba
commit
b7c2690d56
@ -1,29 +1,44 @@
|
|||||||
package com.glxp.api.entity.system;
|
package com.glxp.api.entity.system;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
|
@TableName("sys_pdf_template")
|
||||||
public class SystemPDFTemplateEntity {
|
public class SystemPDFTemplateEntity {
|
||||||
|
@TableId(value = "id", type = IdType.AUTO)
|
||||||
private Integer id;
|
private Integer id;
|
||||||
|
@TableField(value = "name")
|
||||||
private String name;
|
private String name;
|
||||||
|
@TableField(value = "type")
|
||||||
private int type;
|
private int type;
|
||||||
|
@TableField(value = "module")
|
||||||
private int module;
|
private int module;
|
||||||
|
@TableField(value = "param")
|
||||||
private String param;
|
private String param;
|
||||||
|
@TableField(value = "path")
|
||||||
private String path;
|
private String path;
|
||||||
|
@TableField(value = "rowCount")
|
||||||
private int rowCount;
|
private int rowCount;
|
||||||
|
@TableField(value = "qrcodeCount")
|
||||||
private int qrcodeCount;
|
private int qrcodeCount;
|
||||||
|
@TableField(value = "remark")
|
||||||
private String remark;
|
private String remark;
|
||||||
|
@TableField(value = "`create_time`")
|
||||||
private Date create_time;
|
private Date create_time;
|
||||||
@TableField(value = "`update_time`")
|
@TableField(value = "`update_time`")
|
||||||
private Date update_time;
|
private Date update_time;
|
||||||
|
@TableField(value = "jrxmlPath")
|
||||||
private String jrxmlPath;
|
private String jrxmlPath;
|
||||||
|
@TableField(exist = false)
|
||||||
private Integer bussinessType;
|
private Integer bussinessType;
|
||||||
|
@TableField(exist = false)
|
||||||
private String bussinessStatus;
|
private String bussinessStatus;
|
||||||
|
@TableField(exist = false)
|
||||||
@TableField(value = "updateTime")
|
|
||||||
private Date updateTime;
|
private Date updateTime;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue