272ac660d7f7d733a854df94adbf255597e15aaa.svn-base 577 B

1234567891011121314151617181920
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.BisInspStstnScore;
  4. import cn.com.goldenwater.dcproj.param.BisInspStstnScoreParam;
  5. import com.github.pagehelper.PageInfo;
  6. import java.util.List;
  7. /**
  8. * @author lhc
  9. * @date 2021-7-14
  10. */
  11. public interface BisInspStstnScoreService extends CrudService<BisInspStstnScore, BisInspStstnScoreParam> {
  12. BisInspStstnScore getByCaseScore(String caseId, String scoreName);
  13. // ------------------------- 自定方法 -------------------------
  14. }