2026-04-23 c247f5bf64c98595cc7e4efc9e1ae7ff1df79c11
src/main/java/com/ruoyi/purchase/pojo/TicketRegistration.java
@@ -3,7 +3,7 @@
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.math.BigDecimal;
@@ -26,6 +26,13 @@
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
     * 状态
     */
    @Excel(name = "状态")
    @TableField(exist = false)
    private String statusName;
    /**
     * 采购台账id
@@ -133,12 +140,14 @@
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    @ApiModelProperty(value = "已付款总金额")
    @Schema(description = "已付款总金额")
    @TableField(exist = false)
    @Excel(name = "已付款总金额")
    private BigDecimal paymentAmountTotal;
    @ApiModelProperty(value = "未付款总金额")
    @Schema(description = "未付款总金额")
    @TableField(exist = false)
    @Excel(name = "未付款总金额")
    private BigDecimal unPaymentAmountTotal;
    @TableField(exist = false)
@@ -152,6 +161,13 @@
    @TableField(exist = false)
    private String supplierNameOrContractNo;
    @ApiModelProperty(value = "录入时间")
    @Schema(description = "录入时间")
    private LocalDate enterDate;
    @Schema(description = "创建用户")
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}