weaver-hrm-organization/src/com/engine/organization/mapper/codesetting/CodeRuleDetailMapper.java

26 lines
551 B
Java
Raw Normal View History

2022-05-31 17:56:00 +08:00
package com.engine.organization.mapper.codesetting;
2022-06-06 13:17:35 +08:00
import com.engine.organization.entity.codesetting.po.CodeRuleDetailPO;
import org.apache.ibatis.annotations.Param;
import java.util.List;
2022-05-31 17:56:00 +08:00
/**
* @Author weaver_cl
2022-06-14 11:07:48 +08:00
* @description:
2022-05-31 17:56:00 +08:00
* @Date 2022/5/31
* @Version V1.0
**/
public interface CodeRuleDetailMapper {
void delete(Long codeRuleId);
2022-06-06 13:17:35 +08:00
/**
* 批量插入明细表数据
*
* @param codeRuleDetailPOs
* @return
*/
void batchInsert(@Param("codeRuleDetailPOs") List<CodeRuleDetailPO> codeRuleDetailPOs);
2022-05-31 17:56:00 +08:00
}