zss
8 小时以前 3d4cb4fafdee76f0dc2f895f21a37bfa0f638c6a
src/main/java/com/ruoyi/procurementrecord/pojo/ProcurementRecordOut.java
@@ -22,9 +22,9 @@
    private Integer id;
    /**
     * 产品信息表id
     * 产品信息表id(生产扣库存的时候使用)
     */
    private Integer salesLedgerProductId;
    private Long salesLedgerProductId;
    /**
     * 入库id
@@ -43,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;
    /**
@@ -77,4 +87,9 @@
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    /**
     * 产品ID
     */
    private Long productModelId;
}