package com.seewo.sdk.model;

/* JADX INFO: loaded from: classes.dex */
public class SDKSelfCheckInfo {
    private int mAndroidSlotState;
    private int mDVDState;
    private int mInternalState;
    private int mPcState;
    private int mPowerState;
    private int mTouchState;

    public SDKSelfCheckInfo() {
    }

    public int getAndroidSlotState() {
        return this.mAndroidSlotState;
    }

    public int getDVDState() {
        return this.mDVDState;
    }

    public int getInternalState() {
        return this.mInternalState;
    }

    public int getPcState() {
        return this.mPcState;
    }

    public int getPowerState() {
        return this.mPowerState;
    }

    public int getTouchState() {
        return this.mTouchState;
    }

    public void setAndroidSlotState(int i2) {
        this.mAndroidSlotState = i2;
    }

    public void setDVDState(int i2) {
        this.mDVDState = i2;
    }

    public void setInternalState(int i2) {
        this.mInternalState = i2;
    }

    public void setPcState(int i2) {
        this.mPcState = i2;
    }

    public void setPowerState(int i2) {
        this.mPowerState = i2;
    }

    public void setTouchState(int i2) {
        this.mTouchState = i2;
    }

    public SDKSelfCheckInfo(byte[] bArr) {
        this.mPowerState = bArr[0];
        this.mPcState = bArr[1];
        this.mAndroidSlotState = bArr[2];
        this.mDVDState = bArr[3];
        this.mInternalState = bArr[4];
        this.mTouchState = bArr[5];
    }
}
