Compare commits

...

2 Commits

Author SHA1 Message Date
yys 1bedde7fa7 fix:管理后台-订单记录,按订单查询报错 2026-04-14 11:49:33 +08:00
yys f31e4c38c6 feat: 多语言信息 2026-04-14 11:48:48 +08:00
2 changed files with 5 additions and 2 deletions

View File

@ -30,5 +30,8 @@ email.verification.code.error=Verification code is incorrect, please try again.
# User not found
user.not.found=User not found.
user.password.incorrect=Password is incorrect, please try again.
# video generation
order.number.generation.failed=Order number {0} generation failed, please try again later.
order.number.generation.successes=Order number {0} generation successes!
order.number.generation.submit=Order number {0} generation task submitted!
order.number.generation.successbackfill=Order number {0} sucessed! Amount is back filled!

View File

@ -44,7 +44,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectAiOrderList" parameterType="AiOrder" resultMap="AiOrderResult">
<include refid="selectAiOrderVo"/>
<where>
<if test="orderNum != null and orderNum != ''"> and ao.orderNum like concat('%', #{orderNum}, '%')</if>
<if test="orderNum != null and orderNum != ''"> and ao.order_num like concat('%', #{orderNum}, '%')</if>
<if test="text != null and text != ''"> and ao.text like concat('%', #{text}, '%')</if>
<if test="userId != null "> and ao.user_id = #{userId}</if>
<if test="uuid != null "> and au.user_id = #{uuid}</if>