package com.mstar.android.tvapi.dtv.vo;

import android.os.Parcel;
import android.os.Parcelable;
import java.io.Serializable;

/* JADX INFO: loaded from: classes.dex */
public class CaIPPVPrice implements Serializable, Parcelable {
    public static final Parcelable.Creator<CaIPPVPrice> CREATOR = new Parcelable.Creator<CaIPPVPrice>() { // from class: com.mstar.android.tvapi.dtv.vo.CaIPPVPrice.1
        /* JADX WARN: Can't rename method to resolve collision */
        @Override // android.os.Parcelable.Creator
        public CaIPPVPrice createFromParcel(Parcel parcel) {
            return new CaIPPVPrice(parcel);
        }

        /* JADX WARN: Can't rename method to resolve collision */
        @Override // android.os.Parcelable.Creator
        public CaIPPVPrice[] newArray(int i2) {
            return new CaIPPVPrice[i2];
        }
    };
    private static final long serialVersionUID = -235691783434420L;
    public short m_byPriceCode;
    public short m_wPrice;

    @Override // android.os.Parcelable
    public int describeContents() {
        return 0;
    }

    public short getM_byPriceCode() {
        return this.m_byPriceCode;
    }

    public short getM_wPrice() {
        return this.m_wPrice;
    }

    public void setM_byPriceCode(short s2) {
        this.m_byPriceCode = s2;
    }

    public void setM_wPrice(short s2) {
        this.m_wPrice = s2;
    }

    @Override // android.os.Parcelable
    public void writeToParcel(Parcel parcel, int i2) {
        parcel.writeInt(this.m_wPrice);
        parcel.writeInt(this.m_byPriceCode);
    }

    public CaIPPVPrice() {
        this.m_wPrice = (short) 0;
        this.m_byPriceCode = (short) 0;
    }

    private CaIPPVPrice(Parcel parcel) {
        this.m_wPrice = (short) parcel.readInt();
        this.m_byPriceCode = (short) parcel.readInt();
    }
}
