Commit ae627265 by guojuxing

用户删除接口

parent e7d3ce6b
......@@ -48,6 +48,16 @@ public interface RoleApiService {
ServiceResponse<RoleDTO> getById(Integer id);
/**
* 逻辑删除
* @Title: delete

* @Description:

 * @author guojuxing
* @param id

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


 */
ServiceResponse<Void> delete(Integer id);
/**
* 分页查询列表
* @Title: pageRole

* @Description:
......
......@@ -39,6 +39,16 @@ public interface UserApiService {
ServiceResponse<UserDTO> getUserById(Integer userId);
/**
* 删除
* @Title: delete

* @Description:

 * @author guojuxing
* @param userId

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


 */
ServiceResponse<Void> delete(Integer userId);
/**
* 企业查询超级管理员
* @param enterpriseId
* @return
......
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