提交 | 用户 | 时间
|
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 |
import com.mandi.fendan.persist.Fd_Erpconfig; |
|
9 |
|
|
10 |
public interface Ifd_erpconfigService { |
|
11 |
/** |
|
12 |
* 单个查询 |
|
13 |
* @param id |
|
14 |
* @return |
|
15 |
*/ |
|
16 |
public ObjectResult<Fd_Erpconfig> getFd_Erpconfig(String id); |
|
17 |
|
|
18 |
/** |
|
19 |
* 新增和修改 |
|
20 |
* @param mt |
|
21 |
* @return |
|
22 |
*/ |
|
23 |
public ObjectResult<Fd_Erpconfig> saveFd_Erpconfig(Fd_Erpconfig cq) throws Exception; |
|
24 |
|
|
25 |
|
|
26 |
|
|
27 |
/** |
|
28 |
* 删除 |
|
29 |
* @param id |
|
30 |
* @return |
|
31 |
*/ |
|
32 |
public ObjectResult<Boolean> delFd_Erpconfig(String id) throws Exception; |
|
33 |
|
|
34 |
/** |
|
35 |
* 获取列表 |
|
36 |
* @param id |
|
37 |
* @return |
|
38 |
*/ |
|
39 |
public PageResult<Fd_Erpconfig> getList(Map<String, Object> map, PageRequest pr); |
|
40 |
|
|
41 |
} |