|
|
@ -1,6 +1,8 @@ |
|
|
|
package com.elink.esua.epdc.service.impl; |
|
|
|
|
|
|
|
import com.elink.esua.epdc.commons.tools.utils.Result; |
|
|
|
import com.elink.esua.epdc.dto.form.ActGroupFormDto; |
|
|
|
import com.elink.esua.epdc.dto.form.ActUserFormDto; |
|
|
|
import com.elink.esua.epdc.service.ActIdService; |
|
|
|
import org.activiti.engine.IdentityService; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
@ -19,13 +21,13 @@ public class ActIdServiceImpl implements ActIdService { |
|
|
|
private IdentityService identityService; |
|
|
|
|
|
|
|
@Override |
|
|
|
public Result<String> saveUser(String userName) { |
|
|
|
return new Result<String>().ok("success"); |
|
|
|
public Result<String> saveUser(ActUserFormDto actUserFormDto) { |
|
|
|
return null; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public Result<String> saveGroup(String groupName) { |
|
|
|
return new Result<String>().ok("success"); |
|
|
|
public Result<String> saveGroup(ActGroupFormDto actGroupFormDto) { |
|
|
|
return null; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|