使用easyPoi导出excel

引入依赖

		<!-- easyPoi -->
		<dependency>
			<groupId>cn.afterturn</groupId>
			<artifactId>easypoi-base</artifactId>
			<version>3.0.3</version>
		</dependency>
		<dependency>
			<groupId>cn.afterturn</groupId>
			<artifactId>easypoi-web</artifactId>
			<version>3.0.3</version>
		</dependency>
		<dependency>
			<groupId>cn.afterturn</groupId>
			<artifactId>easypoi-annotation</artifactId>
			<version>3.0.3</version>
		</dependency>


javaBean

package com.yptx.financialsystem.finance.models.vo;

import cn.afterturn.easypoi.excel.annotation.Excel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;

import java.io.Serializable;
import java.math.BigDecimal;

@Data
@Accessors(chain = true)
@ApiModel("利息情况vo")
public class FinanceInterestStatementListVo implements Serializable {

    @Excel(name = "序号", orderNum = "0", width = 15)
    @ApiModelProperty("序号")
    private String sort;

    @Excel(name = "借款人", orderNum = "1", width = 15)
    @ApiModelProperty("借款人")
    private String borrower;

    @Excel(name = "联系电话", orderNum = "2", width = 15)
    @ApiModelProperty("联系电话")
    private String phone;

    @Excel(name = "合同编号", orderNum = "3", width = 15)
    @ApiModelProperty("合同编号")
    private String contractNo;

    @Excel(name = "管理类别", orderNum = "4", width = 15)
    @ApiModelProperty("管理类别")
    private String managementCategory;

    @Excel(name = "贷款种类", orderNum = "5", width = 15)
    @ApiModelProperty("贷款种类")
    private String loanTypes;

    @Excel(name = "期限", orderNum = "6", width = 15)
    @ApiModelProperty("期限")
    private String timeLimit;

    @Excel(name = "贷款起止日期", orderNum = "7", width = 15)
    @ApiModelProperty("贷款起止日期")
    private String loanStartStop;

    @Excel(name = "借款金额", orderNum = "8", width = 15)
    @ApiModelProperty("借款金额")
    private BigDecimal borrowingAmount;

    @Excel(name = "计息金额", orderNum = "9", width = 15)
    @ApiModelProperty("计息金额")
    private BigDecimal determinedAmount;

    @Excel(name = "合同月利率", orderNum = "10", width = 15)
    @ApiModelProperty("合同月利率")
    private BigDecimal monthlyRate;

    @Excel(name = "咨询费率", orderNum = "11", width = 15)
    @ApiModelProperty("咨询费率")
    private BigDecimal consultingRate;

    @Excel(name = "起息日", orderNum = "12", width = 15)
    @ApiModelProperty("起息日")
    private String breathDay;

    @Excel(name = "止息日", orderNum = "13", width = 15)
    @ApiModelProperty("止息日")
    private String restDay;

    @Excel(name = "收息日", orderNum = "14", width = 15)
    @ApiModelProperty("收息日")
    private String getDay;

    @Excel(name = "合同利息(元)", groupName = "应收利息(元)" , orderNum = "15", width = 15)
    @ApiModelProperty("合同利息(元)")
    private BigDecimal contractInterest;

    @Excel(name = "咨询费(元)", groupName = "应收利息(元)" , orderNum = "16", width = 15)
    @ApiModelProperty("咨询费(元)")
    private BigDecimal consultingFees;

    @Excel(name = "应收合计(元)", groupName = "应收利息(元)" , orderNum = "17", width = 15)
    @ApiModelProperty("应收利息-应收合计(元)")
    private BigDecimal receivableAmount;

    @Excel(name = "实际收息日", orderNum = "18")
    @ApiModelProperty("实际收息日")
    private String actualGetDay;

    @Excel(name = "实收利息(元)", groupName = "实收利息(元)" , orderNum = "19", width = 15)
    @ApiModelProperty("实收利息(元)")
    private BigDecimal actualInterest;

    @Excel(name = "实收咨询费(元)", groupName = "实收利息(元)" , orderNum = "20", width = 15)
    @ApiModelProperty("实收咨询费(元)")
    private BigDecimal actualConsultingFees;

    @Excel(name = "实收合计(元)", groupName = "实收利息(元)" , orderNum = "21", width = 15)
    @ApiModelProperty("实收利息-实收合计(元)")
    private BigDecimal actualReceivableAmount;

    @Excel(name = "未收利息(元)", groupName = "未收利息(元)" , orderNum = "22", width = 15)
    @ApiModelProperty("未收利息(元)")
    private BigDecimal notReceiveInterest;

    @Excel(name = "未收咨询费(元)", groupName = "未收利息(元)" , orderNum = "23", width = 15)
    @ApiModelProperty("未收咨询费(元)")
    private BigDecimal notReceiveConsultingFees;

    @Excel(name = "未收合计(元)", groupName = "未收利息(元)" , orderNum = "24", width = 15)
    @ApiModelProperty("未收利息-未收合计(元)")
    private BigDecimal notReceiveReceivableAmount;
}




controller

@ApiOperation(value = "导出(财务中心-报表统计-利息情况)列表", httpMethod = "GET", notes = "dev - Ming")
    @GetMapping("/exportExcel")
    public void export(@RequestParam(defaultValue = "1") Integer current, @RequestParam(defaultValue = "10") Integer size,
                       QueryFinanceInterestStatementDto dto,HttpServletResponse response){
       try{
           // 告诉浏览器用什么软件可以打开此文件
           response.setHeader("content-Type", "application/vnd.ms-excel");
           // 下载文件的默认名称
           response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode("利息情况数据表","UTF-8") + ".xls");
           //编码
           response.setCharacterEncoding("UTF-8");
           //ExcelExportUtil.exportExcel()方法的第二个参数为对应实体class对象,第三个参数为对应实体的list集合
           Workbook workbook = ExcelExportUtil.exportExcel(new ExportParams(), FinanceInterestStatementListVo.class, financeInterestService.getInterestList(current,size,dto).getObj().getRecords());
           workbook.write(response.getOutputStream());
       }catch (Exception e){
           e.printStackTrace();
       }
    }

导出效果
在这里插入图片描述
文档地址
http://doc.wupaas.com/docs/easypoi

  • 4
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值