package cn.iocoder.yudao.module.crm.api.report.dto;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* CRM 商机分析统计 Response DTO
|
*/
|
@Schema(description = "RPC 服务 - CRM 商机分析统计 Response DTO")
|
@Data
|
public class CrmBusinessAnalyzeRespDTO {
|
|
@Schema(description = "商机总数")
|
private Long totalCount;
|
|
@Schema(description = "新增商机数(今日)")
|
private Long todayCount;
|
|
@Schema(description = "商机总金额")
|
private BigDecimal totalPrice;
|
|
@Schema(description = "成交商机数")
|
private Long successCount;
|
|
@Schema(description = "成交商机金额")
|
private BigDecimal successPrice;
|
|
@Schema(description = "商机转化率(百分比)")
|
private BigDecimal successRate;
|
|
@Schema(description = "进行中商机数")
|
private Long processingCount;
|
|
@Schema(description = "失败商机数")
|
private Long failCount;
|
|
}
|