| | |
| | | package com.ruoyi.home.dto; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | |
| | | * 客户金额贡献排名DTO |
| | | */ |
| | | @Data |
| | | @ApiModel("客户金额贡献排名") |
| | | @Schema(name = "客户金额贡献排名") |
| | | public class CustomerContributionRankingDto { |
| | | |
| | | @ApiModelProperty("客户名称") |
| | | @Schema(description = "客户名称") |
| | | private String customerName; |
| | | |
| | | @ApiModelProperty("合同总金额") |
| | | @Schema(description = "合同总金额") |
| | | private BigDecimal totalAmount; |
| | | } |