人员报送批量处理

This commit is contained in:
钱涛 2025-09-25 11:02:46 +08:00
parent d0e7f7ed8c
commit ae43dbbe04
1 changed files with 3 additions and 3 deletions

View File

@ -477,7 +477,7 @@ public class EmployeeDeclareWrapper extends Service {
} finally { } finally {
} }
} }
return String.format("成功:" + success + "个,失败:" + fail + "个%", fail == 0 ? "" : ",失败原因:" + msg); return String.format("成功:" + success + "个,失败:" + fail + "个%s", fail == 0 ? "" : ",失败原因:" + msg);
} }
/** /**
@ -542,7 +542,7 @@ public class EmployeeDeclareWrapper extends Service {
} finally { } finally {
} }
} }
return String.format("成功:" + success + "个,失败:" + fail + "个%", fail == 0 ? "" : ",失败原因:" + msg); return String.format("成功:" + success + "个,失败:" + fail + "个%s", fail == 0 ? "" : ",失败原因:" + msg);
} }
/** /**
@ -602,7 +602,7 @@ public class EmployeeDeclareWrapper extends Service {
} finally { } finally {
} }
} }
return String.format("成功:" + success + "个,失败:" + fail + "个%", fail == 0 ? "" : ",失败原因:" + msg); return String.format("成功:" + success + "个,失败:" + fail + "个%s", fail == 0 ? "" : ",失败原因:" + msg);
} }