修改打印和内部码问题

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

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

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

@ -5,7 +5,7 @@
<select id="queryPage" parameterType="com.glxp.api.req.system.FilterPdfTemplateRequest" <select id="queryPage" parameterType="com.glxp.api.req.system.FilterPdfTemplateRequest"
resultType="com.glxp.api.entity.system.SystemPDFTemplateEntity"> 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 FROM sys_pdf_template
<where> <where>
<if test="name != null and '' != name"> <if test="name != null and '' != name">

Loading…
Cancel
Save