Commit 5e6b4b33 by wangli

修改

1 parent 2e232121
......@@ -176,6 +176,9 @@ public class OrderServiceDetailImpl implements OrderServiceDetail {
private HashMap<String, EngineerInfo> getEngineerInfos(List<String> egCodes){
// 获取工程师信息列表
HashMap<String, EngineerInfo> map = new HashMap<>();
if (egCodes.isEmpty()) {
return map;
}
LambdaQueryWrapper<EngineerInfo> lqw = new LambdaQueryWrapper<>();
lqw.in(EngineerInfo::getEngineerCode, egCodes);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!