傅行帆 4 lat temu
rodzic
commit
3294135c28

+ 7
- 0
src/main/java/com/yunzhi/marketing/entity/TaBuilding.java Wyświetl plik

@@ -358,6 +358,13 @@ public class TaBuilding implements Serializable {
358 358
      */
359 359
     private String institutionId;
360 360
 
361
+    /** 供水 */
362
+    private String waterSupply ;
363
+    /** 供电 */
364
+    private String powerSupply ;
365
+    /** 供暖 */
366
+    private String heatingSupply ;
367
+
361 368
     /**
362 369
      * 项目亮点封面
363 370
      */

+ 0
- 5
src/main/java/com/yunzhi/marketing/entity/TaPerson.java Wyświetl plik

@@ -194,11 +194,6 @@ public class TaPerson implements Serializable {
194 194
      */
195 195
     private String buildingId;
196 196
 
197
-    /**
198
-     * 组织结构id
199
-     */
200
-    private String institutionId;
201
-
202 197
     /**
203 198
      * 授权手机号时间
204 199
      */

+ 1
- 1
src/main/resources/application-dev.yml Wyświetl plik

@@ -1,5 +1,5 @@
1 1
 server:
2
-  port: 9091
2
+  port: 8088
3 3
 spring:
4 4
   application:
5 5
     name: marketing-cloud

+ 0
- 3
src/main/resources/mapper/TaUserMapper.xml Wyświetl plik

@@ -83,9 +83,6 @@
83 83
             <if test="taUser.isConsultant != null">
84 84
                 and t.is_consultant = #{taUser.isConsultant}
85 85
             </if>
86
-            <if test="taUser.institutionCode != null and taUser.institutionCode != ''">
87
-                and t.institution_code like CONCAT('%', #{taUser.institutionCode})
88
-            </if>
89 86
             <if test="taUser.miniStatus == 0">
90 87
                 and d.person_id is null
91 88
             </if>