20 lines
549 B
Java
20 lines
549 B
Java
package com.erp.example.seata.entity;
|
|
|
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
|
|
/**
|
|
* 库存实体
|
|
*/
|
|
@Data
|
|
public class Inventory {
|
|
private Long id;
|
|
private Long productId; // 商品ID
|
|
private String productName; // 商品名称
|
|
private Integer stock; // 当前库存
|
|
private Integer reservedStock; // 预留库存(已冻结)
|
|
private Integer availableStock; // 可用库存(计算得出)
|
|
private String warehouse; // 仓库
|
|
private LocalDateTime updateTime;
|
|
}
|