Przeglądaj źródła

优化采购提示消息不准确问题

wuxw 1 rok temu
rodzic
commit
3c6bfffc6a

+ 7 - 7
java110-db/src/main/resources/mapper/community/RoomServiceDaoImplMapper.xml

@@ -787,14 +787,14 @@
         <if test="communityId !=null and communityId != ''">
             and t.community_id= #{communityId}
         </if>
-        <!--order by f.seq,u.unit_num,CONVERT(t.layer,SIGNED),CONVERT(t.room_num,SIGNED) asc-->
-        order by t.create_time desc
-        <if test="page != -1 and page != null">
-            limit #{page},#{row}
-        </if>
-    </select>
+       order by f.seq,u.unit_num,CONVERT(t.layer,SIGNED),CONVERT(t.room_num,SIGNED) asc
+    <!-- order by t.create_time desc-->
+    <if test="page != -1 and page != null">
+        limit #{page},#{row}
+    </if>
+</select>
 
-    <!-- 根据业主查询房屋信息 -->
+<!-- 根据业主查询房屋信息 -->
     <select id="getRoomInfoByOwner" parameterType="Map" resultType="Map">
         SELECT
         t.fee_coefficient,t.fee_coefficient feeCoefficient,t.section,t.status_cd,t.status_cd

+ 1 - 0
service-fee/src/main/java/com/java110/fee/cmd/fee/PayFeeCmd.java

@@ -194,6 +194,7 @@ public class PayFeeCmd extends Cmd {
     @Override
     @Java110Transactional
     public void doCmd(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject paramObj) throws CmdException {
+
         logger.debug("paramObj : {}", paramObj);
         String payOrderId = paramObj.getString("payOrderId");