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
| package com.ruoyi.business.dto;
|
| import lombok.Data;
|
| import java.math.BigDecimal;
|
| /**
| * @author buhuazhen
| * @date 2025/8/26
| * @email 3038525872@qq.com
| */
| @Data
| public class DuePayableDto {
| private Long id;
|
| private String ticketNo;
|
| /**
| * 对应采购信息表id
| */
| private Long purchaseRegistrationId;
|
| /**
| * 付款类型 (预付款、进度款、质保金等)
| */
| private Integer payableType;
|
| /**
| * 付款金额
| */
| private String paymentAmount;
|
| /**
| * 附件 `,`分割
| */
| private String attachUpload;
| }
|
|