2023-12-06 10:43:41 +08:00
|
|
|
package com.ruoyi.wisdomarbitrate.mapper;
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.wisdomarbitrate.domain.CaseAffiliate;
|
|
|
|
|
import com.ruoyi.wisdomarbitrate.domain.CaseApplication;
|
|
|
|
|
import com.ruoyi.wisdomarbitrate.domain.FatchRule;
|
2023-12-06 17:30:37 +08:00
|
|
|
import com.ruoyi.wisdomarbitrate.domain.TemplateManage;
|
2023-12-06 10:43:41 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
@Repository
|
|
|
|
|
public interface FatchRuleMapper {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据批次查询
|
|
|
|
|
*/
|
2023-12-07 15:07:51 +08:00
|
|
|
List<FatchRule> listByTemplateId(@Param("templateId")Long templateId);
|
2023-12-06 10:43:41 +08:00
|
|
|
|
2023-12-06 17:30:37 +08:00
|
|
|
List<FatchRule> selectFatchRuleList(FatchRule fatchRule);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<FatchRule> selectFatchRuleListIsDefault(FatchRule fatchRule);
|
|
|
|
|
|
|
|
|
|
void deletebatchFatchRule(@Param("fatchRuleIds") List<Long> fatchRuleIds);
|
|
|
|
|
|
|
|
|
|
int insertFatchRule(FatchRule fatchRule);
|
2023-12-08 17:59:09 +08:00
|
|
|
|
|
|
|
|
List<FatchRule> selectColumnandComment(FatchRule fatchRuleselect);
|
|
|
|
|
|
|
|
|
|
FatchRule selectColumnbycomment(FatchRule fatchRule);
|
2023-12-06 10:43:41 +08:00
|
|
|
}
|