You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
551 B
Java
26 lines
551 B
Java
package com.engine.organization.mapper.codesetting;
|
|
|
|
import com.engine.organization.entity.codesetting.po.CodeRuleDetailPO;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @Author weaver_cl
|
|
* @description:
|
|
* @Date 2022/5/31
|
|
* @Version V1.0
|
|
**/
|
|
public interface CodeRuleDetailMapper {
|
|
|
|
void delete(Long codeRuleId);
|
|
|
|
/**
|
|
* 批量插入明细表数据
|
|
*
|
|
* @param codeRuleDetailPOs
|
|
* @return
|
|
*/
|
|
void batchInsert(@Param("codeRuleDetailPOs") List<CodeRuleDetailPO> codeRuleDetailPOs);
|
|
}
|