From 3436929ce8f22fe0bb68a19a7d37412b34fca061 Mon Sep 17 00:00:00 2001
From: yuan <123@>
Date: 星期六, 28 三月 2026 18:11:42 +0800
Subject: [PATCH] feat(basic): 新增企业信息管理功能

---
 src/main/java/com/ruoyi/basic/pojo/EnterpriseInfo.java |  113 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 113 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/ruoyi/basic/pojo/EnterpriseInfo.java b/src/main/java/com/ruoyi/basic/pojo/EnterpriseInfo.java
new file mode 100644
index 0000000..e7f2470
--- /dev/null
+++ b/src/main/java/com/ruoyi/basic/pojo/EnterpriseInfo.java
@@ -0,0 +1,113 @@
+package com.ruoyi.basic.pojo;
+
+import com.baomidou.mybatisplus.annotation.*;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.io.Serializable;
+import java.time.LocalDateTime;
+
+@Data
+@TableName("enterprise_info")
+public class EnterpriseInfo implements Serializable {
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * 涓婚敭ID
+     */
+    @TableId(type = IdType.AUTO)
+    private Long id;
+
+    /**
+     * 鍏徃鍚嶇О
+     */
+    @ApiModelProperty(value = "鍏徃鍚嶇О")
+    private String companyName;
+
+    /**
+     * 鍏徃Logo
+     */
+    @ApiModelProperty(value = "鍏徃Logo")
+    private String companyLogo;
+
+    /**
+     * 鍏徃绠�浠�
+     */
+    @ApiModelProperty(value = "鍏徃绠�浠�")
+    private String companyIntro;
+
+    /**
+     * 浜у搧浠嬬粛
+     */
+    @ApiModelProperty(value = "浜у搧浠嬬粛")
+    private String productIntro;
+
+    /**
+     * 璁惧浠嬬粛
+     */
+    @ApiModelProperty(value = "璁惧浠嬬粛")
+    private String equipmentIntro;
+
+    /**
+     * 鑱旂郴浜�
+     */
+    @ApiModelProperty(value = "鑱旂郴浜�")
+    private String contactPerson;
+
+    /**
+     * 鑱旂郴鐢佃瘽
+     */
+    @ApiModelProperty(value = "鑱旂郴鐢佃瘽")
+    private String contactPhone;
+
+    /**
+     * 鍏徃鍦板潃
+     */
+    @ApiModelProperty(value = "鍏徃鍦板潃")
+    private String companyAddress;
+
+    /**
+     * 鍏徃缃戠珯
+     */
+    @ApiModelProperty(value = "鍏徃缃戠珯")
+    private String website;
+
+    /**
+     * 浜岀淮鐮�
+     */
+    @ApiModelProperty(value = "浜岀淮鐮�")
+    private String qrCode;
+
+    /**
+     * 鍒涘缓鑰�
+     */
+    @TableField(fill = FieldFill.INSERT)
+    private String createUser;
+
+    /**
+     * 鍒涘缓鏃堕棿
+     */
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    @TableField(fill = FieldFill.INSERT)
+    private LocalDateTime createTime;
+
+    /**
+     * 鏇存柊鑰�
+     */
+    @TableField(fill = FieldFill.INSERT_UPDATE)
+    private String updateUser;
+
+    /**
+     * 鏇存柊鏃堕棿
+     */
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    @TableField(fill = FieldFill.INSERT_UPDATE)
+    private LocalDateTime updateTime;
+
+    /**
+     * 绉熸埛ID
+     */
+    @TableField(fill = FieldFill.INSERT)
+    private Long tenantId;
+}

--
Gitblit v1.9.3