|
@@ -115,7 +115,7 @@ public class TicketBoxMgrController extends BaseApiController {
|
|
|
queryWrapper.eq(null != ticketBoxQueryParam && null != ticketBoxQueryParam.getStatus(), "status", ticketBoxQueryParam.getStatus());
|
|
|
// 排除指定票组
|
|
|
if (CollectionUtils.isNotEmpty(ticketBoxQueryParam.getExcludeBoxIds())) {
|
|
|
- queryWrapper.notIn("boxId", ticketBoxQueryParam.getExcludeBoxIds());
|
|
|
+ queryWrapper.notIn("box_id", ticketBoxQueryParam.getExcludeBoxIds());
|
|
|
}
|
|
|
queryWrapper.orderByAsc("FIELD(`status`, 'wait', 'doing', 'done', 'on', 'off')").orderByDesc("box_id");
|
|
|
List<TicketBox> list = ticketBoxService.list(queryWrapper);
|