| 12345678910111213141516171819 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.BisInspRsmlRgstrPres;
- import cn.com.goldenwater.dcproj.param.BisInspRsmlRgstrPresParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- /**
- * @author lune
- * @date 2020-3-9
- */
- public interface BisInspRsmlRgstrPresService extends CrudService<BisInspRsmlRgstrPres, BisInspRsmlRgstrPresParam> {
- // ------------------------- 自定方法 -------------------------
- }
|