| | |
| | | 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 { |
| | | |
| | | |
| | | |
| | | /** |
| | | * 登记结束日期 |
| | | */ |
| | | // @JsonFormat(pattern = "yyyy-MM-dd",shape = JsonFormat.Shape.STRING) |
| | | private String registrationtDate; |
| | | /** |
| | | * 采购合同号 |
| | | */ |
| | |
| | | @ApiModelProperty(value = "退货总数") |
| | | private BigDecimal totalReturnNum; |
| | | |
| | | @ApiModelProperty(value = "供应商名称或合同号") |
| | | private String supplierNameOrContractNo; |
| | | |
| | | } |