ZengTao
2023-12-20 3eb2e3a7f3f40f48c8a44bf32e7b0baeee065921
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> {
}