Compare commits
No commits in common. "1bedde7fa7f73679e5cb7e4d624f8203c67e24cf" and "fedaef2ff7b15be381af0169084c659dbb598838" have entirely different histories.
1bedde7fa7
...
fedaef2ff7
|
|
@ -30,8 +30,5 @@ 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.submit=Order number {0} generation task submitted!
|
||||
order.number.generation.successbackfill=Order number {0} sucessed! Amount is back filled!
|
||||
order.number.generation.successes=Order number {0} generation successes!
|
||||
|
|
@ -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.order_num like concat('%', #{orderNum}, '%')</if>
|
||||
<if test="orderNum != null and orderNum != ''"> and ao.orderNum 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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue