35 lines
775 B
Java
35 lines
775 B
Java
|
|
package com.engine.salary.mapper.sischeme;
|
|||
|
|
|
|||
|
|
import com.engine.salary.entity.sischeme.po.InsuranceSchemeDetailPO;
|
|||
|
|
import org.apache.ibatis.annotations.Param;
|
|||
|
|
|
|||
|
|
import java.util.Collection;
|
|||
|
|
import java.util.List;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @Author weaver_cl
|
|||
|
|
* @Description: TODO
|
|||
|
|
* @Date 2022/3/8
|
|||
|
|
* @Version V1.0
|
|||
|
|
**/
|
|||
|
|
public interface InsuranceSchemeDetailMapper {
|
|||
|
|
|
|||
|
|
|
|||
|
|
List<InsuranceSchemeDetailPO> listByPrimaryId(Long primaryId);
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 新增,插入所有字段
|
|||
|
|
*
|
|||
|
|
* @param insuranceSchemeDetailPO 新增的记录
|
|||
|
|
* @return 返回影响行数
|
|||
|
|
*/
|
|||
|
|
int insert(InsuranceSchemeDetailPO insuranceSchemeDetailPO);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 批量删除
|
|||
|
|
* @param primaryIds
|
|||
|
|
*/
|
|||
|
|
void batchDeleteByPrimaryIds(@Param("primaryIds") Collection<Long> primaryIds);
|
|||
|
|
}
|