Commit 9fba1ce6 by guojuxing

权限集列表查询

parent 19902c81
package com.gic.auth.exception;
import com.gic.api.base.commons.ServiceResponse;
/**
* @author guojx
* @date 2019/6/26 2:03 PM
*/
public class AuthException extends RuntimeException{
private String errorCode;
public AuthException(String errorCode, String message) {
super(message);
this.errorCode = errorCode;
}
public AuthException(ServiceResponse serviceResponse) {
super(serviceResponse.getMessage());
this.errorCode = serviceResponse.getCode();
}
public String getErrorCode() {
return errorCode;
}
}
......@@ -92,6 +92,16 @@ public interface MenuApiService {

 */
ServiceResponse<Void> saveGICPage(MenuDTO menuDTO);
/**
* 查询已经购买的应用
* @Title: listAppPageOfHasBuy

* @Description:

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


 */
ServiceResponse<List<MenuDTO>> listAppPageOfHasBuy();
/**
* 编辑gic页面
* @Title: updateGICPage

......
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