maven
6 天以前 5e79bce73b2cf6a65081082a10f6f4be06413aa3
src/main/java/com/ruoyi/procurementrecord/pojo/ProcurementRecordOut.java
@@ -1,6 +1,8 @@
package com.ruoyi.procurementrecord.pojo;
import com.baomidou.mybatisplus.annotation.*;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Builder;
import lombok.Data;
@@ -22,7 +24,7 @@
    private Integer id;
    /**
     * 产品信息表id
     * 产品信息表id(自定义入库时为0)
     */
    private Integer salesLedgerProductId;
@@ -43,32 +45,42 @@
    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;
    /**