| | |
| | | |
| | | import com.ycl.platform.domain.entity.CalculateReport; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.platform.domain.form.CalculateReportBackfillForm; |
| | | import com.ycl.system.Result; |
| | | import com.ycl.platform.domain.form.CalculateReportForm; |
| | | import com.ycl.platform.domain.query.CalculateReportQuery; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | * @param ids |
| | | * @return |
| | | */ |
| | | Result remove(List<String> ids); |
| | | Result remove(List<Long> ids); |
| | | |
| | | /** |
| | | * id删除 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | Result removeById(String id); |
| | | Result removeById(Long id); |
| | | |
| | | /** |
| | | * 分页查询 |
| | |
| | | |
| | | /** |
| | | * 根据id查找 |
| | | * @param id |
| | | * @param |
| | | * @return |
| | | */ |
| | | Result detail(String id); |
| | | Result detail(CalculateReportQuery query); |
| | | |
| | | /** |
| | | * 列表 |
| | | * @return |
| | | */ |
| | | Result all(); |
| | | |
| | | /** |
| | | * 回填扣款金额 |
| | | * |
| | | * @param form |
| | | * @return |
| | | */ |
| | | Result backfill(CalculateReportBackfillForm form); |
| | | |
| | | /** |
| | | * 修改发布状态 |
| | | * |
| | | * @param |
| | | * @return |
| | | */ |
| | | Result updatePublishStatus(Integer contractId,Integer whichYear); |
| | | /** |
| | | * 修改发布状态 |
| | | * |
| | | * @param |
| | | * @return |
| | | */ |
| | | Result updatePublishStatusById(Integer id,String status); |
| | | /** |
| | | * 导出 |
| | | * @param response 响应 |
| | | */ |
| | | void export(Integer whichYear,Integer whichMonth,Integer whichDay,Integer contractId, HttpServletResponse response); |
| | | } |