fuliqi
2025-02-10 db75b45e9a7ce347162b8d3a36e4a7f46cfe199e
ycl-pojo/src/main/java/com/ycl/platform/domain/excel/CalculateExport.java
@@ -1,5 +1,6 @@
package com.ycl.platform.domain.excel;
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.*;
import com.alibaba.excel.enums.BooleanEnum;
@@ -27,8 +28,14 @@
     * 规则名称
     */
    @ExcelProperty({"自贡市公共视频监控系统续维合同", "规则名称"})
    @ColumnWidth(40)
    @ColumnWidth(130)
    private String ruleName;
    /**
     * 细则
     */
    @ExcelProperty({"自贡市公共视频监控系统续维合同", "细则"})
    @ColumnWidth(130)
    private String detailName;
    /**
     * 数量
@@ -37,27 +44,20 @@
    private Integer num;
    /**
     * 分数
     */
    @ExcelProperty({"自贡市公共视频监控系统续维合同", "分数"})
    private BigDecimal score;
    /**
     * 金额
     */
    @ExcelProperty({"自贡市公共视频监控系统续维合同", "金额"})
    private BigDecimal money;
    /**
     * 分数
     * 扣除分数
     */
    @ExcelProperty({"自贡市公共视频监控系统续维合同", "分数"})
    private Integer score;
    /**
     * 剩余分数
     */
    @ExcelProperty({"自贡市公共视频监控系统续维合同", "剩余分数"})
    private Integer surplusScore;
    /**
     * 合计
     */
    @ExcelProperty({"自贡市公共视频监控系统续维合同", "合计"})
    private BigDecimal total;
    @ExcelIgnore
    private BigDecimal calcFraction;
}