| 1234567891011121314151617181920212223242526272829303132 |
- package com.ruoyi.wisdomarbitrate.mapper;
-
- import com.ruoyi.wisdomarbitrate.domain.CaseAffiliate;
- import com.ruoyi.wisdomarbitrate.domain.CaseApplication;
- import com.ruoyi.wisdomarbitrate.domain.FatchRule;
- import com.ruoyi.wisdomarbitrate.domain.TemplateManage;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Repository;
-
- import java.util.List;
-
- @Repository
- public interface FatchRuleMapper {
-
- /**
- * 根据批次查询
- */
- List<FatchRule> listByTemplateId(@Param("templateId")Long templateId);
-
- List<FatchRule> selectFatchRuleList(FatchRule fatchRule);
-
-
- List<FatchRule> selectFatchRuleListIsDefault(FatchRule fatchRule);
-
- void deletebatchFatchRule(@Param("fatchRuleIds") List<Long> fatchRuleIds);
-
- int insertFatchRule(FatchRule fatchRule);
-
- List<FatchRule> selectColumnandComment(FatchRule fatchRuleselect);
-
- FatchRule selectColumnbycomment(FatchRule fatchRule);
- }
|