对比新文件 |
| | |
| | | package com.ruoyi.procurementrecord.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | 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 ProcurementRecord { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | /** |
| | | * 浜у搧淇℃伅琛╥d |
| | | */ |
| | | private Integer salesLedgerProductId; |
| | | |
| | | /** |
| | | * 鍏ュ簱鎵规 |
| | | */ |
| | | private String inboundBatches; |
| | | |
| | | /** |
| | | * 鍏ュ簱鏁伴噺 |
| | | */ |
| | | private BigDecimal inboundNum; |
| | | |
| | | /** |
| | | * 鍏ュ簱鏃堕棿 |
| | | */ |
| | | private LocalDateTime createDate; |
| | | |
| | | /** |
| | | * 鍏ュ簱鐢ㄦ埛 |
| | | */ |
| | | private String createBy; |
| | | |
| | | /** |
| | | * 鍏ュ簱鐢ㄦ埛id |
| | | */ |
| | | private Long userId; |
| | | |
| | | /** |
| | | * 绉熸埛ID |
| | | */ |
| | | private Long tenantId; |
| | | } |