From 3f47c88e7cb4e53b3637620794420181f47b5a5e Mon Sep 17 00:00:00 2001
From: zmk <496160012@qq.com>
Date: 星期三, 23 十月 2024 16:07:13 +0800
Subject: [PATCH] 提交代码

---
 javaweb-plus/javaweb-cms/src/main/resources/mapper/geo/ProjectPersonMapper.xml |   47 ++++++++++++++++++++++++++++++++++++++++-------
 1 files changed, 40 insertions(+), 7 deletions(-)

diff --git a/javaweb-plus/javaweb-cms/src/main/resources/mapper/geo/ProjectPersonMapper.xml b/javaweb-plus/javaweb-cms/src/main/resources/mapper/geo/ProjectPersonMapper.xml
index 3044abd..11b176d 100644
--- a/javaweb-plus/javaweb-cms/src/main/resources/mapper/geo/ProjectPersonMapper.xml
+++ b/javaweb-plus/javaweb-cms/src/main/resources/mapper/geo/ProjectPersonMapper.xml
@@ -11,8 +11,14 @@
         <result property="name"    column="name"    />
         <result property="type"    column="type"    />
         <result property="phone"    column="phone"    />
-        <result property="address"    column="address"    />
+        <result property="idCard"    column="id_card"    />
+        <result property="personGroup"    column="person_group"    />
         <result property="responsibility"    column="responsibility"    />
+        <result property="inSiteTime"    column="in_site_time"    />
+        <result property="outSiteTime"    column="out_site_time"    />
+        <result property="documentType"    column="document_type"    />
+        <result property="documentCode"    column="document_code"    />
+        <result property="documentPath"    column="document_path"    />
         <result property="status"    column="status"    />
         <result property="isDeleted"    column="is_deleted"    />
         <result property="createBy"    column="create_by"    />
@@ -23,16 +29,25 @@
     </resultMap>
 
     <sql id="selectProjectPersonVo">
-        select ids, project_id, hole_id, name, type, phone, address, responsibility, status, is_deleted, create_by, create_time, update_by, update_time, remark from js_project_person
+        select ids, project_id, hole_id, name, type, phone, id_card , person_group , responsibility, in_site_time, out_site_time, document_type, document_code, document_path,  status, is_deleted, create_by, create_time, update_by, update_time, remark from js_project_person
     </sql>
 
     <select id="selectProjectPersonList" parameterType="ProjectPerson" resultMap="ProjectPersonResult">
         <include refid="selectProjectPersonVo"/>
-        <where>  
+        <where>
+            <if test="projectId != null and projectId != ''"> and project_id = #{projectId}</if>
+            <if test="holeId != null  and holeId != ''"> and hole_id = #{holeId}</if>
             <if test="name != null  and name != ''"> and name like concat('%', #{name}, '%')</if>
             <if test="type != null  and type != ''"> and type = #{type}</if>
             <if test="phone != null  and phone != ''"> and phone = #{phone}</if>
-            <if test="remark != null  and remark != ''"> and remark = #{remark}</if>
+            <if test="idCard != null  and idCard != ''"> and id_card = #{idCard}</if>
+            <if test="personGroup != null  and personGroup != ''"> and person_group = #{personGroup}</if>
+            <if test="responsibility != null  and responsibility != ''"> and responsibility = #{responsibility}</if>
+            <if test="inSiteTime != null "> and in_site_time = #{inSiteTime}</if>
+            <if test="outSiteTime != null "> and out_site_time = #{outSiteTime}</if>
+            <if test="documentType != null  and documentType != ''"> and document_type = #{documentType}</if>
+            <if test="documentCode != null  and documentCode != ''"> and document_code = #{documentCode}</if>
+            <if test="documentPath != null  and documentPath != ''"> and document_path = #{documentPath}</if>
         </where>
     </select>
     
@@ -50,8 +65,14 @@
             <if test="name != null  and name != ''">name,</if>
             <if test="type != null  and type != ''">type,</if>
             <if test="phone != null  and phone != ''">phone,</if>
-            <if test="address != null  and address != ''">address,</if>
+            <if test="idCard != null  and idCard != ''">id_card,</if>
+            <if test="personGroup != null  and personGroup != ''">person_group,</if>
             <if test="responsibility != null  and responsibility != ''">responsibility,</if>
+            <if test="inSiteTime != null ">in_site_time,</if>
+            <if test="outSiteTime != null ">out_site_time,</if>
+            <if test="documentType != null  and documentType != ''">document_type,</if>
+            <if test="documentCode != null  and documentCode != ''">document_code,</if>
+            <if test="documentPath != null  and documentPath != ''">document_path,</if>
             <if test="status != null  and status != ''">status,</if>
             <if test="isDeleted != null  and isDeleted != ''">is_deleted,</if>
             <if test="createBy != null  and createBy != ''">create_by,</if>
@@ -67,8 +88,14 @@
             <if test="name != null  and name != ''">#{name},</if>
             <if test="type != null  and type != ''">#{type},</if>
             <if test="phone != null  and phone != ''">#{phone},</if>
-            <if test="address != null  and address != ''">#{address},</if>
+            <if test="idCard != null and idCard != ''">#{idCard},</if>
+            <if test="personGroup != null  and personGroup != ''">#{personGroup},</if>
             <if test="responsibility != null  and responsibility != ''">#{responsibility},</if>
+            <if test="inSiteTime != null ">#{inSiteTime},</if>
+            <if test="outSiteTime != null ">#{outSiteTime},</if>
+            <if test="documentType != null  and documentType != ''">#{documentType},</if>
+            <if test="documentCode != null  and documentCode != ''">#{documentCode},</if>
+            <if test="documentPath != null  and documentPath != ''">#{documentPath},</if>
             <if test="status != null  and status != ''">#{status},</if>
             <if test="isDeleted != null  and isDeleted != ''">#{isDeleted},</if>
             <if test="createBy != null  and createBy != ''">#{createBy},</if>
@@ -87,8 +114,14 @@
             <if test="name != null  and name != ''">name = #{name},</if>
             <if test="type != null  and type != ''">type = #{type},</if>
             <if test="phone != null  and phone != ''">phone = #{phone},</if>
-            <if test="address != null  and address != ''">address = #{address},</if>
+            <if test="idCard != null  and idCard != ''">id_card = #{idCard},</if>
+            <if test="personGroup != null  and personGroup != ''">person_group = #{personGroup},</if>
             <if test="responsibility != null  and responsibility != ''">responsibility = #{responsibility},</if>
+            <if test="inSiteTime != null ">in_site_time = #{inSiteTime},</if>
+            <if test="outSiteTime != null ">out_site_time = #{outSiteTime},</if>
+            <if test="documentType != null  and documentType != ''">document_type = #{documentType},</if>
+            <if test="documentCode != null  and documentCode != ''">document_code = #{documentCode},</if>
+            <if test="documentPath != null  and documentPath != ''">document_path = #{documentPath},</if>
             <if test="status != null  and status != ''">status = #{status},</if>
             <if test="isDeleted != null  and isDeleted != ''">is_deleted = #{isDeleted},</if>
             <if test="createBy != null  and createBy != ''">create_by = #{createBy},</if>

--
Gitblit v1.9.1