This commit is contained in:
2024-05-26 23:29:27 +08:00
parent bc8833da32
commit 9b80fa0844

View File

@@ -435,23 +435,23 @@ where 更新时间>='%s' and 更新时间<='%s'
if (CollectionUtils.isNotEmpty(request.getPlateNoList())) {
where += " and d.plate_no like :plateNoList ";
where += " and d.plate_no in :plateNoList ";
}
if (CollectionUtils.isNotEmpty(request.getSendOrganizationList())) {
where += " and d.send_organization like :sendOrganizationList ";
where += " and d.send_organization in :sendOrganizationList ";
}
if (CollectionUtils.isNotEmpty(request.getReceiveOrganizationList())) {
where += " and d.receive_organization like :receiveOrganizationList ";
where += " and d.receive_organization in :receiveOrganizationList ";
}
if (CollectionUtils.isNotEmpty(request.getGoodsList())) {
where += " and d.goods like :goodsList ";
where += " and d.goods in :goodsList ";
}
if (CollectionUtils.isNotEmpty(request.getSpecificationList())) {
where += " and d.specification = :specificationList ";
where += " and d.specification in :specificationList ";
}