1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.dg.core.service;
|
| import com.dg.core.db.gen.entity.AreaCode2022;
| import com.dg.core.db.gen.entity.OrganizationChartEntity;
|
| import java.util.List;
|
| public interface IAreaCodeService {
|
| /**
| * 根据指南id获取所属地区
| * @return
| */
| List<AreaCode2022> getAreaCodeByTransactionId(Integer transactionId);
|
| /**
| * 根据pcode获取所属地区
| * @return
| */
| List<AreaCode2022> getListByPCode(String id);
| }
|
|