| | |
| | | package com.ruoyi.sales.dto; |
| | | |
| | | public class SalesLedgerProductDto { |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import com.ruoyi.sales.pojo.SalesLedgerProduct; |
| | | import lombok.Data; |
| | | |
| | | |
| | | import com.ruoyi.sales.pojo.SalesLedgerProduct; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class SalesLedgerProductDto extends SalesLedgerProduct { |
| | | |
| | | /** |
| | | * 采购合同号 |
| | | */ |
| | | @Excel(name = "采购合同号") |
| | | private String purchaseContractNumber; |
| | | /** |
| | | * 销售合同号 |
| | | */ |
| | | private String salesContractNo; |
| | | /** |
| | | * 客户合同号 |
| | | */ |
| | | private String customerContractNo; |
| | | /** |
| | | * 项目名称 |
| | | */ |
| | | private String projectName; |
| | | /** |
| | | * 客户名称 |
| | | */ |
| | | private String customerName; |
| | | /** |
| | | * 状态 |
| | | */ |
| | | private String statusName; |
| | | /** |
| | | * true:不显示待付款,回款为0的数据 |
| | | */ |
| | | private Boolean status; |
| | | |
| | | } |