From f9d8ff7173608dd073c15dd362267245d3bd063e Mon Sep 17 00:00:00 2001
From: suerwei <18810552194@163.com>
Date: 星期二, 21 五月 2024 14:48:19 +0800
Subject: [PATCH] 绑定holeCode
---
javaweb-plus/javaweb-cms/src/main/java/com/javaweb/geo/domain/ProjectPerson.java | 250 +++++++++++++++++++++++++++++++++++--------------
1 files changed, 176 insertions(+), 74 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
index 2d694c7..171201f 100644
--- 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
@@ -5,160 +5,262 @@
import com.javaweb.common.annotation.Excel;
import com.javaweb.common.core.domain.BaseEntity;
+import java.util.Date;
+
/**
* 椤圭洰浜哄憳瀵硅薄 js_project_person
- *
+ *
* @author cxy
* @date 2024-05-16
*/
-public class ProjectPerson extends BaseEntity
-{
+public class ProjectPerson extends BaseEntity {
private static final long serialVersionUID = 1L;
- /** id */
+ /**
+ * id
+ */
private String ids;
- /** 椤圭洰id */
+ /**
+ * 椤圭洰id
+ */
private String projectId;
- /** 閽诲瓟id */
+ /**
+ * 閽诲瓟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 idCard;
- /** 鑱岃矗 */
+ /**
+ * 浜哄憳鍒嗙粍
+ */
+ @Excel(name = "浜哄憳鍒嗙粍")
+ private String personGroup;
+
+ /**
+ * 鑱岃矗
+ */
@Excel(name = "鑱岃矗")
private String responsibility;
- /** 鐘舵�� */
+
+ /**
+ * 杩涘満鏃堕棿
+ */
+ @Excel(name = "杩涘満鏃堕棿", width = 30, dateFormat = "yyyy-MM-dd")
+ private Date inSiteTime;
+
+ /**
+ * 鍑哄満鏃堕棿
+ */
+ @Excel(name = "鍑哄満鏃堕棿", width = 30, dateFormat = "yyyy-MM-dd")
+ private Date outSiteTime;
+
+ /**
+ * 璇佷欢绫诲瀷
+ */
+ @Excel(name = "璇佷欢绫诲瀷")
+ private String documentType;
+
+ /**
+ * 璇佷欢缂栧彿
+ */
+ @Excel(name = "璇佷欢缂栧彿")
+ private String documentCode;
+
+ /**
+ * 璇佷欢url
+ */
+ @Excel(name = "璇佷欢url")
+ private String documentPath;
+
+ /**
+ * 鐘舵��
+ */
private String status;
- /** 鏄惁鍒犻櫎锛�0 鏈垹闄� 1鍒犻櫎锛� */
+ /**
+ * 鏄惁鍒犻櫎锛�0 鏈垹闄� 1鍒犻櫎锛�
+ */
private String isDeleted;
- public void setIds(String ids)
- {
+ public void setIds(String ids) {
this.ids = ids;
}
- public String getIds()
- {
+ public String getIds() {
return ids;
}
- public void setProjectId(String projectId)
- {
+
+ public void setProjectId(String projectId) {
this.projectId = projectId;
}
- public String getProjectId()
- {
+ public String getProjectId() {
return projectId;
}
- public void setHoleId(String holeId)
- {
+
+ public void setHoleId(String holeId) {
this.holeId = holeId;
}
- public String getHoleId()
- {
+ public String getHoleId() {
return holeId;
}
- public void setName(String name)
- {
+
+ public void setName(String name) {
this.name = name;
}
- public String getName()
- {
+ public String getName() {
return name;
}
- public void setType(String type)
- {
+
+ public void setType(String type) {
this.type = type;
}
- public String getType()
- {
+ public String getType() {
return type;
}
- public void setPhone(String phone)
- {
+
+ public void setPhone(String phone) {
this.phone = phone;
}
- public String getPhone()
- {
+ public String getPhone() {
return phone;
}
- public void setAddress(String address)
- {
- this.address = address;
+
+ public String getIdCard() {
+ return idCard;
}
- public String getAddress()
- {
- return address;
+ public void setIdCard(String idCard) {
+ this.idCard = idCard;
}
- public void setResponsibility(String responsibility)
- {
+
+ public String getPersonGroup() {
+ return personGroup;
+ }
+
+ public void setPersonGroup(String personGroup) {
+ this.personGroup = personGroup;
+ }
+
+ public void setResponsibility(String responsibility) {
this.responsibility = responsibility;
}
- public String getResponsibility()
- {
+ public String getResponsibility() {
return responsibility;
}
- public void setStatus(String status)
- {
+
+
+ public Date getInSiteTime() {
+ return inSiteTime;
+ }
+
+ public void setInSiteTime(Date inSiteTime) {
+ this.inSiteTime = inSiteTime;
+ }
+
+ public void setOutSiteTime(Date outSiteTime) {
+ this.outSiteTime = outSiteTime;
+ }
+
+ public Date getOutSiteTime() {
+ return outSiteTime;
+ }
+
+ public void setDocumentType(String documentType) {
+ this.documentType = documentType;
+ }
+
+ public String getDocumentType() {
+ return documentType;
+ }
+
+ public void setDocumentCode(String documentCode) {
+ this.documentCode = documentCode;
+ }
+
+ public String getDocumentCode() {
+ return documentCode;
+ }
+
+ public void setDocumentPath(String documentPath) {
+ this.documentPath = documentPath;
+ }
+
+ public String getDocumentPath() {
+ return documentPath;
+ }
+
+
+ public void setStatus(String status) {
this.status = status;
}
- public String getStatus()
- {
+
+ public String getStatus() {
return status;
}
- public void setIsDeleted(String isDeleted)
- {
+
+ public void setIsDeleted(String isDeleted) {
this.isDeleted = isDeleted;
}
- public String getIsDeleted()
- {
+ 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();
+ 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("responsibility", getResponsibility())
+ .append("inSiteTime", getInSiteTime())
+ .append("outSiteTime", getOutSiteTime())
+ .append("documentType", getDocumentType())
+ .append("documentCode", getDocumentCode())
+ .append("documentPath", getDocumentPath())
+ .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