提交 | 用户 | 时间
|
58d006
|
1 |
package com.mandi.fendan.service; |
A |
2 |
|
|
3 |
import com.mandi.dao.common.ObjectResult; |
|
4 |
import com.mandi.dao.common.PageRequest; |
|
5 |
import com.mandi.dao.common.PageResult; |
|
6 |
import com.mandi.fendan.persist.Fd_Systemconfig; |
|
7 |
|
|
8 |
public interface Ifd_systemconfigService { |
|
9 |
/** |
|
10 |
* 单个查询 |
|
11 |
* @param id |
|
12 |
* @return |
|
13 |
*/ |
|
14 |
public ObjectResult<Fd_Systemconfig> getFd_Systemconfig(String id); |
|
15 |
|
|
16 |
/** |
|
17 |
* 新增和修改 |
|
18 |
* @param mt |
|
19 |
* @return |
|
20 |
*/ |
|
21 |
public ObjectResult<Fd_Systemconfig> saveFd_Systemconfig(Fd_Systemconfig cq) throws Exception; |
|
22 |
|
|
23 |
|
|
24 |
|
|
25 |
/** |
|
26 |
* 删除 |
|
27 |
* @param id |
|
28 |
* @return |
|
29 |
*/ |
|
30 |
public ObjectResult<Boolean> delFd_Systemconfig(String id) throws Exception; |
|
31 |
|
|
32 |
/** |
|
33 |
* 获取列表 |
|
34 |
* @param name |
|
35 |
* @return |
|
36 |
*/ |
|
37 |
public PageResult<Fd_Systemconfig> getlist(String name, PageRequest pr); |
|
38 |
} |