gongchunyi
3 天以前 d709e8a7117704ac4717db5201e40964b90d4791
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
 
}