|
@@ -48,7 +48,6 @@
|
|
|
<result property="suspendUrl" column="suspend_url" />
|
|
|
<result property="otherUrl" column="other_url" />
|
|
|
<result property="age" column="age" />
|
|
|
- <result property="vaccineTimeNext" column="vaccine_time_next" />
|
|
|
<result property="shouldSlow" column="should_slow" />
|
|
|
</resultMap>
|
|
|
|
|
@@ -104,7 +103,6 @@
|
|
|
<if test="suspendUrl != null and suspendUrl != ''"> and suspend_url = #{suspendUrl}</if>
|
|
|
<if test="otherUrl != null and otherUrl != ''"> and other_url = #{otherUrl}</if>
|
|
|
<if test="age != null and age != ''"> and age = #{age}</if>
|
|
|
- <if test="vaccineTimeNext != null and vaccineTimeNext != ''"> and vaccine_time_next = #{vaccineTimeNext}</if>
|
|
|
<if test="shouldSlow != null and shouldSlow != ''"> and should_slow = #{shouldSlow}</if>
|
|
|
</where>
|
|
|
</select>
|
|
@@ -159,7 +157,6 @@
|
|
|
<if test="suspendUrl != null and suspendUrl != ''">suspend_url,</if>
|
|
|
<if test="otherUrl != null and otherUrl != ''">other_url,</if>
|
|
|
<if test="age != null and age != ''">age,</if>
|
|
|
- <if test="vaccineTimeNext != null and vaccineTimeNext != ''">vaccine_time_next,</if>
|
|
|
<if test="shouldSlow != null and shouldSlow != ''">should_slow,</if>
|
|
|
create_time
|
|
|
</trim>
|
|
@@ -205,7 +202,6 @@
|
|
|
<if test="suspendUrl != null and suspendUrl != ''">#{suspendUrl},</if>
|
|
|
<if test="otherUrl != null and otherUrl != ''">#{url},</if>
|
|
|
<if test="age != null and age != ''">#{age},</if>
|
|
|
- <if test="vaccineTimeNext != null and vaccineTimeNext != ''">#{vaccine_time_next},</if>
|
|
|
<if test="shouldSlow != null and shouldSlow != ''">#{shouldSlow},</if>
|
|
|
sysdate()
|
|
|
</trim>
|
|
@@ -253,7 +249,6 @@
|
|
|
<if test="suspendUrl != null and suspendUrl != ''">suspend_url = #{suspendUrl},</if>
|
|
|
<if test="otherUrl != null and otherUrl != ''">other_url = #{otherUrl},</if>
|
|
|
<if test="age != null and age != ''">age = #{age},</if>
|
|
|
- <if test="vaccineTimeNext != null and vaccineTimeNext != ''">vaccine_time_next = #{vaccineTimeNext},</if>
|
|
|
<if test="shouldSlow != null and shouldSlow != ''">should_slow = #{shouldSlow},</if>
|
|
|
update_by = sysdate()
|
|
|
</trim>
|