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,181 @@
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 BargainDataRequest {
/* compiled from: TbsSdkJava */
public static final class BargainData_Request extends MessageNano {
private static volatile BargainData_Request[] _emptyArray;
private int bitField0_;
private int goodsId_;
private int lastTime_;
private int limitSize_;
public BargainData_Request() {
clear();
}
public static BargainData_Request[] emptyArray() {
if (_emptyArray == null) {
synchronized (InternalNano.LAZY_INIT_LOCK) {
try {
if (_emptyArray == null) {
_emptyArray = new BargainData_Request[0];
}
} catch (Throwable th) {
throw th;
}
}
}
return _emptyArray;
}
public static BargainData_Request parseFrom(byte[] bArr) throws InvalidProtocolBufferNanoException {
return (BargainData_Request) MessageNano.mergeFrom(new BargainData_Request(), bArr);
}
public BargainData_Request clear() {
this.bitField0_ = 0;
this.goodsId_ = 0;
this.lastTime_ = 0;
this.limitSize_ = 0;
this.cachedSize = -1;
return this;
}
public BargainData_Request clearGoodsId() {
this.goodsId_ = 0;
this.bitField0_ &= -2;
return this;
}
public BargainData_Request clearLastTime() {
this.lastTime_ = 0;
this.bitField0_ &= -3;
return this;
}
public BargainData_Request clearLimitSize() {
this.limitSize_ = 0;
this.bitField0_ &= -5;
return this;
}
/* access modifiers changed from: protected */
public int computeSerializedSize() {
int computeSerializedSize = super.computeSerializedSize();
if ((this.bitField0_ & 1) != 0) {
computeSerializedSize += CodedOutputByteBufferNano.computeUInt32Size(1, this.goodsId_);
}
if ((this.bitField0_ & 2) != 0) {
computeSerializedSize += CodedOutputByteBufferNano.computeUInt32Size(2, this.lastTime_);
}
if ((this.bitField0_ & 4) != 0) {
return computeSerializedSize + CodedOutputByteBufferNano.computeInt32Size(3, this.limitSize_);
}
return computeSerializedSize;
}
public int getGoodsId() {
return this.goodsId_;
}
public int getLastTime() {
return this.lastTime_;
}
public int getLimitSize() {
return this.limitSize_;
}
public boolean hasGoodsId() {
if ((this.bitField0_ & 1) != 0) {
return true;
}
return false;
}
public boolean hasLastTime() {
if ((this.bitField0_ & 2) != 0) {
return true;
}
return false;
}
public boolean hasLimitSize() {
if ((this.bitField0_ & 4) != 0) {
return true;
}
return false;
}
public BargainData_Request setGoodsId(int i10) {
this.goodsId_ = i10;
this.bitField0_ |= 1;
return this;
}
public BargainData_Request setLastTime(int i10) {
this.lastTime_ = i10;
this.bitField0_ |= 2;
return this;
}
public BargainData_Request setLimitSize(int i10) {
this.limitSize_ = i10;
this.bitField0_ |= 4;
return this;
}
public void writeTo(CodedOutputByteBufferNano codedOutputByteBufferNano) throws IOException {
if ((this.bitField0_ & 1) != 0) {
codedOutputByteBufferNano.writeUInt32(1, this.goodsId_);
}
if ((this.bitField0_ & 2) != 0) {
codedOutputByteBufferNano.writeUInt32(2, this.lastTime_);
}
if ((this.bitField0_ & 4) != 0) {
codedOutputByteBufferNano.writeInt32(3, this.limitSize_);
}
super.writeTo(codedOutputByteBufferNano);
}
public static BargainData_Request parseFrom(CodedInputByteBufferNano codedInputByteBufferNano) throws IOException {
return new BargainData_Request().mergeFrom(codedInputByteBufferNano);
}
public BargainData_Request mergeFrom(CodedInputByteBufferNano codedInputByteBufferNano) throws IOException {
while (true) {
int readTag = codedInputByteBufferNano.readTag();
if (readTag == 0) {
return this;
}
if (readTag == 8) {
this.goodsId_ = codedInputByteBufferNano.readUInt32();
this.bitField0_ |= 1;
} else if (readTag == 16) {
this.lastTime_ = codedInputByteBufferNano.readUInt32();
this.bitField0_ |= 2;
} else if (readTag == 24) {
this.limitSize_ = codedInputByteBufferNano.readInt32();
this.bitField0_ |= 4;
} else if (!WireFormatNano.parseUnknownField(codedInputByteBufferNano, readTag)) {
return this;
}
}
}
}
}