|
|
@@ -1,10 +1,13 @@
|
|
|
package com.template.services;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.template.model.pojo.SmartAuthority;
|
|
|
import com.template.model.pojo.SmartAuthority;
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
import com.template.model.result.PageUtils;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
/**
|
|
|
* <p>
|
|
|
* 服务类
|
|
|
@@ -23,4 +26,7 @@ public interface SmartAuthorityService extends IService<SmartAuthority> {
|
|
|
int deleteSmartAuthorityById(int id);
|
|
|
|
|
|
SmartAuthority getSmartById(int id);
|
|
|
+
|
|
|
+ public List<SmartAuthority> getAuthorByKey(QueryWrapper<SmartAuthority> queryWrapper);
|
|
|
+
|
|
|
}
|