Browse Source

优化代码

wuxw 3 years ago
parent
commit
e894d56616

+ 9 - 0
java110-bean/src/main/java/com/java110/dto/communitySpace/CommunitySpaceDto.java

@@ -27,6 +27,7 @@ public class CommunitySpaceDto extends PageDto implements Serializable {
     private String communityId;
     private String communityId;
     private String feeMoney;
     private String feeMoney;
 
 
+    private String venueId;
 
 
     private Date createTime;
     private Date createTime;
 
 
@@ -131,4 +132,12 @@ public class CommunitySpaceDto extends PageDto implements Serializable {
     public void setOpenTimes(List<CommunitySpaceOpenTimeDto> openTimes) {
     public void setOpenTimes(List<CommunitySpaceOpenTimeDto> openTimes) {
         this.openTimes = openTimes;
         this.openTimes = openTimes;
     }
     }
+
+    public String getVenueId() {
+        return venueId;
+    }
+
+    public void setVenueId(String venueId) {
+        this.venueId = venueId;
+    }
 }
 }

+ 57 - 29
java110-bean/src/main/java/com/java110/po/communitySpace/CommunitySpacePo.java

@@ -17,6 +17,7 @@ package com.java110.po.communitySpace;
 
 
 import java.io.Serializable;
 import java.io.Serializable;
 import java.util.Date;
 import java.util.Date;
+
 /**
 /**
  * 类表述: Po 数据模型实体对象 基本保持与数据库模型一直 用于 增加修改删除 等时的数据载体
  * 类表述: Po 数据模型实体对象 基本保持与数据库模型一直 用于 增加修改删除 等时的数据载体
  * add by 吴学文 at 2022-09-30 10:29:06 mail: 928255095@qq.com
  * add by 吴学文 at 2022-09-30 10:29:06 mail: 928255095@qq.com
@@ -28,76 +29,103 @@ import java.util.Date;
 public class CommunitySpacePo implements Serializable {
 public class CommunitySpacePo implements Serializable {
 
 
     private String adminName;
     private String adminName;
-private String spaceId;
-private String name;
-private String startTime;
-private String tel;
-private String statusCd = "0";
-private String endTime;
-private String state;
-private String communityId;
-private String feeMoney;
-public String getAdminName() {
+    private String spaceId;
+    private String name;
+    private String startTime;
+    private String tel;
+    private String statusCd = "0";
+    private String endTime;
+    private String state;
+    private String communityId;
+    private String feeMoney;
+    private String venueId;
+
+    public String getAdminName() {
         return adminName;
         return adminName;
     }
     }
-public void setAdminName(String adminName) {
+
+    public void setAdminName(String adminName) {
         this.adminName = adminName;
         this.adminName = adminName;
     }
     }
-public String getSpaceId() {
+
+    public String getSpaceId() {
         return spaceId;
         return spaceId;
     }
     }
-public void setSpaceId(String spaceId) {
+
+    public void setSpaceId(String spaceId) {
         this.spaceId = spaceId;
         this.spaceId = spaceId;
     }
     }
-public String getName() {
+
+    public String getName() {
         return name;
         return name;
     }
     }
-public void setName(String name) {
+
+    public void setName(String name) {
         this.name = name;
         this.name = name;
     }
     }
-public String getStartTime() {
+
+    public String getStartTime() {
         return startTime;
         return startTime;
     }
     }
-public void setStartTime(String startTime) {
+
+    public void setStartTime(String startTime) {
         this.startTime = startTime;
         this.startTime = startTime;
     }
     }
-public String getTel() {
+
+    public String getTel() {
         return tel;
         return tel;
     }
     }
-public void setTel(String tel) {
+
+    public void setTel(String tel) {
         this.tel = tel;
         this.tel = tel;
     }
     }
-public String getStatusCd() {
+
+    public String getStatusCd() {
         return statusCd;
         return statusCd;
     }
     }
-public void setStatusCd(String statusCd) {
+
+    public void setStatusCd(String statusCd) {
         this.statusCd = statusCd;
         this.statusCd = statusCd;
     }
     }
-public String getEndTime() {
+
+    public String getEndTime() {
         return endTime;
         return endTime;
     }
     }
-public void setEndTime(String endTime) {
+
+    public void setEndTime(String endTime) {
         this.endTime = endTime;
         this.endTime = endTime;
     }
     }
-public String getState() {
+
+    public String getState() {
         return state;
         return state;
     }
     }
-public void setState(String state) {
+
+    public void setState(String state) {
         this.state = state;
         this.state = state;
     }
     }
-public String getCommunityId() {
+
+    public String getCommunityId() {
         return communityId;
         return communityId;
     }
     }
-public void setCommunityId(String communityId) {
+
+    public void setCommunityId(String communityId) {
         this.communityId = communityId;
         this.communityId = communityId;
     }
     }
-public String getFeeMoney() {
+
+    public String getFeeMoney() {
         return feeMoney;
         return feeMoney;
     }
     }
-public void setFeeMoney(String feeMoney) {
+
+    public void setFeeMoney(String feeMoney) {
         this.feeMoney = feeMoney;
         this.feeMoney = feeMoney;
     }
     }
 
 
 
 
+    public String getVenueId() {
+        return venueId;
+    }
 
 
+    public void setVenueId(String venueId) {
+        this.venueId = venueId;
+    }
 }
 }

+ 120 - 113
java110-db/src/main/resources/mapper/community/CommunitySpaceV1ServiceDaoImplMapper.xml

@@ -5,138 +5,145 @@
 <mapper namespace="communitySpaceV1ServiceDaoImpl">
 <mapper namespace="communitySpaceV1ServiceDaoImpl">
 
 
 
 
-
-
-
     <!-- 保存小区场地信息 add by wuxw 2018-07-03 -->
     <!-- 保存小区场地信息 add by wuxw 2018-07-03 -->
     <insert id="saveCommunitySpaceInfo" parameterType="Map">
     <insert id="saveCommunitySpaceInfo" parameterType="Map">
         insert into community_space(
         insert into community_space(
-admin_name,space_id,name,start_time,tel,end_time,state,community_id,fee_money
-) values (
-#{adminName},#{spaceId},#{name},#{startTime},#{tel},#{endTime},#{state},#{communityId},#{feeMoney}
-)
+        admin_name,space_id,name,start_time,tel,end_time,state,community_id,fee_money,venue_id
+        ) values (
+        #{adminName},#{spaceId},#{name},#{startTime},#{tel},#{endTime},#{state},#{communityId},#{feeMoney},#{venueId}
+        )
     </insert>
     </insert>
 
 
 
 
-
     <!-- 查询小区场地信息 add by wuxw 2018-07-03 -->
     <!-- 查询小区场地信息 add by wuxw 2018-07-03 -->
     <select id="getCommunitySpaceInfo" parameterType="Map" resultType="Map">
     <select id="getCommunitySpaceInfo" parameterType="Map" resultType="Map">
-        select  t.admin_name,t.admin_name adminName,t.space_id,t.space_id spaceId,t.name,t.start_time,t.start_time startTime,t.tel,t.status_cd,t.status_cd statusCd,t.end_time,t.end_time endTime,t.state,t.community_id,t.community_id communityId,t.fee_money,t.fee_money feeMoney 
-from community_space t 
-where 1 =1 
-<if test="adminName !=null and adminName != ''">
-   and t.admin_name= #{adminName}
-</if> 
-<if test="spaceId !=null and spaceId != ''">
-   and t.space_id= #{spaceId}
-</if> 
-<if test="name !=null and name != ''">
-   and t.name= #{name}
-</if> 
-<if test="startTime !=null and startTime != ''">
-   and t.start_time= #{startTime}
-</if> 
-<if test="tel !=null and tel != ''">
-   and t.tel= #{tel}
-</if> 
-<if test="statusCd !=null and statusCd != ''">
-   and t.status_cd= #{statusCd}
-</if> 
-<if test="endTime !=null and endTime != ''">
-   and t.end_time= #{endTime}
-</if> 
-<if test="state !=null and state != ''">
-   and t.state= #{state}
-</if> 
-<if test="communityId !=null and communityId != ''">
-   and t.community_id= #{communityId}
-</if> 
-<if test="feeMoney !=null and feeMoney != ''">
-   and t.fee_money= #{feeMoney}
-</if> 
-order by t.create_time desc
-<if test="page != -1 and page != null ">
-   limit #{page}, #{row}
-</if> 
+        select t.admin_name,t.admin_name adminName,t.space_id,t.space_id spaceId,t.name,t.start_time,t.start_time
+        startTime,t.tel,t.status_cd,t.status_cd statusCd,t.end_time,t.end_time
+        endTime,t.state,t.community_id,t.community_id communityId,t.fee_money,t.fee_money feeMoney,t.venue_id venueId
+        from community_space t
+        where 1 =1
+        <if test="adminName !=null and adminName != ''">
+            and t.admin_name= #{adminName}
+        </if>
+        <if test="spaceId !=null and spaceId != ''">
+            and t.space_id= #{spaceId}
+        </if>
+        <if test="venueId !=null and venueId != ''">
+            and t.venue_id= #{venueId}
+        </if>
+
+        <if test="name !=null and name != ''">
+            and t.name= #{name}
+        </if>
+        <if test="startTime !=null and startTime != ''">
+            and t.start_time= #{startTime}
+        </if>
+        <if test="tel !=null and tel != ''">
+            and t.tel= #{tel}
+        </if>
+        <if test="statusCd !=null and statusCd != ''">
+            and t.status_cd= #{statusCd}
+        </if>
+        <if test="endTime !=null and endTime != ''">
+            and t.end_time= #{endTime}
+        </if>
+        <if test="state !=null and state != ''">
+            and t.state= #{state}
+        </if>
+        <if test="communityId !=null and communityId != ''">
+            and t.community_id= #{communityId}
+        </if>
+        <if test="feeMoney !=null and feeMoney != ''">
+            and t.fee_money= #{feeMoney}
+        </if>
+        order by t.create_time desc
+        <if test="page != -1 and page != null ">
+            limit #{page}, #{row}
+        </if>
 
 
     </select>
     </select>
 
 
 
 
-
-
     <!-- 修改小区场地信息 add by wuxw 2018-07-03 -->
     <!-- 修改小区场地信息 add by wuxw 2018-07-03 -->
     <update id="updateCommunitySpaceInfo" parameterType="Map">
     <update id="updateCommunitySpaceInfo" parameterType="Map">
-        update  community_space t set t.status_cd = #{statusCd}
-<if test="newBId != null and newBId != ''">
-,t.b_id = #{newBId}
-</if> 
-<if test="adminName !=null and adminName != ''">
-, t.admin_name= #{adminName}
-</if> 
-<if test="name !=null and name != ''">
-, t.name= #{name}
-</if> 
-<if test="startTime !=null and startTime != ''">
-, t.start_time= #{startTime}
-</if> 
-<if test="tel !=null and tel != ''">
-, t.tel= #{tel}
-</if> 
-<if test="endTime !=null and endTime != ''">
-, t.end_time= #{endTime}
-</if> 
-<if test="state !=null and state != ''">
-, t.state= #{state}
-</if> 
-<if test="communityId !=null and communityId != ''">
-, t.community_id= #{communityId}
-</if> 
-<if test="feeMoney !=null and feeMoney != ''">
-, t.fee_money= #{feeMoney}
-</if> 
- where 1=1 <if test="spaceId !=null and spaceId != ''">
-and t.space_id= #{spaceId}
-</if> 
+        update community_space t set t.status_cd = #{statusCd}
+        <if test="newBId != null and newBId != ''">
+            ,t.b_id = #{newBId}
+        </if>
+        <if test="adminName !=null and adminName != ''">
+            , t.admin_name= #{adminName}
+        </if>
+        <if test="name !=null and name != ''">
+            , t.name= #{name}
+        </if>
+        <if test="startTime !=null and startTime != ''">
+            , t.start_time= #{startTime}
+        </if>
+        <if test="tel !=null and tel != ''">
+            , t.tel= #{tel}
+        </if>
+        <if test="endTime !=null and endTime != ''">
+            , t.end_time= #{endTime}
+        </if>
+        <if test="state !=null and state != ''">
+            , t.state= #{state}
+        </if>
+        <if test="communityId !=null and communityId != ''">
+            , t.community_id= #{communityId}
+        </if>
+        <if test="feeMoney !=null and feeMoney != ''">
+            , t.fee_money= #{feeMoney}
+        </if>
+        where 1=1
+        <if test="spaceId !=null and spaceId != ''">
+            and t.space_id= #{spaceId}
+        </if>
+        <if test="venueId !=null and venueId != ''">
+            and t.venue_id= #{venueId}
+        </if>
 
 
     </update>
     </update>
 
 
     <!-- 查询小区场地数量 add by wuxw 2018-07-03 -->
     <!-- 查询小区场地数量 add by wuxw 2018-07-03 -->
-     <select id="queryCommunitySpacesCount" parameterType="Map" resultType="Map">
-        select  count(1) count 
-from community_space t 
-where 1 =1 
-<if test="adminName !=null and adminName != ''">
-   and t.admin_name= #{adminName}
-</if> 
-<if test="spaceId !=null and spaceId != ''">
-   and t.space_id= #{spaceId}
-</if> 
-<if test="name !=null and name != ''">
-   and t.name= #{name}
-</if> 
-<if test="startTime !=null and startTime != ''">
-   and t.start_time= #{startTime}
-</if> 
-<if test="tel !=null and tel != ''">
-   and t.tel= #{tel}
-</if> 
-<if test="statusCd !=null and statusCd != ''">
-   and t.status_cd= #{statusCd}
-</if> 
-<if test="endTime !=null and endTime != ''">
-   and t.end_time= #{endTime}
-</if> 
-<if test="state !=null and state != ''">
-   and t.state= #{state}
-</if> 
-<if test="communityId !=null and communityId != ''">
-   and t.community_id= #{communityId}
-</if> 
-<if test="feeMoney !=null and feeMoney != ''">
-   and t.fee_money= #{feeMoney}
-</if> 
+    <select id="queryCommunitySpacesCount" parameterType="Map" resultType="Map">
+        select count(1) count
+        from community_space t
+        where 1 =1
+        <if test="adminName !=null and adminName != ''">
+            and t.admin_name= #{adminName}
+        </if>
+        <if test="spaceId !=null and spaceId != ''">
+            and t.space_id= #{spaceId}
+        </if>
+        <if test="venueId !=null and venueId != ''">
+            and t.venue_id= #{venueId}
+        </if>
+        <if test="name !=null and name != ''">
+            and t.name= #{name}
+        </if>
+        <if test="startTime !=null and startTime != ''">
+            and t.start_time= #{startTime}
+        </if>
+        <if test="tel !=null and tel != ''">
+            and t.tel= #{tel}
+        </if>
+        <if test="statusCd !=null and statusCd != ''">
+            and t.status_cd= #{statusCd}
+        </if>
+        <if test="endTime !=null and endTime != ''">
+            and t.end_time= #{endTime}
+        </if>
+        <if test="state !=null and state != ''">
+            and t.state= #{state}
+        </if>
+        <if test="communityId !=null and communityId != ''">
+            and t.community_id= #{communityId}
+        </if>
+        <if test="feeMoney !=null and feeMoney != ''">
+            and t.fee_money= #{feeMoney}
+        </if>
 
 
 
 
-     </select>
+    </select>
 
 
 </mapper>
 </mapper>