maven
10 小时以前 34e986e6e158450ee35319f1cac872a4bc974a74
src/main/java/com/ruoyi/procurementrecord/pojo/ProcurementRecordOut.java
@@ -22,14 +22,20 @@
    private Integer id;
    /**
     * 产品信息表id
     * 产品信息表id(生产扣库存的时候使用)
     */
    private Integer salesLedgerProductId;
    private Long salesLedgerProductId;
    /**
     * 入库id
     */
    private Integer procurementRecordStorageId;
    /**
     * 编号
     */
    private String code;
    /**
     * 出库批次
@@ -37,32 +43,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;
    /**
@@ -71,4 +87,9 @@
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    /**
     * 产品ID
     */
    private Long productModelId;
}