From 3849263b31a16a91ff08acaa42786ecfde76f33c Mon Sep 17 00:00:00 2001
From: zhangback <zhangback@163.com>
Date: 星期四, 27 十一月 2025 20:18:08 +0800
Subject: [PATCH] 提交

---
 tms/src/main/java/com/ruoyi/tms/domain/TmsQuoteItem.java |   89 ++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 89 insertions(+), 0 deletions(-)

diff --git a/tms/src/main/java/com/ruoyi/tms/domain/TmsQuoteItem.java b/tms/src/main/java/com/ruoyi/tms/domain/TmsQuoteItem.java
new file mode 100644
index 0000000..a965270
--- /dev/null
+++ b/tms/src/main/java/com/ruoyi/tms/domain/TmsQuoteItem.java
@@ -0,0 +1,89 @@
+package com.ruoyi.tms.domain;
+
+import com.fasterxml.jackson.annotation.JsonFormat;
+
+import java.math.BigDecimal;
+
+import com.ruoyi.common.annotation.Excel;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableField;
+
+import java.util.Date;
+
+import lombok.Data;
+
+/**
+ * 鎶ヤ环椤圭洰瀵硅薄 tms_quote_item
+ *
+ * @author ruoyi
+ * @date 2025-11-26
+ */
+@Data
+public class TmsQuoteItem {
+
+
+    /**
+     * 涓婚敭ID
+     */
+    @TableId(value = "id", type = IdType.AUTO)
+    private Integer id;
+
+
+    /**
+     * 鍏宠仈鎶ヤ环鏂规ID
+     */
+    @Excel(name = "鍏宠仈鎶ヤ环鏂规ID")
+    @TableField("quote_plan_id")
+    private Integer quotePlanId;
+
+
+    /**
+     * 璐圭敤鍚嶇О
+     */
+    @Excel(name = "璐圭敤鍚嶇О")
+    @TableField("free_name")
+    private String freeName;
+
+
+    /**
+     * 鍗曚綅
+     */
+    @Excel(name = "鍗曚綅")
+    @TableField("unit")
+    private String unit;
+
+
+    /**
+     * 閲戦
+     */
+    @Excel(name = "閲戦")
+    @TableField("price")
+    private BigDecimal price;
+
+
+    /**
+     * 甯佸埗
+     */
+    @Excel(name = "甯佸埗")
+    @TableField("currency")
+    private String currency;
+
+
+    /**
+     * 鍒涘缓鏃堕棿
+     */
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    @TableField("create_time")
+    private Date createTime;
+
+
+    /**
+     * 淇敼鏃堕棿
+     */
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    @TableField("update_time")
+    private Date updateTime;
+
+
+}

--
Gitblit v1.8.0