Commit e088a8d2 authored by zhengyi's avatar zhengyi

空运出货多状态查询补充

parent 44487fd8
......@@ -221,6 +221,7 @@ public interface BoxMapper extends AbstractMapper<BoxDO> {
.in(CollectionUtil.isNotEmpty(vo.getStartWarehouseIdList()),BoxDO::getStartWarehouseId,vo.getStartWarehouseIdList())
.in(CollectionUtil.isNotEmpty(vo.getDestWarehouseIdList()),BoxDO::getDestWarehouseId,vo.getDestWarehouseIdList())
.in(CollectionUtil.isNotEmpty(vo.getBoxStatusList()),BoxDO::getStatus,vo.getBoxStatusList())
.in(CollectionUtil.isNotEmpty(vo.getShipmentStatusAirList()),BoxDO::getShipmentStatusAir,vo.getShipmentStatusAirList())
.in(CollectionUtil.isNotEmpty(vo.getDestinationClearanceList()),BoxDO::getDestinationClearance,vo.getDestinationClearanceList())
.in(CollectionUtil.isNotEmpty(vo.getDeliveryTypeList()), BoxDO::getDeliveryType, vo.getDeliveryTypeList())
.in(CollectionUtil.isNotEmpty(vo.getShippingChannelIdList()), BoxDO::getShippingChannelId, vo.getShippingChannelIdList())
......
......@@ -295,4 +295,8 @@ public class BoxQueryVO {
@ApiModelProperty(value = "代理公司Agent多选")
private List<Long> agentIdList;
@ApiModelProperty(value = "空运状态多选")
private List<Integer> shipmentStatusAirList;
}
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