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 receiptPaymentAmount;
|
|
@Schema(description = "应收金额")
|
//该客户销售应收累计金额=财务(出库-退货)
|
private BigDecimal receiptableAmount;
|
|
}
|