hsy
2026-08-28 a8e4132c3e2e9c3b3fcb0360901b35571b6464ea
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.ruoyi.sales.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@Schema(name = "ProjectTransactionsVo", description = "营销管理--客户往来-项目层级(返回)")
public class ProjectTransactionsVo {
 
    @Schema(description = "项目ID")
    private Long projectId;
 
    @Schema(description = "项目编号")
    private String projectNo;
 
    @Schema(description = "项目名称")
    private String projectName;
 
    @Schema(description = "合同总金额")
    private BigDecimal contractAmounts;
 
    @Schema(description = "收款金额")
    private BigDecimal receiptPaymentAmount;
 
    @Schema(description = "应收金额")
    private BigDecimal receiptableAmount;
 
    @Schema(description = "退货金额")
    private BigDecimal returnAmount;
 
    @Schema(description = "开票金额")
    private BigDecimal invoiceAmount;
 
    @Schema(description = "关联客户数")
    private Integer customerCount;
 
    @Schema(description = "合同总数")
    private Integer contractCount;
 
    @Schema(description = "超期合同数")
    private Integer overdueCount;
 
    @Schema(description = "项目状态 (0进行中 1已完成等)")
    private Integer status;
}