src/main/java/com/ruoyi/purchase/pojo/PaymentRegistration.java
@@ -1,5 +1,6 @@
package com.ruoyi.purchase.pojo;
import io.swagger.annotations.ApiModelProperty;
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
@@ -37,6 +38,11 @@
    private Long purchaseLedgerId;
    /**
     * 采购订单产品id
     */
    private Long salesLedgerProductId;
    /**
     * 供应商id
     */
    private Long supplierId;
@@ -69,6 +75,7 @@
    private Long registrantId;
    // 租户id
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    /**
@@ -96,4 +103,11 @@
     */
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Date updateTime;
    @ApiModelProperty(value = "创建用户")
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}