|
|
@@ -347,4 +347,15 @@
|
|
|
create_time = #{createTime,jdbcType=TIMESTAMP}
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
</update>
|
|
|
+ <select id="selectListNewOrderDun" resultType="com.goafanti.order.bo.OutNewOrderDunBo">
|
|
|
+ select id, order_no orderNo, tid, project_type projectType, dun_type dunType, wait_day waitDay,
|
|
|
+ effective_year effectiveYear, aid, create_time createTime
|
|
|
+ from new_order_dun where 1=1
|
|
|
+ <if test="orderNo!=null and orderNo!=''">
|
|
|
+ and order_no= #{orderNo}
|
|
|
+ </if>
|
|
|
+ <if test="aid != null and aid != ''">
|
|
|
+ and aid= #{aid}
|
|
|
+ </if>
|
|
|
+ </select>
|
|
|
</mapper>
|