| 12345678910111213141516171819 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.BisInspStndMgamt;
- import cn.com.goldenwater.dcproj.param.BisInspStndMgamtParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- /**
- * @author lhc
- * @date 2020-3-25
- */
- public interface BisInspStndMgamtService extends CrudService<BisInspStndMgamt, BisInspStndMgamtParam> {
- // ------------------------- 自定方法 -------------------------
- BisInspStndMgamt getByRegId(String regId);
- }
|