33 lines
924 B
Java
33 lines
924 B
Java
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);
|
|
}
|