张延森 před 4 roky
rodič
revize
d896afbb65

+ 1
- 1
pom.xml Zobrazit soubor

@@ -10,7 +10,7 @@
10 10
 	</parent>
11 11
 	<groupId>com.huiju</groupId>
12 12
 	<artifactId>xiangsong</artifactId>
13
-	<version>1.0.7</version>
13
+	<version>1.0.9</version>
14 14
 	<name>xiangsong</name>
15 15
 	<description>香颂</description>
16 16
 

+ 1
- 1
src/main/java/com/huiju/estateagents/property/dao/ToCommunitiesMapper.java Zobrazit soubor

@@ -23,7 +23,7 @@ public interface ToCommunitiesMapper extends BaseMapper<ToCommunities> {
23 23
      * @param phone
24 24
      * @return
25 25
      */
26
-    @Select("SELECT tc.* FROM tp_user tu LEFT JOIN to_communities tc ON tu.org_id = tc.id WHERE tu.login_name = #{phone}")
26
+    @Select("SELECT tc.* FROM ta_user tu LEFT JOIN to_communities tc ON tu.org_id = tc.id WHERE tu.login_name = #{phone}")
27 27
     List<ToCommunities> selectUserById(String phone);
28 28
 
29 29
 }

+ 5
- 5
src/main/java/com/huiju/estateagents/property/service/impl/BillInvoiceServiceImpl.java Zobrazit soubor

@@ -263,15 +263,15 @@ public class BillInvoiceServiceImpl extends ServiceImpl<BillInvoiceMapper, BillI
263 263
         // 收费项ID
264 264
         Integer billId = jsonObject.getInteger("billId");
265 265
         // 区/期
266
-        Integer phase = jsonObject.getInteger("phase");
266
+        Integer phase = jsonObject.getInteger("phaseId");
267 267
         // 栋
268
-        Integer building = jsonObject.getInteger("building");
268
+        Integer building = jsonObject.getInteger("buildingId");
269 269
         // 单元
270
-        Integer unit = jsonObject.getInteger("unit");
270
+        Integer unit = jsonObject.getInteger("unitId");
271 271
         // 楼层
272
-        Integer level = jsonObject.getInteger("level");
272
+        Integer level = jsonObject.getInteger("levelId");
273 273
         // 户号
274
-        Integer roomNo = jsonObject.getInteger("roomNo");
274
+        Integer roomNo = jsonObject.getInteger("roomNoId");
275 275
         // 催缴日期
276 276
         // Date worthOf = jsonObject.getDate("worthOf");
277 277
         // 收费单说明

+ 4
- 4
src/main/resources/mapper/property/BillInvoiceMapper.xml Zobrazit soubor

@@ -16,8 +16,8 @@
16 16
             tpro.unit_name as unit,
17 17
             tpro.name as roomNo,
18 18
             tpbo.order_bumber as billStatement,
19
-            (SELECT user_name from tp_user tu WHERE tu.id = tpi.create_user) as createUserName,
20
-            (SELECT user_name from tp_user tu WHERE tu.id = tpi.update_user) as updateUserName
19
+            (SELECT user_name from ta_user tu WHERE tu.user_id = tpi.create_user) as createUserName,
20
+            (SELECT user_name from ta_user tu WHERE tu.user_id = tpi.update_user) as updateUserName
21 21
         FROM
22 22
           tp_bill_invoice tpi
23 23
         LEFT JOIN tp_room_no tpro ON tpi.room_no_id = tpro.id
@@ -96,8 +96,8 @@
96 96
         tpro.unit_name as unit,
97 97
         tpro.name as roomNo,
98 98
         tpbo.order_bumber as billStatement,
99
-        (SELECT user_name from tp_user tu WHERE tu.id = tpi.create_user) as createUserName,
100
-        (SELECT user_name from tp_user tu WHERE tu.id = tpi.update_user) as updateUserName
99
+        (SELECT user_name from ta_user tu WHERE tu.user_id = tpi.create_user) as createUserName,
100
+        (SELECT user_name from ta_user tu WHERE tu.user_id = tpi.update_user) as updateUserName
101 101
         FROM
102 102
         tp_bill_invoice tpi
103 103
         LEFT JOIN tp_room_no tpro ON tpi.room_no_id = tpro.id

+ 2
- 2
src/main/resources/mapper/property/SysRoleMapper.xml Zobrazit soubor

@@ -15,8 +15,8 @@
15 15
             uu.user_name as updateName
16 16
         FROM
17 17
             tp_sys_role t
18
-        LEFT JOIN tp_user u ON t.create_user = u.id AND u.org_id = #{role.orgId}
19
-        LEFT JOIN tp_user uu ON t.update_user = uu.id AND uu.org_id = #{role.orgId}
18
+        LEFT JOIN ta_user u ON t.create_user = u.user_id AND u.org_id = #{role.orgId}
19
+        LEFT JOIN ta_user uu ON t.update_user = uu.user_id AND uu.org_id = #{role.orgId}
20 20
         where
21 21
           1 = 1
22 22
         AND t.org_id = #{role.orgId}

+ 1
- 1
src/main/resources/mapper/property/TpRentalHouseMapper.xml Zobrazit soubor

@@ -15,7 +15,7 @@
15 15
             u.user_name
16 16
         FROM
17 17
             tp_rental_house t
18
-        LEFT JOIN tp_user u ON t.update_user = u.id
18
+        LEFT JOIN ta_user u ON t.update_user = u.user_id
19 19
         where 1=1
20 20
         and t.org_id = #{tpRentalHouse.orgId}
21 21
         <if test="tpRentalHouse.id != null and tpRentalHouse.id != ''">

+ 1
- 1
src/main/resources/mapper/property/TpShopMapper.xml Zobrazit soubor

@@ -18,7 +18,7 @@
18 18
             tp_shop t
19 19
             LEFT JOIN tp_shop_img i ON t.id = i.shop_id AND i.img_type = 1
20 20
             LEFT JOIN  tp_shop_type s on t.shop_type_id = s.id
21
-            LEFT JOIN tp_user u on t.update_user = u.id
21
+            LEFT JOIN ta_user u on t.update_user = u.user_id
22 22
         where 1=1
23 23
         and t.org_id = #{tpShop.orgId}
24 24
         <if test="tpShop.id != null and tpShop.id != ''">