buhuazhen
2 天以前 392366ea36a839e5d0ea05968e6da31cd53a9ee6
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
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.ruoyi.business.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import com.ruoyi.common.core.domain.MyBaseEntity;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.util.Date;
 
/**
 * 应付款表
 * @TableName due_payable
 */
@TableName(value ="due_payable")
@Data
public class DuePayable extends MyBaseEntity {
    /**
     * 
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 票号
     */
    @TableField("ticket_no")
    private String ticketNo;
 
    /**
     * 对应采购信息表id
     */
    @TableField("purchase_registration_id")
 
    private Long purchaseRegistrationId;
 
    /**
     * 付款类型 (预付款、进度款、质保金等)
     */
    @TableField("payable_type")
    private Integer payableType;
 
    /**
     * 付款金额
     */
    @TableField("payment_amount")
    private BigDecimal paymentAmount;
 
    /**
     * 附件 `,`分割
     */
    @TableField("attach_upload")
    private String attachUpload;
 
 
 
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
 
}