From e2aa651db9f17d58819329de571037edc0f9eba2 Mon Sep 17 00:00:00 2001 From: yaowanxin <3588231647@qq.com> Date: 星期一, 23 六月 2025 18:13:37 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/main/java/com/ruoyi/inventory/domain/StockOut.java | 70 +++++++++++++++++++++++++++++++++++ 1 files changed, 70 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/ruoyi/inventory/domain/StockOut.java b/src/main/java/com/ruoyi/inventory/domain/StockOut.java new file mode 100644 index 0000000..807c58e --- /dev/null +++ b/src/main/java/com/ruoyi/inventory/domain/StockOut.java @@ -0,0 +1,70 @@ +package inventory.domain; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; +import lombok.Data; + +/** + * + * @TableName stock_out + */ +@Data +public class StockOut implements Serializable { + /** + * 鍑哄簱璁板綍ID + */ + private Integer id; + + /** + * 浜у搧id + */ + private Integer productId; + + /** + * 鍑哄簱鏃堕棿 + */ + private Date inboundTime; + + /** + * 鍑哄簱鎵规锛堝鈥滅涓夋壒娆♀�濓級 + */ + private String inboundBatch; + + /** + * 渚涘簲鍟嗗悕绉� + */ + private String supplierName; + + /** + * 鍏ュ簱鏁伴噺 + */ + private Integer inboundQuantity; + + /** + * 鍚◣鍗曚环 + */ + private BigDecimal taxInclusivePrice; + + /** + * 鍚◣鎬讳环 + */ + private BigDecimal taxInclusiveTotal; + + /** + * 绋庣巼 + */ + private BigDecimal taxRate; + + /** + * 涓嶅惈绋庢�讳环 + */ + private BigDecimal taxExclusiveTotal; + + /** + * 鍑哄簱浜� + */ + private String inboundPerson; + + private static final long serialVersionUID = 1L; +} \ No newline at end of file -- Gitblit v1.9.3