package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.model.AttGrwBase; import cn.com.goldenwater.dcproj.param.AttGrwBaseCrrtParam; import cn.com.goldenwater.dcproj.param.AttGrwBaseParam; import cn.com.goldenwater.dcproj.param.AttGrwListByParam; import com.github.pagehelper.PageInfo; import javax.servlet.http.HttpServletResponse; import java.util.List; /** * @author zhengdafei * @date 2019-3-30 */ public interface AttGrwBaseService extends CrudService { // ------------------------- 自定方法 ------------------------- public AttGrwBase add(AttGrwBase p) throws Exception; public AttGrwBase modify(AttGrwBase p) throws Exception; public void remove(String id) throws Exception; public PageInfo getListBy(AttGrwListByParam param) throws Exception; public AttGrwBase crrctBase(AttGrwBaseCrrtParam p) throws Exception; public void transferGeo(AttGrwBase p, String src) throws Exception; void exportAttGrwBase(AttGrwBaseParam attAdXBaseParam, HttpServletResponse response); }