Compare commits
2 Commits
fedaef2ff7
...
1bedde7fa7
| Author | SHA1 | Date |
|---|---|---|
|
|
1bedde7fa7 | |
|
|
f31e4c38c6 |
|
|
@ -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 not found.
|
user.not.found=User not found.
|
||||||
user.password.incorrect=Password is incorrect, please try again.
|
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.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!
|
||||||
|
|
@ -44,7 +44,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<select id="selectAiOrderList" parameterType="AiOrder" resultMap="AiOrderResult">
|
<select id="selectAiOrderList" parameterType="AiOrder" resultMap="AiOrderResult">
|
||||||
<include refid="selectAiOrderVo"/>
|
<include refid="selectAiOrderVo"/>
|
||||||
<where>
|
<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="text != null and text != ''"> and ao.text like concat('%', #{text}, '%')</if>
|
||||||
<if test="userId != null "> and ao.user_id = #{userId}</if>
|
<if test="userId != null "> and ao.user_id = #{userId}</if>
|
||||||
<if test="uuid != null "> and au.user_id = #{uuid}</if>
|
<if test="uuid != null "> and au.user_id = #{uuid}</if>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue