| 12345678910111213141516171819202122232425262728293031323334 |
- 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, AttSwhsBaseParam> {
- // ------------------------- 自定方法 -------------------------
- AttSwhsBase getObjId(String objId);
- public String add(AttSwhsBase p) throws Exception;
- public int modify(AttSwhsBase p) throws Exception;
- List<AttSwhsBase> queryList(AttSwhsBaseParam param);
- PageInfo<AttSwhsBase> queryListByPage(AttSwhsBaseParam param, HttpServletResponse response);
- List<AttSwhsBase> findListBy(PersObjParam persObjParam);
- PageInfo<AttSwhsBase> findPageInfoBy(PersObjParam persObjParam);
- void exportAttSwhsBase(AttSwhsBaseParam attSwhsBaseParam, HttpServletResponse response);
- }
|