ZengTao
2024-01-23 34e3a25ba518faca7b65550d3b38a6939bff6642
1
2
3
4
5
6
7
package com.example.springboot.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.example.springboot.entity.Permission;
 
public interface PermissionService extends IService<Permission> {
}