package com.ruoyi.service;
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ruoyi.common.core.domain.AjaxResult;
|
import com.ruoyi.domain.ZfMaster;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 魅宠主人表 服务类
|
* </p>
|
*
|
* @author ojq
|
* @since 2023-03-12
|
*/
|
public interface ZfMasterService extends IService<ZfMaster> {
|
|
AjaxResult getMasterInfoByPetId(Long pid);
|
|
List<ZfMaster> selectByCondition(ZfMaster zfMaster);
|
|
}
|