feige
2024-08-24 8da97927452fc3485168db17d9e948f4180ee0a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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(String pid);
 
    List<ZfMaster> selectByCondition(ZfMaster zfMaster);
 
    AjaxResult mySave(ZfMaster zfMaster);
}