| 12345678910111213141516171819 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.GwNtcAnnsmnt;
- import cn.com.goldenwater.dcproj.param.GwNtcAnnsmntParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- /**
- * @author lune
- * @date 2019-6-22
- */
- public interface GwNtcAnnsmntService extends CrudService<GwNtcAnnsmnt, GwNtcAnnsmntParam> {
- // ------------------------- 自定方法 -------------------------
- public PageInfo<GwNtcAnnsmnt> findPagePcInfo(GwNtcAnnsmntParam param);
- }
|