This commit is contained in:
2023-07-26 18:05:54 +08:00
parent a4aace1e68
commit 85908b4c70
3 changed files with 51 additions and 4 deletions

View File

@@ -1082,8 +1082,6 @@
<if test="dto.endTime != null" >
and t1.settlement_time <![CDATA[ <= ]]> #{dto.endTime,jdbcType=VARCHAR}
</if>
order by t1.create_time desc
</select>
@@ -1105,4 +1103,15 @@
#{itme,jdbcType=VARCHAR}
</foreach>
</select>
<select id="queryOrderList" resultMap="OrderBasicInfoResult">
select
<include refid="Base_Column_List"/>
from order_basic_info
where del_flag = '0'
and order_code in
<foreach collection="orderCodeList" item="item" open="(" separator="," close=")">
#{item,jdbcType=VARCHAR}
</foreach>
</select>
</mapper>