maven
2025-11-28 3f3a1ed182e96214e66f6456ee692427bf04d454
src/main/java/com/ruoyi/procurementrecord/pojo/ProcurementRecordOut.java
@@ -1,8 +1,6 @@
package com.ruoyi.procurementrecord.pojo;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Builder;
import lombok.Data;
@@ -24,7 +22,7 @@
    private Integer id;
    /**
     * 产品信息表id
     * 产品信息表id(自定义入库时为0)
     */
    private Integer salesLedgerProductId;
@@ -33,43 +31,59 @@
     */
    private Integer procurementRecordStorageId;
    /**
     * 编号
     */
    private String code;
    /**
     * 出库批次
     */
    private String inboundBatches;
    /**
     * 出出库数量
     * 出库数量
     */
    private BigDecimal inboundNum;
    /**
     * 出出库用户
     * 出库类型 1-采购 2-销售 3-自定义
     */
    private Integer type;
    /**
     * 出库用户
     */
    private String createBy;
    /**
     * 入库用户id
     */
    @TableField(fill = FieldFill.INSERT)
    private Long createUser;
    /**
     * 入库时间
     */
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
    /**
     * 修改者
     */
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Long updateUser;
    /**
     * 修改时间
     */
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
    /**
     * 租户ID
     */
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
}