|
|
@@ -22,6 +22,7 @@ import com.goafanti.admin.service.AdminService;
|
|
|
import com.goafanti.common.constant.AFTConstants;
|
|
|
import com.goafanti.common.dao.AdminLocationMapper;
|
|
|
import com.goafanti.common.dao.AdminMapper;
|
|
|
+import com.goafanti.common.dao.UserLockReleaseMapper;
|
|
|
import com.goafanti.common.dao.UserMapper;
|
|
|
import com.goafanti.common.dao.UserRoleMapper;
|
|
|
import com.goafanti.common.model.Admin;
|
|
|
@@ -42,6 +43,8 @@ public class AdminServiceImpl extends BaseMybatisDao<AdminMapper> implements Adm
|
|
|
private UserRoleMapper userRoleMapper;
|
|
|
@Autowired
|
|
|
private AdminLocationMapper adminLocationMapper;
|
|
|
+ @Autowired
|
|
|
+ private UserLockReleaseMapper UserLockReleaseMapper;
|
|
|
@Resource(name = "passwordUtil")
|
|
|
private PasswordUtil passwordUtil;
|
|
|
@Override
|
|
|
@@ -384,4 +387,11 @@ public class AdminServiceImpl extends BaseMybatisDao<AdminMapper> implements Adm
|
|
|
return (Pagination<AdminCustomerDetailBo>)findPage("selectAdminCustomerDetailList", "selectAdminCustomerDetailCount", params, pageNo, pageSize);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public int updatePrivateBusinessTransfer(String inputId, String uid, String pid) {
|
|
|
+ String aid=TokenManager.getAdminId();
|
|
|
+ int i=UserLockReleaseMapper.updatePrivateBusinessTransfer( inputId, uid, pid,aid);
|
|
|
+ return i;
|
|
|
+ }
|
|
|
+
|
|
|
}
|