zss
6 天以前 c3435615d9503fa65130b84cc456a16e8df54482
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
package com.ruoyi.sales.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDate;
 
@Data
@Schema(name = "CustomerTransactionsDetailsVo", description = "营销管理--客户往来明细(返回)")
public class CustomerTransactionsDetailsVo {
 
    @Schema(description = "销售单ID")
    private Long salesLedgerId;
 
    @Schema(description = "销售合同号")
    private String salesContractNo;
 
    @Schema(description = "销售合同签订日期")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate executionDate;
 
    @Schema(description = "合同金额")
    private BigDecimal contractAmount;
 
    @Schema(description = "收款金额")
    private BigDecimal receiptPaymentAmount;
 
    @Schema(description = "应收金额")
    private BigDecimal receiptableAmount;
 
}