|
|
@@ -6,7 +6,7 @@
|
|
|
<result property="id" column="id" jdbcType="INTEGER"/>
|
|
|
<result property="uid" column="uid" jdbcType="VARCHAR"/>
|
|
|
<result property="aid" column="aid" jdbcType="VARCHAR"/>
|
|
|
- <result property="prdid" column="prdid" jdbcType="VARCHAR"/>
|
|
|
+ <result property="prdid" column="prdid" jdbcType="INTEGER"/>
|
|
|
<result property="firstTime" column="first_time" jdbcType="TIMESTAMP"/>
|
|
|
</resultMap>
|
|
|
|
|
|
@@ -59,7 +59,7 @@
|
|
|
<if test="aid != null and aid != ''">
|
|
|
aid = #{aid},
|
|
|
</if>
|
|
|
- <if test="prdid != null and prdid != ''">
|
|
|
+ <if test="prdid != null">
|
|
|
prdid = #{prdid},
|
|
|
</if>
|
|
|
<if test="firstTime != null">
|
|
|
@@ -85,7 +85,7 @@
|
|
|
<if test="aid != null and aid != ''">
|
|
|
and aid = #{aid}
|
|
|
</if>
|
|
|
- <if test="prdid != null and prdid != ''">
|
|
|
+ <if test="prdid != null">
|
|
|
and prdid = #{prdid}
|
|
|
</if>
|
|
|
<if test="firstTime != null">
|
|
|
@@ -111,7 +111,7 @@
|
|
|
<if test="aid != null and aid != ''">
|
|
|
and aid = #{aid}
|
|
|
</if>
|
|
|
- <if test="prdid != null and prdid != ''">
|
|
|
+ <if test="prdid != null">
|
|
|
and prdid = #{prdid}
|
|
|
</if>
|
|
|
<if test="firstTime != null">
|