| 12345678910111213141516171819202122232425262728 |
- 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<WrSwsB, WrSwsBParam> {
- // ------------------------- 自定方法 -------------------------
- public String add(WrSwsB p) throws Exception;
- public int modify(WrSwsB p) throws Exception;
- public PageInfo<WrSwsB> queryListByPage(WrSwsBParam p) throws Exception;
- public List<WrSwsB> queryList(WrSwsBParam p) throws Exception;
- void exportWrSwsB(WrSwsBParam wrSwsBParam, HttpServletResponse response);
- }
|