package com.ruoyi.sales.dto; import com.ruoyi.framework.aspectj.lang.annotation.Excel; import lombok.Data; import java.math.BigDecimal; import java.util.Date; /** * 销售台账导出DTO */ @Data public class SalesLedgerExportDto { @Excel(name = "销售合同号") private String salesContractNo; @Excel(name = "客户合同号") private String customerContractNo; @Excel(name = "项目名称") private String projectName; @Excel(name = "客户名称") private String customerName; @Excel(name = "业务员") private String salesman; @Excel(name = "录入人") private String entryPersonName; @Excel(name = "录入日期", width = 30, dateFormat = "yyyy-MM-dd") private Date entryDate; @Excel(name = "签订日期", width = 30, dateFormat = "yyyy-MM-dd") private Date executionDate; @Excel(name = "交货日期", width = 30, dateFormat = "yyyy-MM-dd") private Date deliveryDate; @Excel(name = "合同金额(元)") private BigDecimal contractAmount; @Excel(name = "发货状态") private String deliveryStatusText; @Excel(name = "入库状态") private String stockStatusText; @Excel(name = "审核状态") private String reviewStatusText; @Excel(name = "订单状态") private String orderStatusText; @Excel(name = "备注") private String remarks; @Excel(name = "客户备注") private String customerRemarks; }