Commit 0e4d13a7 authored by hubaoshan's avatar hubaoshan

加 dcat

parent 9079406f
......@@ -347,6 +347,8 @@ public class Jnsp7xtmDqsj extends CyIdIncreEntity {
private String product;
@Excel(name = "dqsjVersion", orderNum = "42", width = 20)
private String dqsjVersion;
@Excel(name = "dcat", orderNum = "43", width = 20)
private String dcat;
public static final String TERM_C = "C";
public static final String TERM_L = "L";
......
......@@ -54,6 +54,7 @@
<result column="term1" jdbcType="VARCHAR" property="term1"/>
<result column="pn2" jdbcType="VARCHAR" property="pn2"/>
<result column="product" jdbcType="VARCHAR" property="product"/>
<result column="dcat" jdbcType="VARCHAR" property="dcat"/>
<result column="dqsj_version" jdbcType="VARCHAR" property="dqsjVersion"/>
</resultMap>
......@@ -257,6 +258,9 @@
<if test="entity.dqsjVersion !=null and entity.dqsjVersion != '' ">
and dqsj_version like concat('%',#{entity.dqsjVersion},'%')
</if>
<if test="entity.dcat !=null and entity.dcat != '' ">
and dcat like concat('%',#{entity.dcat},'%')
</if>
ORDER BY business_id DESC
</select>
......@@ -399,6 +403,9 @@
<if test="entity.dqsjVersion !=null and entity.dqsjVersion != '' ">
and dqsj_version like concat('%',#{entity.dqsjVersion},'%')
</if>
<if test="entity.dcat !=null and entity.dcat != '' ">
and dcat like concat('%',#{entity.dcat},'%')
</if>
ORDER BY business_id DESC
</select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment