提交 | 用户 | 时间
|
58d006
|
1 |
package com.mandi.fendan.service; |
A |
2 |
|
|
3 |
import java.util.Map; |
|
4 |
|
|
5 |
import com.mandi.dao.common.ObjectResult; |
|
6 |
import com.mandi.dao.common.PageRequest; |
|
7 |
import com.mandi.dao.common.PageResult; |
|
8 |
|
|
9 |
public interface IFd_fhdqService { |
|
10 |
|
|
11 |
/** |
|
12 |
* 列表查询发货地区 |
|
13 |
* @param pr |
|
14 |
* @param search 查询值 |
|
15 |
* @param state 状态 |
|
16 |
* @return |
|
17 |
*/ |
|
18 |
public PageResult<Map<String, Object>> getList(PageRequest pr,String search,int state); |
|
19 |
|
|
20 |
|
|
21 |
/** |
|
22 |
* 修改发货地区和物流公司关系 |
|
23 |
* @param fhdqNo |
|
24 |
* @param wlgsNos |
|
25 |
* @return |
|
26 |
* @throws Exception |
|
27 |
*/ |
|
28 |
public ObjectResult<Boolean> savewlgs_fhdq(String fhdqNo,String wlgsNos,String ywdyNo,boolean xgxj)throws Exception; |
|
29 |
|
|
30 |
} |