|
@@ -60,6 +60,10 @@ public class WorkProvider {
|
|
|
}else if (type==2){
|
|
|
sql.append(" and location IS NOT NULL");
|
|
|
}
|
|
|
+ List<String> nums = param.getNums();
|
|
|
+ if (ArrayUtil.isNotEmpty(nums)) {
|
|
|
+ sql.append(" and ( num in ('").append(StringUtils.join(nums, "','")).append("') )");
|
|
|
+ }
|
|
|
}else {
|
|
|
List<String> snCodes = param.getSnCodes();
|
|
|
if (ArrayUtil.isNotEmpty(snCodes)){
|