提交 | 用户 | 时间
|
58d006
|
1 |
package com.mandi.fendan.service; |
A |
2 |
|
|
3 |
import com.mandi.dao.common.PageResult; |
|
4 |
import com.mandi.fendan.persist.Fd_Company; |
|
5 |
|
|
6 |
public interface IAreaService { |
|
7 |
|
|
8 |
/** |
|
9 |
* 获得所有的运输公司 |
|
10 |
* @return |
|
11 |
*/ |
|
12 |
public PageResult<Fd_Company> getallcmList(); |
|
13 |
|
|
14 |
// /** |
|
15 |
// * 查找发货地区 |
|
16 |
// * @param pr |
|
17 |
// * @param search |
|
18 |
// * @return |
|
19 |
// */ |
|
20 |
// public PageResult<Map<String, Object>> getList(); |
|
21 |
// |
|
22 |
// |
|
23 |
// /** |
|
24 |
// * 获得某个发货地区已选择的运输公司 |
|
25 |
// * @param bianhao |
|
26 |
// * @return |
|
27 |
// */ |
|
28 |
// public ObjectResult<String> getsecmList(String bianhao); |
|
29 |
// |
|
30 |
// |
|
31 |
// /** |
|
32 |
// * 保存发货地区及发货地区与物流公司关系表 |
|
33 |
// * @param name 名称 |
|
34 |
// * @param bianhao 编号 |
|
35 |
// * @param jishu 层级 |
|
36 |
// * @param ismx 是否是明细 |
|
37 |
// * @param companyNos 物流公司编号 |
|
38 |
// * @return |
|
39 |
// * @throws Exception |
|
40 |
// */ |
|
41 |
// public ObjectResult<Boolean> saveItem(String name,String bianhao,int jishu,String companyNos,boolean GLXJ)throws Exception; |
|
42 |
// |
|
43 |
// |
|
44 |
// /** |
|
45 |
// * 删除发货地区 |
|
46 |
// * @param bianhao |
|
47 |
// * @return |
|
48 |
// * @throws Exception |
|
49 |
// */ |
|
50 |
// public ObjectResult<Boolean> delItem(String bianhao)throws Exception; |
|
51 |
|
|
52 |
} |