whywhyo
2023-07-21 d2a1957ec40c70c696ab3260d7f7df90c4539589
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.domain.ZfFamily;
import org.springframework.stereotype.Service;
 
/**
 * @Author Jinquan_Ou
 * @Description
 * @Date 2023-07-14 14:31
 * @Version 1.0.0
 **/
@Service
public interface ZfFamilyService extends IService<ZfFamily> {
 
    /**
     * 根据家庭名字查询家庭
     */
    ZfFamily getByName(String familyName);
 
 
}