2022-11-28 11:35:05 +08:00
|
|
|
package com.engine.salary.mapper.siaccount;
|
|
|
|
|
|
|
|
|
|
import com.engine.salary.entity.siaccount.po.InsuranceCompensationPO;
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
|
|
import java.util.Collection;
|
|
|
|
|
|
|
|
|
|
public interface InsuranceCompensationMapper {
|
|
|
|
|
|
|
|
|
|
void bathInsert(@Param("collection") Collection<InsuranceCompensationPO> insuranceCompensationPOS);
|
|
|
|
|
|
|
|
|
|
void insert(InsuranceCompensationPO insuranceCompensationPO);
|
2022-11-28 14:57:29 +08:00
|
|
|
|
|
|
|
|
InsuranceCompensationPO getById(Long id);
|
|
|
|
|
|
|
|
|
|
void deleteById(Long id);
|
2022-11-28 11:35:05 +08:00
|
|
|
}
|