First Commit

This commit is contained in:
Administrator
2025-05-12 12:04:42 +08:00
commit 6a5e13974c
1248 changed files with 366157 additions and 0 deletions

View File

@@ -0,0 +1,357 @@
package nano;
import com.google.protobuf.nano.CodedInputByteBufferNano;
import com.google.protobuf.nano.CodedOutputByteBufferNano;
import com.google.protobuf.nano.InternalNano;
import com.google.protobuf.nano.InvalidProtocolBufferNanoException;
import com.google.protobuf.nano.MessageNano;
import com.google.protobuf.nano.WireFormatNano;
import java.io.IOException;
/* compiled from: TbsSdkJava */
public interface BizStatRequest {
/* compiled from: TbsSdkJava */
public static final class BizStat_Request extends MessageNano {
private static volatile BizStat_Request[] _emptyArray;
private int accid_;
private int bitField0_;
private int goodsid_;
private int pos_;
private int req_;
private int resetidx_;
private String token_;
private int userid_;
private int zoneid_;
public BizStat_Request() {
clear();
}
public static BizStat_Request[] emptyArray() {
if (_emptyArray == null) {
synchronized (InternalNano.LAZY_INIT_LOCK) {
try {
if (_emptyArray == null) {
_emptyArray = new BizStat_Request[0];
}
} catch (Throwable th) {
throw th;
}
}
}
return _emptyArray;
}
public static BizStat_Request parseFrom(byte[] bArr) throws InvalidProtocolBufferNanoException {
return (BizStat_Request) MessageNano.mergeFrom(new BizStat_Request(), bArr);
}
public BizStat_Request clear() {
this.bitField0_ = 0;
this.token_ = "";
this.userid_ = 0;
this.accid_ = 0;
this.zoneid_ = 0;
this.goodsid_ = 0;
this.pos_ = 0;
this.req_ = 0;
this.resetidx_ = 0;
this.cachedSize = -1;
return this;
}
public BizStat_Request clearAccid() {
this.accid_ = 0;
this.bitField0_ &= -5;
return this;
}
public BizStat_Request clearGoodsid() {
this.goodsid_ = 0;
this.bitField0_ &= -17;
return this;
}
public BizStat_Request clearPos() {
this.pos_ = 0;
this.bitField0_ &= -33;
return this;
}
public BizStat_Request clearReq() {
this.req_ = 0;
this.bitField0_ &= -65;
return this;
}
public BizStat_Request clearResetidx() {
this.resetidx_ = 0;
this.bitField0_ &= -129;
return this;
}
public BizStat_Request clearToken() {
this.token_ = "";
this.bitField0_ &= -2;
return this;
}
public BizStat_Request clearUserid() {
this.userid_ = 0;
this.bitField0_ &= -3;
return this;
}
public BizStat_Request clearZoneid() {
this.zoneid_ = 0;
this.bitField0_ &= -9;
return this;
}
/* access modifiers changed from: protected */
public int computeSerializedSize() {
int computeSerializedSize = super.computeSerializedSize();
if ((this.bitField0_ & 1) != 0) {
computeSerializedSize += CodedOutputByteBufferNano.computeStringSize(1, this.token_);
}
if ((this.bitField0_ & 2) != 0) {
computeSerializedSize += CodedOutputByteBufferNano.computeUInt32Size(2, this.userid_);
}
if ((this.bitField0_ & 4) != 0) {
computeSerializedSize += CodedOutputByteBufferNano.computeFixed32Size(3, this.accid_);
}
if ((this.bitField0_ & 8) != 0) {
computeSerializedSize += CodedOutputByteBufferNano.computeUInt32Size(4, this.zoneid_);
}
if ((this.bitField0_ & 16) != 0) {
computeSerializedSize += CodedOutputByteBufferNano.computeUInt32Size(5, this.goodsid_);
}
if ((this.bitField0_ & 32) != 0) {
computeSerializedSize += CodedOutputByteBufferNano.computeUInt32Size(6, this.pos_);
}
if ((this.bitField0_ & 64) != 0) {
computeSerializedSize += CodedOutputByteBufferNano.computeUInt32Size(7, this.req_);
}
if ((this.bitField0_ & 128) != 0) {
return computeSerializedSize + CodedOutputByteBufferNano.computeUInt32Size(8, this.resetidx_);
}
return computeSerializedSize;
}
public int getAccid() {
return this.accid_;
}
public int getGoodsid() {
return this.goodsid_;
}
public int getPos() {
return this.pos_;
}
public int getReq() {
return this.req_;
}
public int getResetidx() {
return this.resetidx_;
}
public String getToken() {
return this.token_;
}
public int getUserid() {
return this.userid_;
}
public int getZoneid() {
return this.zoneid_;
}
public boolean hasAccid() {
if ((this.bitField0_ & 4) != 0) {
return true;
}
return false;
}
public boolean hasGoodsid() {
if ((this.bitField0_ & 16) != 0) {
return true;
}
return false;
}
public boolean hasPos() {
if ((this.bitField0_ & 32) != 0) {
return true;
}
return false;
}
public boolean hasReq() {
if ((this.bitField0_ & 64) != 0) {
return true;
}
return false;
}
public boolean hasResetidx() {
if ((this.bitField0_ & 128) != 0) {
return true;
}
return false;
}
public boolean hasToken() {
if ((this.bitField0_ & 1) != 0) {
return true;
}
return false;
}
public boolean hasUserid() {
if ((this.bitField0_ & 2) != 0) {
return true;
}
return false;
}
public boolean hasZoneid() {
if ((this.bitField0_ & 8) != 0) {
return true;
}
return false;
}
public BizStat_Request setAccid(int i10) {
this.accid_ = i10;
this.bitField0_ |= 4;
return this;
}
public BizStat_Request setGoodsid(int i10) {
this.goodsid_ = i10;
this.bitField0_ |= 16;
return this;
}
public BizStat_Request setPos(int i10) {
this.pos_ = i10;
this.bitField0_ |= 32;
return this;
}
public BizStat_Request setReq(int i10) {
this.req_ = i10;
this.bitField0_ |= 64;
return this;
}
public BizStat_Request setResetidx(int i10) {
this.resetidx_ = i10;
this.bitField0_ |= 128;
return this;
}
public BizStat_Request setToken(String str) {
str.getClass();
this.token_ = str;
this.bitField0_ |= 1;
return this;
}
public BizStat_Request setUserid(int i10) {
this.userid_ = i10;
this.bitField0_ |= 2;
return this;
}
public BizStat_Request setZoneid(int i10) {
this.zoneid_ = i10;
this.bitField0_ |= 8;
return this;
}
public void writeTo(CodedOutputByteBufferNano codedOutputByteBufferNano) throws IOException {
if ((this.bitField0_ & 1) != 0) {
codedOutputByteBufferNano.writeString(1, this.token_);
}
if ((this.bitField0_ & 2) != 0) {
codedOutputByteBufferNano.writeUInt32(2, this.userid_);
}
if ((this.bitField0_ & 4) != 0) {
codedOutputByteBufferNano.writeFixed32(3, this.accid_);
}
if ((this.bitField0_ & 8) != 0) {
codedOutputByteBufferNano.writeUInt32(4, this.zoneid_);
}
if ((this.bitField0_ & 16) != 0) {
codedOutputByteBufferNano.writeUInt32(5, this.goodsid_);
}
if ((this.bitField0_ & 32) != 0) {
codedOutputByteBufferNano.writeUInt32(6, this.pos_);
}
if ((this.bitField0_ & 64) != 0) {
codedOutputByteBufferNano.writeUInt32(7, this.req_);
}
if ((this.bitField0_ & 128) != 0) {
codedOutputByteBufferNano.writeUInt32(8, this.resetidx_);
}
super.writeTo(codedOutputByteBufferNano);
}
public static BizStat_Request parseFrom(CodedInputByteBufferNano codedInputByteBufferNano) throws IOException {
return new BizStat_Request().mergeFrom(codedInputByteBufferNano);
}
public BizStat_Request mergeFrom(CodedInputByteBufferNano codedInputByteBufferNano) throws IOException {
while (true) {
int readTag = codedInputByteBufferNano.readTag();
if (readTag == 0) {
return this;
}
if (readTag == 10) {
this.token_ = codedInputByteBufferNano.readString();
this.bitField0_ |= 1;
} else if (readTag == 16) {
this.userid_ = codedInputByteBufferNano.readUInt32();
this.bitField0_ |= 2;
} else if (readTag == 29) {
this.accid_ = codedInputByteBufferNano.readFixed32();
this.bitField0_ |= 4;
} else if (readTag == 32) {
this.zoneid_ = codedInputByteBufferNano.readUInt32();
this.bitField0_ |= 8;
} else if (readTag == 40) {
this.goodsid_ = codedInputByteBufferNano.readUInt32();
this.bitField0_ |= 16;
} else if (readTag == 48) {
this.pos_ = codedInputByteBufferNano.readUInt32();
this.bitField0_ |= 32;
} else if (readTag == 56) {
this.req_ = codedInputByteBufferNano.readUInt32();
this.bitField0_ |= 64;
} else if (readTag == 64) {
this.resetidx_ = codedInputByteBufferNano.readUInt32();
this.bitField0_ |= 128;
} else if (!WireFormatNano.parseUnknownField(codedInputByteBufferNano, readTag)) {
return this;
}
}
}
}
}