修改打印和内部码问题

master
郑明梁 2 years ago
parent 77276bf28a
commit f686b5de3d

@ -1,5 +1,6 @@
package com.glxp.api.entity.system;
import com.baomidou.mybatisplus.annotation.TableField;
import lombok.Data;
import java.util.Date;
@ -18,6 +19,7 @@ public class SystemPDFTemplateEntity {
private int qrcodeCount;
private String remark;
private Date create_time;
@TableField(value = "`update_time`")
private Date update_time;
private String jrxmlPath;
private Integer bussinessType;

@ -583,6 +583,9 @@
<if test="allowNoProduct != null">
allowNoProduct=#{allowNoProduct},
</if>
<if test="allowNoSerial != null">
allowNoSerial=#{allowNoSerial},
</if>
<if test="spmc != null">
spmc=#{spmc},
</if>

@ -5,7 +5,7 @@
<select id="queryPage" parameterType="com.glxp.api.req.system.FilterPdfTemplateRequest"
resultType="com.glxp.api.entity.system.SystemPDFTemplateEntity">
SELECT id,name,type,module,param,path,rowCount,qrcodeCount,remark,create_time,update_time,jrxmlPath,bussinessType,bussinessStatus
SELECT id,name,type,module,param,path,rowCount,qrcodeCount,remark,create_time,update_time as update_time,jrxmlPath,bussinessType,bussinessStatus
FROM sys_pdf_template
<where>
<if test="name != null and '' != name">

Loading…
Cancel
Save