1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package cn.exrick.xboot.your.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import cn.exrick.xboot.your.entity.DuoZheng;
|
| import java.util.List;
|
| /**
| * 一户多证表接口
| * @author whj
| */
| public interface IDuoZhengService extends IService<DuoZheng> {
|
| List<DuoZheng> getYiHuDuoZheng();
|
| List<String> getNames();
| }
|
|