| | |
| | | * @author :yys |
| | | * @date : 2025/7/7 14:25 |
| | | */ |
| | | @TableName("procurement_record") |
| | | @TableName("procurement_record_storage") |
| | | @Data |
| | | @Builder |
| | | public class ProcurementRecord { |
| | |
| | | private Integer salesLedgerProductId; |
| | | |
| | | /** |
| | | * 采购分类(1-入库 2-出库) |
| | | */ |
| | | private Integer procurementCategory; |
| | | |
| | | /** |
| | | * 入库批次 |
| | | */ |
| | | private String inboundBatches; |
| | | |
| | | /** |
| | | * 出入库数量 |
| | | * 入库数量 |
| | | */ |
| | | private BigDecimal inboundNum; |
| | | |
| | | /** |
| | | * 出入库时间 |
| | | * 入库时间 |
| | | */ |
| | | private LocalDateTime createDate; |
| | | |
| | | /** |
| | | * 出入库用户 |
| | | * 入库用户 |
| | | */ |
| | | private String createBy; |
| | | |
| | | /** |
| | | * 入库用户id |
| | | */ |
| | | private Long userId; |
| | | |
| | | /** |
| | | * 租户ID |
| | | */ |
| | | private Long tenantId; |