package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.model.WrSwsB; import cn.com.goldenwater.dcproj.param.WrSwsBParam; import com.github.pagehelper.PageInfo; import javax.servlet.http.HttpServletResponse; import java.util.List; /** * @author zhengdafei * @date 2019-3-3 */ public interface WrSwsBService extends CrudService { // ------------------------- 自定方法 ------------------------- public String add(WrSwsB p) throws Exception; public int modify(WrSwsB p) throws Exception; public PageInfo queryListByPage(WrSwsBParam p) throws Exception; public List queryList(WrSwsBParam p) throws Exception; void exportWrSwsB(WrSwsBParam wrSwsBParam, HttpServletResponse response); }