|
@@ -25,9 +25,9 @@ public class NextApproverImpl {
|
|
|
*
|
|
|
* @return 结果
|
|
|
*/
|
|
|
- public List<SysUser> submitTask1(String a1, String a2, String a3) {
|
|
|
+ public List<SysUser> submitTask1(String id, String a2, String a3) {
|
|
|
List<SysUser> userList = new ArrayList<>();
|
|
|
- DeptAssessmentDeclaration deptAssessmentDeclaration = deptAssessmentDeclarationService.getById(a1);
|
|
|
+ DeptAssessmentDeclaration deptAssessmentDeclaration = deptAssessmentDeclarationService.getById(id);
|
|
|
if (null != deptAssessmentDeclaration){
|
|
|
SysUser user = new SysUser();
|
|
|
user.setId(deptAssessmentDeclaration.getDeptLeaderId());
|
|
@@ -43,9 +43,9 @@ public class NextApproverImpl {
|
|
|
*
|
|
|
* @return 结果
|
|
|
*/
|
|
|
- public List<SysUser> submitTask2(String a1, String a2, String a3) {
|
|
|
+ public List<SysUser> submitTask2(String id, String a2, String a3) {
|
|
|
List<SysUser> userList = new ArrayList<>();
|
|
|
- DeptAssessmentDeclaration deptAssessmentDeclaration = deptAssessmentDeclarationService.getById(a1);
|
|
|
+ DeptAssessmentDeclaration deptAssessmentDeclaration = deptAssessmentDeclarationService.getById(id);
|
|
|
if (null != deptAssessmentDeclaration){
|
|
|
SysUser user = new SysUser();
|
|
|
user.setId(deptAssessmentDeclaration.getSeconderId());
|