记得上下班打卡 | git大法好,push需谨慎

Commit 3c5b7b8f authored by jiangxiulong's avatar jiangxiulong

admin nft列表:增加手机号搜索;增加藏品类型

parent e0e1e601
...@@ -41,4 +41,6 @@ public class GoblinNftOrderListParam { ...@@ -41,4 +41,6 @@ public class GoblinNftOrderListParam {
private String payTimeEnd; private String payTimeEnd;
@ApiModelProperty(value = "兑换码") @ApiModelProperty(value = "兑换码")
private String exCode; private String exCode;
@ApiModelProperty(value = "用户手机号")
private String userMobile;
} }
...@@ -14,6 +14,9 @@ ...@@ -14,6 +14,9 @@
<if test="userId!=''"> <if test="userId!=''">
and user_id = #{userId} and user_id = #{userId}
</if> </if>
<if test="userMobile!=''">
and user_mobile = #{userMobile}
</if>
<if test="shortOrderCode!=''"> <if test="shortOrderCode!=''">
and order_code like concat('%', #{shortOrderCode}, '%') and order_code like concat('%', #{shortOrderCode}, '%')
</if> </if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment