2026-04-23 41ab7abd0b0ec0fefb03b60bbaf42c02fbda666b
src/main/java/com/ruoyi/purchase/pojo/PaymentRegistration.java
@@ -1,7 +1,9 @@
package com.ruoyi.purchase.pojo;
import io.swagger.v3.oas.annotations.media.Schema;
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 +38,11 @@
    private Long purchaseLedgerId;
    /**
     * 采购订单产品id
     */
    private Long salesLedgerProductId;
    /**
     * 供应商id
     */
    private Long supplierId;
@@ -43,17 +50,24 @@
    /**
     * 发票id
     */
    private Long invoicePurchaseId;
    private Long ticketRegistrationId;
    /**
     * 本次付款金额
     */
    @Excel(name = "付款金额")
    private BigDecimal currentPaymentAmount;
    /**
     * 付款形式
     */
    @Excel(name = "付款形式")
    private String paymentMethod;
    /**
     * 税率
     */
    private String taxRate;
    /**
     * 登记人
@@ -61,13 +75,22 @@
    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;
    /**
     * 创建日期
@@ -80,4 +103,11 @@
     */
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Date updateTime;
    @Schema(description = "创建用户")
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}