ycl-server/src/main/java/com/ycl/platform/service/CalculateReportService.java
@@ -55,10 +55,10 @@
    /**
     * 根据id查找
     * @param id
     * @param
     * @return
     */
    Result detail(Long id);
    Result detail(CalculateReportQuery query);
    /**
     * 列表
@@ -77,14 +77,20 @@
    /**
     * 修改发布状态
     *
     * @param reportId
     * @param
     * @return
     */
    Result updatePublishStatus(Long reportId);
    Result updatePublishStatus(Integer contractId,Integer whichYear);
    /**
     * 修改发布状态
     *
     * @param
     * @return
     */
    Result updatePublishStatusById(Integer id,String status);
    /**
     * 导出
     * @param response 响应
     */
    void export(Integer contractId, HttpServletResponse response);
    void export(Integer whichYear,Integer whichMonth,Integer whichDay,Integer contractId, HttpServletResponse response);
}