Commit 163d9095 by guojuxing

添加日志操作

parent 31ece519
......@@ -62,9 +62,9 @@ public interface AccountGroupApiService {
* @Description:

 * @author guojuxing
* @param accountGroupId

* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>

* @return com.gic.api.base.commons.ServiceResponse<java.lang.AccountGroupDTO>


 */
ServiceResponse<Void> deleteByAccountGroupId(Integer accountGroupId);
ServiceResponse<AccountGroupDTO> deleteByAccountGroupId(Integer accountGroupId);
/**
* 目标排序
......@@ -73,9 +73,9 @@ public interface AccountGroupApiService {

 * @author guojuxing
* @param accountGroupId
* @param sort

* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>

* @return com.gic.api.base.commons.ServiceResponse<java.lang.AccountGroupDTO>


 */
ServiceResponse<Void> sort(Integer accountGroupId, Integer sort);
ServiceResponse<AccountGroupDTO> sort(Integer accountGroupId, Integer sort);
/**
* 根据分组ID查询分组内的组员,给会员组使用的接口
......@@ -116,9 +116,9 @@ public interface AccountGroupApiService {
* @Description:

 * @author guojuxing
* @param list

* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
* @return com.gic.api.base.commons.ServiceResponse<java.lang.String> 返回日志操作对象内容

 */
ServiceResponse<Void> saveAccountGroupRelFetch(List<AccountGroupMemberDTO> list);
ServiceResponse<String> saveAccountGroupRelFetch(List<AccountGroupMemberDTO> list);
/**
* 管理员批量分组
......@@ -128,9 +128,9 @@ public interface AccountGroupApiService {
* @param userIdList
* @param accountGroupId

* @param enterpriseId
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>

* @return com.gic.api.base.commons.ServiceResponse<java.langgroupingOfUser.String>
 返回XXX管理员分组到XXX分组的字符串

 */
ServiceResponse<Void> groupingOfUser(List<Integer> userIdList, List<Integer> accountGroupId, Integer enterpriseId);
ServiceResponse<String> groupingOfUser(List<Integer> userIdList, List<Integer> accountGroupId, Integer enterpriseId);
/**
* 协作人批量分组
......@@ -140,8 +140,8 @@ public interface AccountGroupApiService {
* @param collaboratorIdList
* @param accountGroupId

* @param enterpriseId
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>

* @return com.gic.api.base.commons.ServiceResponse<java.lang.String>


 */
ServiceResponse<Void> groupingOfCollaborator(List<Integer> collaboratorIdList, List<Integer> accountGroupId,
ServiceResponse<String> groupingOfCollaborator(List<Integer> collaboratorIdList, List<Integer> accountGroupId,
Integer enterpriseId);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment