Administrator
2023-04-19 40ec16bbb7c9d23df625aa31ae42ac36e901749d
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.mandi.fendan.service;
 
import com.mandi.dao.common.PageResult;
import com.mandi.fendan.persist.Fd_Company;
 
public interface IAreaService {
    
    /**
     * 获得所有的运输公司
     * @return
     */
    public PageResult<Fd_Company> getallcmList();
    
//    /**
//     * 查找发货地区
//     * @param pr
//     * @param search
//     * @return
//     */
//    public PageResult<Map<String, Object>> getList();
//    
//    
//    /**
//     * 获得某个发货地区已选择的运输公司
//     * @param bianhao
//     * @return
//     */
//    public ObjectResult<String> getsecmList(String bianhao);
//    
//    
//    /**
//     * 保存发货地区及发货地区与物流公司关系表
//     * @param name  名称
//     * @param bianhao 编号
//     * @param jishu 层级
//     * @param ismx 是否是明细
//     * @param companyNos 物流公司编号
//     * @return
//     * @throws Exception
//     */
//    public ObjectResult<Boolean> saveItem(String name,String bianhao,int jishu,String companyNos,boolean GLXJ)throws Exception;
//    
//    
//    /**
//     * 删除发货地区
//     * @param bianhao
//     * @return
//     * @throws Exception
//     */
//    public ObjectResult<Boolean> delItem(String bianhao)throws Exception;
 
}