Commit 22ec5bb2 authored by libin's avatar libin

Merge branch 'base-modify' of http://113.105.137.151:22280/youjj/cloud-platform into base-modify

parents e0fb87e9 a76ba1c9
......@@ -351,6 +351,8 @@ public class BaseOrderController extends CommonBaseController {
"6--已完成")
private Integer status;
private String multiStatus;
@ApiModelProperty(value = "是否有使用会员权益")
private Integer hasMemberRight;
......
......@@ -62,6 +62,14 @@
<if test="hasMemberRight != null">
and has_member_right = #{hasMemberRight}
</if>
<if test="multiStatus != null">
and
(
<foreach collection="multiStatus.split(',')" index="sIndex" item="statusEntity" separator=" or ">
status = #{statusEntity}
</foreach>
)
</if>
</where>
order by crt_time desc
</select>
......
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