You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
659 B
Java
28 lines
659 B
Java
package com.glxp.api.service.auth;
|
|
|
|
import cn.hutool.core.lang.tree.Tree;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
import com.glxp.api.entity.auth.Smenu;
|
|
import com.glxp.api.entity.auth.SysMenu;
|
|
import com.glxp.api.req.system.LicenseRequest;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author : zhangsan
|
|
* @date : 2023/5/24 11:54
|
|
* @modyified By :
|
|
*/
|
|
|
|
public interface SmenuService extends IService<Smenu> {
|
|
|
|
List<LicenseRequest> selecLicentList(LicenseRequest licenseRequest);
|
|
|
|
BaseResponse getMenuTreeActive();
|
|
|
|
boolean insert(Smenu authLicense);
|
|
|
|
boolean delete(Smenu authLicense);
|
|
}
|