| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.sales.vo; |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | @Data |
| | | @Schema(name = "CustomerTransactionsVo", description = "è¥é管ç--客æ·å¾æ¥(è¿å)") |
| | | public class CustomerTransactionsVo { |
| | | |
| | | @Schema(description = "客æ·ID") |
| | | private Long customerId; |
| | | |
| | | @Schema(description = "客æ·åç§°") |
| | | private String customerName; |
| | | |
| | | @Schema(description = "ååæ»éé¢") |
| | | private BigDecimal contractAmounts; |
| | | |
| | | @Schema(description = "å·²åºåºéé¢") |
| | | private BigDecimal shippedAmount; |
| | | |
| | | @Schema(description = "æªåºåºéé¢") |
| | | private BigDecimal unshippedAmount; |
| | | |
| | | } |