| 123456789101112131415161718 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.BisInspQaScore1;
- import cn.com.goldenwater.dcproj.param.BisInspQaScore1Param;
- /**
- * @author hjp
- * @date 2022-7-28
- */
- public interface BisInspQaScore1Service extends CrudService<BisInspQaScore1, BisInspQaScore1Param> {
- BisInspQaScore1 getByCaseScore(String caseId, String scoreName);
- // ------------------------- 自定方法 -------------------------
- }
|