17 lines
288 B
Java
17 lines
288 B
Java
package com.zoo.service;
|
|
|
|
import com.zoo.entity.Keeper;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
/**
|
|
* <p>
|
|
* 服务类
|
|
* </p>
|
|
*
|
|
* @author DJ
|
|
* @since 2024-05-17
|
|
*/
|
|
public interface IKeeperService extends IService<Keeper> {
|
|
Keeper selectById(int roleId);
|
|
}
|