IMenuService.java 579 Bytes
Newer Older
苗卫卫 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
package com.boco.nbd.wios.manage.service;

import com.boco.nbd.framework.persistence.IBaseDaoService3;
import com.boco.nbd.wios.manage.entity.po.MenuPO;
import org.apache.ibatis.annotations.Param;

import java.util.List;

/**
 * @author:cao hai
 * @date:2022/6/17 9:34
 * @version:V1.0
 * @description:TODO IRoleService
 * @modify:
 */
public interface IMenuService extends IBaseDaoService3<MenuPO> {

    /**
     * 获取操作按钮
     *
     * @param accountId
     * @param menuId
     * @return
     */
    List<MenuPO> getPageBtnList(String accountId, String menuId);
}