| | |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import com.ruoyi.purchase.pojo.PurchaseLedger; |
| | | import com.ruoyi.sales.pojo.SalesLedgerProduct; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | * @date : 2026/1/15 13:34 |
| | | */ |
| | | @Data |
| | | @ApiModel |
| | | @Schema |
| | | public class ProcurementBusinessSummaryDto { |
| | | |
| | | @Excel(name = "产品大类") |
| | |
| | | @Excel(name = "规格型号") |
| | | private String specificationModel; |
| | | |
| | | @ApiModelProperty(value = "开始时间") |
| | | @Schema(description = "开始时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date entryDateStart; |
| | | |
| | | @ApiModelProperty(value = "结束时间") |
| | | @Schema(description = "结束时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date entryDateEnd; |
| | |
| | | @Excel(name = "录入日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date entryDate; |
| | | |
| | | /** |
| | | * 退货数量 |
| | | */ |
| | | @Excel(name = "退货数量") |
| | | |
| | | private BigDecimal returnQuantity; |
| | | |
| | | /** |
| | | * 退货金额 |
| | | */ |
| | | @Excel(name = "退货金额") |
| | | private BigDecimal returnAmount; |
| | | } |