chenrui
6 天以前 698008c4a0f97efa3c583967e246b78777b150a7
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
48
package com.ruoyi.sales.dto;
 
import com.ruoyi.sales.pojo.ReceiptPayment;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class ReceiptPaymentDto extends ReceiptPayment {
 
    @ApiModelProperty(value = "客户合同号")
    private String customerContractNo;
 
    @ApiModelProperty(value = "客户名称")
    private String customerName;
 
    @ApiModelProperty(value = "查询文本")
    private String searchText;
 
    @ApiModelProperty(value = "销售台账sales_ledger")
    private Integer salesLedgerId;
 
    @ApiModelProperty(value = "销售合同号")
    private String salesContractNo;
 
    @ApiModelProperty(value = "客户名称ID")
    private Integer customerId;
 
    @ApiModelProperty(value = "发票号")
    private String invoiceNo;
 
    @ApiModelProperty(value = "发票金额")
    private BigDecimal invoiceTotal;
 
    @ApiModelProperty(value = "税率")
    private BigDecimal taxRate;
 
    @ApiModelProperty(value = "产品大类")
    private String productCategory;
 
    @ApiModelProperty(value = "回款金额")
    private BigDecimal receiptPaymentAmountTotal;
 
    @ApiModelProperty(value = "待回款金额")
    private BigDecimal noReceiptAmount;
 
}