智能仲裁后端服务

FatchRuleMapper.java 924B

1234567891011121314151617181920212223242526272829303132
  1. package com.ruoyi.wisdomarbitrate.mapper;
  2. import com.ruoyi.wisdomarbitrate.domain.CaseAffiliate;
  3. import com.ruoyi.wisdomarbitrate.domain.CaseApplication;
  4. import com.ruoyi.wisdomarbitrate.domain.FatchRule;
  5. import com.ruoyi.wisdomarbitrate.domain.TemplateManage;
  6. import org.apache.ibatis.annotations.Param;
  7. import org.springframework.stereotype.Repository;
  8. import java.util.List;
  9. @Repository
  10. public interface FatchRuleMapper {
  11. /**
  12. * 根据批次查询
  13. */
  14. List<FatchRule> listByTemplateId(@Param("templateId")Long templateId);
  15. List<FatchRule> selectFatchRuleList(FatchRule fatchRule);
  16. List<FatchRule> selectFatchRuleListIsDefault(FatchRule fatchRule);
  17. void deletebatchFatchRule(@Param("fatchRuleIds") List<Long> fatchRuleIds);
  18. int insertFatchRule(FatchRule fatchRule);
  19. List<FatchRule> selectColumnandComment(FatchRule fatchRuleselect);
  20. FatchRule selectColumnbycomment(FatchRule fatchRule);
  21. }