Commit 194dd2d9 by guojuxing

删除接口

parent 09ecacb7
package com.gic.auth.dto;
import java.io.Serializable;
/**
* 权限项列表
* @ClassName: AuthItemListDTO

* @Description: 

* @author guojuxing

* @date 2019/9/20 2:08 PM

*/
public class AuthItemListDTO implements Serializable{
private static final long serialVersionUID = 2961425534296159950L;
private String menuId;
/**
* 操作项名称
*/
private String menuName;
/**
* 操作项数量
*/
private Integer operationItemCount;
public String getMenuId() {
return menuId;
}
public void setMenuId(String menuId) {
this.menuId = menuId;
}
public String getMenuName() {
return menuName;
}
public void setMenuName(String menuName) {
this.menuName = menuName;
}
public Integer getOperationItemCount() {
return operationItemCount;
}
public void setOperationItemCount(Integer operationItemCount) {
this.operationItemCount = operationItemCount;
}
}
......@@ -2,6 +2,7 @@ package com.gic.auth.service;
import com.gic.api.base.commons.Page;
import com.gic.api.base.commons.ServiceResponse;
import com.gic.auth.dto.AuthItemListDTO;
import com.gic.auth.dto.MenuDTO;
import com.gic.auth.qo.AuthItemSaveQO;
import com.gic.auth.qo.MenuListQO;
......@@ -197,4 +198,14 @@ public interface MenuApiService {
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>


 */
ServiceResponse<Void> updateAuthItem(AuthItemSaveQO params);
/**
* 查询页面下的权限项
* @Title: listAuthItemByMenuId

* @Description:

 * @author guojuxing
* @param menuId

* @return com.gic.api.base.commons.ServiceResponse<java.util.List<com.gic.auth.dto.AuthItemListDTO>>


 */
ServiceResponse<List<AuthItemListDTO>> listAuthItemByMenuId(Integer menuId);
}
package com.gic.auth.service;
import com.gic.api.base.commons.ServiceResponse;
import com.gic.auth.dto.MenuItemDTO;
import java.util.List;
/**
* 权限项、操作项关联
* @ClassName: MenuItemApiService

* @Description: 

* @author guojuxing

* @date 2019/9/20 1:42 PM

*/
public interface MenuItemApiService {
/**
* 根据权限项ID查询操作项
* @Title: listMenuItemByMenuId

* @Description:

 * @author guojuxing
* @param menuId

* @return com.gic.api.base.commons.ServiceResponse<com.gic.auth.dto.MenuItemDTO>


 */
ServiceResponse<List<MenuItemDTO>> listMenuItemByMenuId(Integer menuId);
}
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