| | |
| | | package com.ycl.platform.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.ycl.platform.domain.entity.CalculateReport; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ycl.platform.domain.excel.CalculateExport; |
| | | import com.ycl.platform.domain.query.CalculateReportQuery; |
| | | import com.ycl.platform.domain.vo.CalculateReportDetailVO; |
| | | import com.ycl.platform.domain.vo.CalculateReportVO; |
| | | import com.ycl.platform.domain.form.CalculateReportForm; |
| | | import java.util.List; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 核算报告 Mapper 接口 |
| | |
| | | * @param query |
| | | * @param page |
| | | */ |
| | | void page(@Param("query") CalculateReportQuery query, IPage<CalculateReportVO> page); |
| | | IPage page(@Param("query") CalculateReportQuery query, IPage<CalculateReportVO> page); |
| | | |
| | | |
| | | /** |
| | | * 根据ID获取明细 |
| | | * |
| | | * @param id 核算ID |
| | | * @return |
| | | */ |
| | | CalculateReportDetailVO getById(@Param("query") CalculateReportQuery query); |
| | | |
| | | /** |
| | | * 导出数据 |
| | | * @return 数据 |
| | | */ |
| | | List<CalculateExport> exportData(Integer whichYear,Integer whichMonth,Integer whichDay,Integer contractId); |
| | | } |