| 123456789101112131415161718192021222324252627 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.WrGwsB;
- import cn.com.goldenwater.dcproj.param.WrGwsBParam;
- import com.github.pagehelper.PageInfo;
- import javax.servlet.http.HttpServletResponse;
- import java.util.List;
- /**
- * @author zhengdafei
- * @date 2019-3-3
- */
- public interface WrGwsBService extends CrudService<WrGwsB, WrGwsBParam> {
- // ------------------------- 自定方法 -------------------------
- public String add(WrGwsB p) throws Exception;
- public int modify(WrGwsB p) throws Exception;
- public PageInfo<WrGwsB> queryListByPage(WrGwsBParam p) throws Exception;
- public List<WrGwsB> queryList(WrGwsBParam p) throws Exception;
- void exportWrGwsB(WrGwsBParam wrGwsBParam, HttpServletResponse response);
- }
|