maven
9 小时以前 60117d199e9345ac3e5287f1e82d51f74f14dddb
src/main/java/com/ruoyi/purchase/pojo/PaymentRegistration.java
@@ -2,6 +2,7 @@
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
import java.math.BigDecimal;
@@ -36,6 +37,11 @@
    private Long purchaseLedgerId;
    /**
     * 采购订单产品id
     */
    private Long saleLedgerProductId;
    /**
     * 供应商id
     */
    private Long supplierId;
@@ -43,33 +49,50 @@
    /**
     * 发票id
     */
    private Long invoicePurchaseId;
    private Long ticketRegistrationId;
    /**
     * 本次付款金额
     */
    @Excel(name = "付款金额")
    private BigDecimal currentPaymentAmount;
    /**
     * 付款形式
     */
    @Excel(name = "付款形式")
    private String paymentMethod;
    /**
     * 税率
     */
    private String taxRate;
    /**
     * 登记人
     */
    @TableField(fill = FieldFill.INSERT)
    private Long registrantId;
    // 租户id
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    /**
     * 付款日期
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "付款日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date paymentDate;
    /**
     * 登记日期
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "登记日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date registrationtDate;
    /**
     * 创建日期
     */
    @TableField(fill = FieldFill.INSERT)