fengjin
2022-10-18 48a62ed1badc7b68a81e253240672b15d4c3d74a
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);
}