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

64 lines
1.4 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;
import org.apache.ibatis.annotations.Param;
2022-04-14 11:54:16 +08:00
import java.util.Collection;
2022-04-11 19:07:35 +08:00
import java.util.List;
/**
* @Author weaver_cl
* @Description: TODO
* @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
*/
InsuranceAccountBatchPO getByBillMonth(@Param("billMonth") String billMonth);
/**
* 插入
* @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
2022-04-15 13:17:25 +08:00
/**
*
* @param billMonth
* @param billStatus
* @return
*/
InsuranceAccountBatchPO getByBillStatus(@Param("billMonth") String billMonth,@Param("billStatus")Integer billStatus);
2022-04-20 19:12:01 +08:00
List<InsuranceAccountBatchPO> listByTimeRange(@Param("minDate") String minDate, @Param("maxDate") String maxDate);
2022-04-11 19:07:35 +08:00
}