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

import android.os.Parcel;
import android.os.Parcelable;

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

        /* JADX WARN: Can't rename method to resolve collision */
        @Override // android.os.Parcelable.Creator
        public CaWorkTimeInfo[] newArray(int i2) {
            return new CaWorkTimeInfo[i2];
        }
    };
    public short sStartHour;
    public short sWorkTimeState;
    public short syEndHour;
    public short syEndMin;
    public short syEndSec;
    public short syStartMin;
    public short syStartSec;

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

    @Override // android.os.Parcelable
    public void writeToParcel(Parcel parcel, int i2) {
        parcel.writeInt(this.sWorkTimeState);
        parcel.writeInt(this.sStartHour);
        parcel.writeInt(this.syStartMin);
        parcel.writeInt(this.syStartSec);
        parcel.writeInt(this.syEndHour);
        parcel.writeInt(this.syEndMin);
        parcel.writeInt(this.syEndSec);
    }

    public CaWorkTimeInfo() {
        this.sWorkTimeState = (short) -1;
        this.sStartHour = (short) 0;
        this.syStartMin = (short) 0;
        this.syStartSec = (short) 0;
        this.syEndHour = (short) 0;
        this.syEndMin = (short) 0;
        this.syEndSec = (short) 0;
    }

    private CaWorkTimeInfo(Parcel parcel) {
        this.sWorkTimeState = (short) parcel.readInt();
        this.sStartHour = (short) parcel.readInt();
        this.syStartMin = (short) parcel.readInt();
        this.syStartSec = (short) parcel.readInt();
        this.syEndHour = (short) parcel.readInt();
        this.syEndMin = (short) parcel.readInt();
        this.syEndSec = (short) parcel.readInt();
    }
}
