weaver-hrm-salary/src/com/engine/salary/service/LySocialReportService.java

113 lines
2.4 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.engine.salary.service;
import com.engine.salary.entity.ly.param.LySalaryReportQueryParam;
import com.engine.salary.entity.ly.po.LySocialReportPO;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import java.util.List;
import java.util.Map;
/**
* @author Harryxzy
* @ClassName LySocialReportService
* @date 2024/08/23 17:07
* @description
*/
public interface LySocialReportService {
/**
* 查询所有记录
*
* @return 返回集合没有返回空List
*/
List<LySocialReportPO> listAll();
/**
* 根据主键查询
*
* @param id 主键
* @return 返回记录没有返回null
*/
LySocialReportPO getById(Long id);
/**
* 新增忽略null字段
*
* @param lySocialReport 新增的记录
* @return 返回影响行数
*/
int insertIgnoreNull(LySocialReportPO lySocialReport);
/**
* 修改,修改所有字段
*
* @param lySocialReport 修改的记录
* @return 返回影响行数
*/
int update(LySocialReportPO lySocialReport);
/**
* 修改忽略null字段
*
* @param lySocialReport 修改的记录
* @return 返回影响行数
*/
int updateIgnoreNull(LySocialReportPO lySocialReport);
/**
* 删除记录
*
* @param lySocialReport 待删除的记录
* @return 返回影响行数
*/
int delete(LySocialReportPO lySocialReport);
/**
* 生成报表数据
*
* @param param
*/
void generateSocialReport(LySalaryReportQueryParam param);
/**
* 查询社保公积金汇总报表
*
* @param param
* @return
*/
Map<String, Object> listSIReport(LySalaryReportQueryParam param);
/**
* 社保公积金汇总报表 合计行
*
* @param param
* @return
*/
LySocialReportPO sumRow(LySalaryReportQueryParam param);
/**
* 删除数据
*
* @param siReportIds
*/
void deleteSocialReport(List<Long> siReportIds);
/**
* 社保公积金汇总报表导出
*
* @param param
* @return
*/
XSSFWorkbook exportSIReport(LySalaryReportQueryParam param);
List<LySocialReportPO> getByIds(List<Long> ids);
/**
* 社保公积金购买公司下拉框list
* @param queryParam
* @return
*/
List<Map<String, Object>> sIReportGmgsList(LySalaryReportQueryParam queryParam);
}