e86c1ff0395e39279fcaa32319bd5bc5bfba5ec6.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.AttGrwBase;
  4. import cn.com.goldenwater.dcproj.param.AttGrwBaseCrrtParam;
  5. import cn.com.goldenwater.dcproj.param.AttGrwBaseParam;
  6. import cn.com.goldenwater.dcproj.param.AttGrwListByParam;
  7. import com.github.pagehelper.PageInfo;
  8. import javax.servlet.http.HttpServletResponse;
  9. import java.util.List;
  10. /**
  11. * @author zhengdafei
  12. * @date 2019-3-30
  13. */
  14. public interface AttGrwBaseService extends CrudService<AttGrwBase, AttGrwBaseParam> {
  15. // ------------------------- 自定方法 -------------------------
  16. public AttGrwBase add(AttGrwBase p) throws Exception;
  17. public AttGrwBase modify(AttGrwBase p) throws Exception;
  18. public void remove(String id) throws Exception;
  19. public PageInfo<AttGrwBase> getListBy(AttGrwListByParam param) throws Exception;
  20. public AttGrwBase crrctBase(AttGrwBaseCrrtParam p) throws Exception;
  21. public void transferGeo(AttGrwBase p, String src) throws Exception;
  22. void exportAttGrwBase(AttGrwBaseParam attAdXBaseParam, HttpServletResponse response);
  23. }