Commit 560d52ff authored by zhengyi's avatar zhengyi

海运出货状态多值查询字段修改

parent 5c71bf01
......@@ -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.getShipmentStatusList()),BoxDO::getShipmentStatus,vo.getShipmentStatusList())
.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())
......
......@@ -146,6 +146,9 @@ public class BoxQueryVO {
@ApiModelProperty(value = "状态多选")
private List<Integer> boxStatusList;
@ApiModelProperty(value = "海运出货状态多选")
private List<Integer> shipmentStatusList;
@ApiModelProperty(value = "起运港多选")
private List<Long> bigPortIdList;
......
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