From 89ffb9fded4da0fbac9a14d4979aa7623b0a78f0 Mon Sep 17 00:00:00 2001
From: cuilei <ray_tsu1@163.com>
Date: 星期一, 28 七月 2025 20:47:00 +0800
Subject: [PATCH] 工装管理基础代码

---
 src/main/java/org/jeecg/modules/tms/entity/TmsToolInboundInventory.java |   55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 55 insertions(+), 0 deletions(-)

diff --git a/src/main/java/org/jeecg/modules/tms/entity/TmsToolInboundInventory.java b/src/main/java/org/jeecg/modules/tms/entity/TmsToolInboundInventory.java
new file mode 100644
index 0000000..01965cf
--- /dev/null
+++ b/src/main/java/org/jeecg/modules/tms/entity/TmsToolInboundInventory.java
@@ -0,0 +1,55 @@
+package org.jeecg.modules.tms.entity;
+
+import java.io.Serializable;
+import java.io.UnsupportedEncodingException;
+import java.util.Date;
+import java.math.BigDecimal;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.TableLogic;
+import lombok.Data;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import org.springframework.format.annotation.DateTimeFormat;
+import org.jeecgframework.poi.excel.annotation.Excel;
+import org.jeecg.common.aspect.annotation.Dict;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+
+/**
+ * @Description: 宸ヨ鍏ュ簱搴撳瓨鍏崇郴
+ * @Author: jeecg-boot
+ * @Date:   2025-07-28
+ * @Version: V1.0
+ */
+@Data
+@TableName("tms_tool_inbound_inventory")
+@Accessors(chain = true)
+@EqualsAndHashCode(callSuper = false)
+@ApiModel(value="tms_tool_inbound_inventory瀵硅薄", description="宸ヨ鍏ュ簱搴撳瓨鍏崇郴")
+public class TmsToolInboundInventory implements Serializable {
+    private static final long serialVersionUID = 1L;
+
+	/**涓婚敭*/
+	@TableId(type = IdType.ASSIGN_ID)
+    @ApiModelProperty(value = "涓婚敭")
+    private String id;
+	/**鍒涘缓浜�*/
+    @ApiModelProperty(value = "鍒涘缓浜�")
+    private String createBy;
+	/**鍒涘缓鏃堕棿*/
+	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
+    @DateTimeFormat(pattern="yyyy-MM-dd")
+    @ApiModelProperty(value = "鍒涘缓鏃堕棿")
+    private Date createTime;
+	/**鍏ュ簱鍗旾D*/
+	@Excel(name = "鍏ュ簱鍗旾D", width = 15)
+    @ApiModelProperty(value = "鍏ュ簱鍗旾D")
+    private String orderId;
+	/**搴撳瓨ID*/
+	@Excel(name = "搴撳瓨ID", width = 15)
+    @ApiModelProperty(value = "搴撳瓨ID")
+    private String inventoryId;
+}

--
Gitblit v1.9.3