|
@@ -6,6 +6,8 @@ import com.fjhx.form.entity.RemitDetailVo;
|
|
import com.fjhx.form.entity.SubjectBalanceBo;
|
|
import com.fjhx.form.entity.SubjectBalanceBo;
|
|
import com.fjhx.form.entity.SubjectBalanceSelectDto;
|
|
import com.fjhx.form.entity.SubjectBalanceSelectDto;
|
|
import com.fjhx.form.service.FinanceReportService;
|
|
import com.fjhx.form.service.FinanceReportService;
|
|
|
|
+import com.ruoyi.common.annotation.Log;
|
|
|
|
+import com.ruoyi.common.enums.BusinessType;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
@@ -32,6 +34,7 @@ public class FinanceReportController {
|
|
return financeReportService.getRemitDetailPage(dto);
|
|
return financeReportService.getRemitDetailPage(dto);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Log(title = "汇款明细", businessType = BusinessType.EXPORT)
|
|
@PostMapping("/remitDetailExcelExport")
|
|
@PostMapping("/remitDetailExcelExport")
|
|
void remitDetailExcelExport(@RequestBody RemitDetailSelectDto dto, HttpServletResponse httpServletResponse) {
|
|
void remitDetailExcelExport(@RequestBody RemitDetailSelectDto dto, HttpServletResponse httpServletResponse) {
|
|
financeReportService.remitDetailExcelExport(dto, httpServletResponse);
|
|
financeReportService.remitDetailExcelExport(dto, httpServletResponse);
|