package com.mandi.fendan.service;
|
|
import com.mandi.dao.common.ObjectResult;
|
import com.mandi.dao.common.PageRequest;
|
import com.mandi.dao.common.PageResult;
|
import com.mandi.fendan.persist.Fd_Systemconfig;
|
|
public interface Ifd_systemconfigService {
|
/**
|
* 单个查询
|
* @param id
|
* @return
|
*/
|
public ObjectResult<Fd_Systemconfig> getFd_Systemconfig(String id);
|
|
/**
|
* 新增和修改
|
* @param mt
|
* @return
|
*/
|
public ObjectResult<Fd_Systemconfig> saveFd_Systemconfig(Fd_Systemconfig cq) throws Exception;
|
|
|
|
/**
|
* 删除
|
* @param id
|
* @return
|
*/
|
public ObjectResult<Boolean> delFd_Systemconfig(String id) throws Exception;
|
|
/**
|
* 获取列表
|
* @param name
|
* @return
|
*/
|
public PageResult<Fd_Systemconfig> getlist(String name, PageRequest pr);
|
}
|