From 342e5fa110cd2644c9cdd02ff7e56b331218c35c Mon Sep 17 00:00:00 2001
From: buhuazhen <hua100783@gmail.com>
Date: 星期四, 21 五月 2026 11:55:22 +0800
Subject: [PATCH] fix(inspectionTask) 附件调整

---
 src/main/java/com/ruoyi/basic/pojo/Customer.java |   63 +++++++++++++++++++++++++++++--
 1 files changed, 59 insertions(+), 4 deletions(-)

diff --git a/src/main/java/com/ruoyi/basic/pojo/Customer.java b/src/main/java/com/ruoyi/basic/pojo/Customer.java
index 1c7898a..02c7636 100644
--- a/src/main/java/com/ruoyi/basic/pojo/Customer.java
+++ b/src/main/java/com/ruoyi/basic/pojo/Customer.java
@@ -1,13 +1,14 @@
 package com.ruoyi.basic.pojo;
 
-import java.io.Serializable;
-import java.util.Date;
-
 import com.baomidou.mybatisplus.annotation.*;
 import com.fasterxml.jackson.annotation.JsonFormat;
+import com.ruoyi.framework.aspectj.lang.annotation.Excel;
 import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
-import com.ruoyi.framework.aspectj.lang.annotation.Excel;
+
+import java.io.Serializable;
+import java.time.LocalDateTime;
+import java.util.Date;
 
 /**
  * 瀹㈡埛妗f瀵硅薄 customer
@@ -31,6 +32,25 @@
      */
     @Excel(name = "瀹㈡埛鍚嶇О")
     private String customerName;
+    /** 瀹㈡埛鍒嗙被锛氶浂鍞鎴凤紝杩涢攢鍟嗗鎴� */
+
+
+    /**
+     * 璺熻繘绋嬪害
+     */
+    @Excel(name = "璺熻繘绋嬪害")
+    @TableField(exist = false)
+    private String followUpLevel;
+
+    /**
+     * 璺熻繘鏃堕棿
+     */
+//    @Excel(name = "璺熻繘鏃堕棿" , width = 30, dateFormat = "yyyy-MM-dd")
+    @TableField(exist = false)
+    private LocalDateTime followUpTime;
+
+    @Excel(name = "瀹㈡埛鍒嗙被")
+    private String customerType;
 
     /**
      * 绾崇◣浜鸿瘑鍒彿
@@ -85,11 +105,46 @@
     private String addressPhone;
 
     @ApiModelProperty(value = "閾惰鍩烘湰鎴�")
+    @Excel(name = "閾惰鍩烘湰鎴�")
     private String basicBankAccount;
 
     @ApiModelProperty(value = "閾惰璐﹀彿")
+    @Excel(name = "閾惰璐﹀彿")
     private String bankAccount;
 
     @ApiModelProperty(value = "寮�鎴疯鍙�")
+    @Excel(name = "寮�鎴疯鍙�")
     private String bankCode;
+
+    @ApiModelProperty(value = "娉曚汉")
+    @Excel(name = "娉曚汉")
+    @TableField(value = "corporation")
+    private String corporation;
+
+    @ApiModelProperty(value = "浼犵湡")
+    @Excel(name = "浼犵湡")
+    @TableField(value = "fax")
+    private String fax;
+
+    @ApiModelProperty(value = "寮�鎴疯")
+    @Excel(name = "寮�鎴疯")
+    @TableField(value = "bank_name")
+    private String bankName;
+
+    @ApiModelProperty(value = "浠g悊")
+    @Excel(name = "浠g悊")
+    @TableField(value = "agent")
+    private String agent;
+    @ApiModelProperty(value = "鍒涘缓鐢ㄦ埛")
+    @TableField(fill = FieldFill.INSERT)
+    private Long createUser;
+
+    @TableField(fill = FieldFill.INSERT)
+    private Long deptId;
+
+    @ApiModelProperty(value = "浣跨敤鐢ㄦ埛")
+    private Long usageUser;
+    @ApiModelProperty(value = "浣跨敤鐘舵��")
+    private Long usageStatus;
+
 }

--
Gitblit v1.9.3