be45ebfe4079ce7b3dcfb347a7516cd6cc1a8a4d.svn-base 828 B

123456789101112131415161718192021222324252627
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.WrGwsB;
  4. import cn.com.goldenwater.dcproj.param.WrGwsBParam;
  5. import com.github.pagehelper.PageInfo;
  6. import javax.servlet.http.HttpServletResponse;
  7. import java.util.List;
  8. /**
  9. * @author zhengdafei
  10. * @date 2019-3-3
  11. */
  12. public interface WrGwsBService extends CrudService<WrGwsB, WrGwsBParam> {
  13. // ------------------------- 自定方法 -------------------------
  14. public String add(WrGwsB p) throws Exception;
  15. public int modify(WrGwsB p) throws Exception;
  16. public PageInfo<WrGwsB> queryListByPage(WrGwsBParam p) throws Exception;
  17. public List<WrGwsB> queryList(WrGwsBParam p) throws Exception;
  18. void exportWrGwsB(WrGwsBParam wrGwsBParam, HttpServletResponse response);
  19. }