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 { // ------------------------- 自定方法 ------------------------- public String add(WrGwsB p) throws Exception; public int modify(WrGwsB p) throws Exception; public PageInfo queryListByPage(WrGwsBParam p) throws Exception; public List queryList(WrGwsBParam p) throws Exception; void exportWrGwsB(WrGwsBParam wrGwsBParam, HttpServletResponse response); }