wuxw
2024-08-23 3c6bfffc6a732b54247dbc180740e9f6f912dbc3
优化采购提示消息不准确问题
2个文件已修改
15 ■■■■ 已修改文件
java110-db/src/main/resources/mapper/community/RoomServiceDaoImplMapper.xml 14 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
service-fee/src/main/java/com/java110/fee/cmd/fee/PayFeeCmd.java 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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
service-fee/src/main/java/com/java110/fee/cmd/fee/PayFeeCmd.java
@@ -194,6 +194,7 @@
    @Override
    @Java110Transactional
    public void doCmd(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject paramObj) throws CmdException {
        logger.debug("paramObj : {}", paramObj);
        String payOrderId = paramObj.getString("payOrderId");