123456789101112131415161718192021222324252627 |
- package com.ruoyi.finance.domain.excel;
- import com.ruoyi.common.annotation.Excel;
- import lombok.Data;
- import java.io.Serializable;
- import java.math.BigDecimal;
- @Data
- public class ProfitGeneralLedgerExcel implements Serializable {
- @Excel(name = "客户")
- private String fName;
- @Excel(name = "年月")
- private String reviewDate;
- @Excel(name = "应收金额")
- private Double fAmount;
- @Excel(name = "应付金额")
- private Double fStlamount;
- @Excel(name = "利润")
- private Double nnfinished;
- }
|