package com.ruoyi.procurementrecord.pojo; 
 | 
  
 | 
import com.baomidou.mybatisplus.annotation.*; 
 | 
import lombok.Builder; 
 | 
import lombok.Data; 
 | 
  
 | 
import java.math.BigDecimal; 
 | 
import java.time.LocalDateTime; 
 | 
  
 | 
/** 
 | 
 * @author :yys 
 | 
 * @date : 2025/7/7 14:25 
 | 
 */ 
 | 
@TableName("procurement_record_storage") 
 | 
@Data 
 | 
@Builder 
 | 
public class ProcurementRecordStorage { 
 | 
  
 | 
    private static final long serialVersionUID = 1L; 
 | 
  
 | 
    @TableId(value = "id", type = IdType.AUTO) 
 | 
    private Integer id; 
 | 
  
 | 
    /** 
 | 
     * 产品信息表id 
 | 
     */ 
 | 
    private Integer salesLedgerProductId; 
 | 
  
 | 
    /** 
 | 
     * 入库批次 
 | 
     */ 
 | 
    private String inboundBatches; 
 | 
  
 | 
    /** 
 | 
     * 入库数量 
 | 
     */ 
 | 
    private BigDecimal inboundNum; 
 | 
//    /** 
 | 
//     * 最低库存数量 
 | 
//     */ 
 | 
//    private BigDecimal minStock; 
 | 
  
 | 
    /** 
 | 
     * 入库用户 
 | 
     */ 
 | 
    private String createBy; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 入库用户id 
 | 
     */ 
 | 
    private Long createUser; 
 | 
  
 | 
    /** 
 | 
     * 入库时间 
 | 
     */ 
 | 
    private LocalDateTime createTime; 
 | 
  
 | 
    /** 
 | 
     * 修改者 
 | 
     */ 
 | 
    private Long updateUser; 
 | 
  
 | 
    /** 
 | 
     * 修改时间 
 | 
     */ 
 | 
    private LocalDateTime updateTime; 
 | 
  
 | 
    /** 
 | 
     * 租户ID 
 | 
     */ 
 | 
    @TableField(fill = FieldFill.INSERT) 
 | 
    private Long tenantId; 
 | 
} 
 |