mirror of
https://codeup.aliyun.com/64f7d6b8ce01efaafef1e678/coal/coal.git
synced 2026-01-25 15:55:18 +08:00
完善
This commit is contained in:
@@ -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 ";
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user