From e8406a4dc63dee04b2ecd8e75d60acd4594d5150 Mon Sep 17 00:00:00 2001
From: suerwei <18810552194@163.com>
Date: 星期四, 16 五月 2024 15:39:38 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 javaweb-plus/javaweb-cms/src/main/java/com/javaweb/geo/domain/ProjectPerson.java |  164 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 164 insertions(+), 0 deletions(-)

diff --git a/javaweb-plus/javaweb-cms/src/main/java/com/javaweb/geo/domain/ProjectPerson.java b/javaweb-plus/javaweb-cms/src/main/java/com/javaweb/geo/domain/ProjectPerson.java
new file mode 100644
index 0000000..2d694c7
--- /dev/null
+++ b/javaweb-plus/javaweb-cms/src/main/java/com/javaweb/geo/domain/ProjectPerson.java
@@ -0,0 +1,164 @@
+package com.javaweb.geo.domain;
+
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.javaweb.common.annotation.Excel;
+import com.javaweb.common.core.domain.BaseEntity;
+
+/**
+ * 椤圭洰浜哄憳瀵硅薄 js_project_person
+ * 
+ * @author cxy
+ * @date 2024-05-16
+ */
+public class ProjectPerson extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** id */
+    private String ids;
+
+    /** 椤圭洰id */
+    private String projectId;
+
+    /** 閽诲瓟id */
+    private String holeId;
+
+    /** 浜哄憳鍚嶇О */
+    @Excel(name = "浜哄憳鍚嶇О")
+    private String name;
+
+    /** 绫诲瀷 */
+    @Excel(name = "绫诲瀷")
+    private String type;
+
+    /** 鎵嬫満鍙� */
+    @Excel(name = "鎵嬫満鍙�")
+    private String phone;
+
+    /** 鍦板潃 */
+    @Excel(name = "鍦板潃")
+    private String address;
+
+    /** 鑱岃矗 */
+    @Excel(name = "鑱岃矗")
+    private String responsibility;
+
+    /** 鐘舵�� */
+    private String status;
+
+    /** 鏄惁鍒犻櫎锛�0 鏈垹闄� 1鍒犻櫎锛� */
+    private String isDeleted;
+
+    public void setIds(String ids) 
+    {
+        this.ids = ids;
+    }
+
+    public String getIds() 
+    {
+        return ids;
+    }
+    public void setProjectId(String projectId) 
+    {
+        this.projectId = projectId;
+    }
+
+    public String getProjectId() 
+    {
+        return projectId;
+    }
+    public void setHoleId(String holeId) 
+    {
+        this.holeId = holeId;
+    }
+
+    public String getHoleId() 
+    {
+        return holeId;
+    }
+    public void setName(String name) 
+    {
+        this.name = name;
+    }
+
+    public String getName() 
+    {
+        return name;
+    }
+    public void setType(String type) 
+    {
+        this.type = type;
+    }
+
+    public String getType() 
+    {
+        return type;
+    }
+    public void setPhone(String phone) 
+    {
+        this.phone = phone;
+    }
+
+    public String getPhone() 
+    {
+        return phone;
+    }
+    public void setAddress(String address) 
+    {
+        this.address = address;
+    }
+
+    public String getAddress() 
+    {
+        return address;
+    }
+    public void setResponsibility(String responsibility) 
+    {
+        this.responsibility = responsibility;
+    }
+
+    public String getResponsibility() 
+    {
+        return responsibility;
+    }
+    public void setStatus(String status) 
+    {
+        this.status = status;
+    }
+
+    public String getStatus() 
+    {
+        return status;
+    }
+    public void setIsDeleted(String isDeleted) 
+    {
+        this.isDeleted = isDeleted;
+    }
+
+    public String getIsDeleted() 
+    {
+        return isDeleted;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("ids", getIds())
+            .append("projectId", getProjectId())
+            .append("holeId", getHoleId())
+            .append("name", getName())
+            .append("type", getType())
+            .append("phone", getPhone())
+            .append("address", getAddress())
+            .append("responsibility", getResponsibility())
+            .append("status", getStatus())
+            .append("isDeleted", getIsDeleted())
+            .append("createBy", getCreateBy())
+            .append("createTime", getCreateTime())
+            .append("updateBy", getUpdateBy())
+            .append("updateTime", getUpdateTime())
+            .append("remark", getRemark())
+            .toString();
+    }
+}

--
Gitblit v1.9.1