| | |
| | | <if test="query.status != null"> |
| | | AND torr.status = #{query.status} |
| | | </if> |
| | | <if test="query.orderType != null and query.orderType== OrderTypeEnum.MALL_ORDER"> |
| | | <if |
| | | test="query.orderType != null and @com.test.constant.OrderTypeEnum@isMallOrder(query.orderType)"> |
| | | AND o.order_from in (1,2,3) |
| | | </if> |
| | | <if test="query.orderType != null and query.orderType== OrderTypeEnum.AUCTION_ORDER"> |
| | | <if |
| | | test="query.orderType != null and @com.test.constant.OrderTypeEnum@isAuctionOrder(query.orderType)"> |
| | | AND o.order_from = 4 |
| | | </if> |
| | | </where> |