QrCodeShowPresent.java 833 Bytes
package com.xgimi.gimicinema.presenter;

import android.util.Log;

import com.xgimi.gimicinema.model.IRoomInfoModel;
import com.xgimi.gimicinema.model.RoomInfoModelImpl;

/**
 * Created by wugian on 2017/5/2
 */

public class QrCodeShowPresent {
    IRoomInfoModel roomInfoModel;

    public QrCodeShowPresent() {
        roomInfoModel = new RoomInfoModelImpl();
    }

    public void reportSleepStatus(String orderSn, String roomSn) {
        roomInfoModel.reportSleepSysStatus(orderSn, roomSn, new RoomInfoModelImpl.SleepSysStatusListener() {
            @Override
            public void onSleepSuccess() {
                Log.d("room-info", "onSleepSuccess");
            }

            @Override
            public void onSleepFailure() {
                Log.d("room-info", "onSleepFailure");
            }
        });
    }
}