| 1234567891011121314151617181920 |
- 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.model.BisInspQaScore1Sd;
- import cn.com.goldenwater.dcproj.param.BisInspQaScore1SdParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- /**
- * @author lhc
- * @date 2024-4-7
- */
- public interface BisInspQaScore1SdService extends CrudService<BisInspQaScore1Sd, BisInspQaScore1SdParam> {
- // ------------------------- 自定方法 -------------------------
- BisInspQaScore1Sd getByCaseScore(String caseId, String scoreName);
- }
|