service-community/src/main/java/com/java110/community/listener/room/AbstractRoomBusinessServiceDataFlowListener.java
@@ -19,8 +19,8 @@
 * Created by wuxw on 2018/7/4.
 */
public abstract class AbstractRoomBusinessServiceDataFlowListener extends AbstractBusinessServiceDataFlowListener {
    private static Logger logger = LoggerFactory.getLogger(AbstractRoomBusinessServiceDataFlowListener.class);
    private static Logger logger = LoggerFactory.getLogger(AbstractRoomBusinessServiceDataFlowListener.class);
    /**
     * 获取 DAO工具类
@@ -54,6 +54,8 @@
        businessRoomInfo.put("roomSubType", businessRoomInfo.get("room_sub_type"));
        businessRoomInfo.put("roomRent", businessRoomInfo.get("room_rent"));
        businessRoomInfo.put("roomArea", businessRoomInfo.get("room_area"));
        businessRoomInfo.put("startTime", businessRoomInfo.get("start_time"));
        businessRoomInfo.put("endTime", businessRoomInfo.get("end_time"));
        businessRoomInfo.remove("bId");
        businessRoomInfo.put("statusCd", statusCd);
    }
@@ -95,6 +97,8 @@
        currentRoomInfo.put("roomSubType", currentRoomInfo.get("room_sub_type"));
        currentRoomInfo.put("roomRent", currentRoomInfo.get("room_rent"));
        currentRoomInfo.put("roomArea", currentRoomInfo.get("room_area"));
        currentRoomInfo.put("startTime", currentRoomInfo.get("start_time"));
        currentRoomInfo.put("endTime", currentRoomInfo.get("end_time"));
        currentRoomInfo.put("operate", StatusConstant.OPERATE_DEL);
        getRoomServiceDaoImpl().saveBusinessRoomInfo(currentRoomInfo);