Commit 0e4d13a7 authored by hubaoshan's avatar hubaoshan

加 dcat

parent 9079406f
...@@ -347,6 +347,8 @@ public class Jnsp7xtmDqsj extends CyIdIncreEntity { ...@@ -347,6 +347,8 @@ public class Jnsp7xtmDqsj extends CyIdIncreEntity {
private String product; private String product;
@Excel(name = "dqsjVersion", orderNum = "42", width = 20) @Excel(name = "dqsjVersion", orderNum = "42", width = 20)
private String dqsjVersion; 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_C = "C";
public static final String TERM_L = "L"; public static final String TERM_L = "L";
......
...@@ -54,6 +54,7 @@ ...@@ -54,6 +54,7 @@
<result column="term1" jdbcType="VARCHAR" property="term1"/> <result column="term1" jdbcType="VARCHAR" property="term1"/>
<result column="pn2" jdbcType="VARCHAR" property="pn2"/> <result column="pn2" jdbcType="VARCHAR" property="pn2"/>
<result column="product" jdbcType="VARCHAR" property="product"/> <result column="product" jdbcType="VARCHAR" property="product"/>
<result column="dcat" jdbcType="VARCHAR" property="dcat"/>
<result column="dqsj_version" jdbcType="VARCHAR" property="dqsjVersion"/> <result column="dqsj_version" jdbcType="VARCHAR" property="dqsjVersion"/>
</resultMap> </resultMap>
...@@ -257,6 +258,9 @@ ...@@ -257,6 +258,9 @@
<if test="entity.dqsjVersion !=null and entity.dqsjVersion != '' "> <if test="entity.dqsjVersion !=null and entity.dqsjVersion != '' ">
and dqsj_version like concat('%',#{entity.dqsjVersion},'%') and dqsj_version like concat('%',#{entity.dqsjVersion},'%')
</if> </if>
<if test="entity.dcat !=null and entity.dcat != '' ">
and dcat like concat('%',#{entity.dcat},'%')
</if>
ORDER BY business_id DESC ORDER BY business_id DESC
</select> </select>
...@@ -399,6 +403,9 @@ ...@@ -399,6 +403,9 @@
<if test="entity.dqsjVersion !=null and entity.dqsjVersion != '' "> <if test="entity.dqsjVersion !=null and entity.dqsjVersion != '' ">
and dqsj_version like concat('%',#{entity.dqsjVersion},'%') and dqsj_version like concat('%',#{entity.dqsjVersion},'%')
</if> </if>
<if test="entity.dcat !=null and entity.dcat != '' ">
and dcat like concat('%',#{entity.dcat},'%')
</if>
ORDER BY business_id DESC ORDER BY business_id DESC
</select> </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