| | |
| | | package com.ruoyi.sales.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import com.ruoyi.sales.pojo.SalesLedgerProduct; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | |
| | | import com.ruoyi.sales.pojo.SalesLedgerProduct; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class SalesLedgerProductDto extends SalesLedgerProduct { |
| | |
| | | @ApiModelProperty(value = "退货总数") |
| | | private BigDecimal totalReturnNum; |
| | | |
| | | @ApiModelProperty(value = "供应商名称或合同号") |
| | | private String supplierNameOrContractNo; |
| | | |
| | | } |