package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.model.AttSwhsBase; import cn.com.goldenwater.dcproj.param.AttSwhsBaseParam; import cn.com.goldenwater.dcproj.param.PersObjParam; import com.github.pagehelper.PageInfo; import javax.servlet.http.HttpServletResponse; import java.util.List; /** * @author lune * @date 2019-6-3 */ public interface AttSwhsBaseService extends CrudService { // ------------------------- 自定方法 ------------------------- AttSwhsBase getObjId(String objId); public String add(AttSwhsBase p) throws Exception; public int modify(AttSwhsBase p) throws Exception; List queryList(AttSwhsBaseParam param); PageInfo queryListByPage(AttSwhsBaseParam param, HttpServletResponse response); List findListBy(PersObjParam persObjParam); PageInfo findPageInfoBy(PersObjParam persObjParam); void exportAttSwhsBase(AttSwhsBaseParam attSwhsBaseParam, HttpServletResponse response); }