weaver-hrm-salary/src/com/engine/salary/mapper/siaccount/InsuranceAccountBatchMapper...

71 lines
1.7 KiB
Java
Raw Normal View History

2022-04-11 19:07:35 +08:00
package com.engine.salary.mapper.siaccount;
import com.engine.salary.entity.siaccount.param.InsuranceAccountBatchParam;
import com.engine.salary.entity.siaccount.po.InsuranceAccountBatchPO;
2022-10-10 09:43:57 +08:00
import com.engine.salary.entity.siarchives.po.InsuranceArchivesOtherSchemePO;
2022-04-11 19:07:35 +08:00
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* @Author weaver_cl
2022-07-13 11:45:16 +08:00
*
2022-04-11 19:07:35 +08:00
* @Date 2022/4/11
* @Version V1.0
**/
public interface InsuranceAccountBatchMapper {
/**
* 查询福利台账列表
* @param queryParam
* @return
*/
List<InsuranceAccountBatchPO> list(@Param("param")InsuranceAccountBatchParam queryParam);
2022-04-14 11:54:16 +08:00
/**
2022-04-22 18:05:19 +08:00
* 根据账单月份查询
2022-04-14 11:54:16 +08:00
* @param billMonth
* @return
*/
2022-06-06 19:08:39 +08:00
InsuranceAccountBatchPO getByBillMonth(@Param("billMonth") String billMonth,@Param("paymentOrganization") Long paymentOrganization);
2022-04-14 11:54:16 +08:00
/**
* 插入
* @param insuranceAccountBatchPO
*/
void insert(InsuranceAccountBatchPO insuranceAccountBatchPO);
/**
* 根据主键删除
* @param id
*/
void deleteById(@Param("id") Long id);
/**
* 更新
* @param pos
*/
2022-04-22 15:17:31 +08:00
void updateById(InsuranceAccountBatchPO pos);
2022-04-14 11:54:16 +08:00
InsuranceAccountBatchPO getById(@Param("id") Long id);
2022-04-15 13:17:25 +08:00
/**
*
* @param billMonth
* @param billStatus
* @return
*/
2022-06-10 11:46:57 +08:00
InsuranceAccountBatchPO getByBillStatus(@Param("billMonth") String billMonth,@Param("billStatus")Integer billStatus, @Param("paymentOrganization") Long paymentOrganization);
2022-04-15 13:17:25 +08:00
2022-04-20 19:12:01 +08:00
List<InsuranceAccountBatchPO> listByTimeRange(@Param("minDate") String minDate, @Param("maxDate") String maxDate);
2022-10-10 09:43:57 +08:00
List<InsuranceAccountBatchPO> listAll();
int batchUpdate(@Param("collection") List<InsuranceAccountBatchPO> pos);
2022-04-11 19:07:35 +08:00
}