// Generated by the protocol buffer compiler. DO NOT EDIT! // source: ordercenter.proto package com.ywt.gapi.ordercenter; /** *
*获取订单中心账单请求消息 ** * Protobuf type {@code com.ywt.gapi.ordercenter.GetOrderBillRequest} */ public final class GetOrderBillRequest extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:com.ywt.gapi.ordercenter.GetOrderBillRequest) GetOrderBillRequestOrBuilder { // Use GetOrderBillRequest.newBuilder() to construct. private GetOrderBillRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) { super(builder); } private GetOrderBillRequest() { billDate_ = ""; } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } private GetOrderBillRequest( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); int mutable_bitField0_ = 0; try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; default: { if (!input.skipField(tag)) { done = true; } break; } case 10: { java.lang.String s = input.readStringRequireUtf8(); billDate_ = s; break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.ywt.gapi.ordercenter.Ordercenter.internal_static_com_ywt_gapi_ordercenter_GetOrderBillRequest_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.ywt.gapi.ordercenter.Ordercenter.internal_static_com_ywt_gapi_ordercenter_GetOrderBillRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.ywt.gapi.ordercenter.GetOrderBillRequest.class, com.ywt.gapi.ordercenter.GetOrderBillRequest.Builder.class); } public static final int BILLDATE_FIELD_NUMBER = 1; private volatile java.lang.Object billDate_; /** *
*下载对账单的日期,格式:20180603 ** *
string billDate = 1;
*/
public java.lang.String getBillDate() {
java.lang.Object ref = billDate_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
billDate_ = s;
return s;
}
}
/**
* *下载对账单的日期,格式:20180603 ** *
string billDate = 1;
*/
public com.google.protobuf.ByteString
getBillDateBytes() {
java.lang.Object ref = billDate_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
billDate_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!getBillDateBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, billDate_);
}
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getBillDateBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, billDate_);
}
memoizedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.ywt.gapi.ordercenter.GetOrderBillRequest)) {
return super.equals(obj);
}
com.ywt.gapi.ordercenter.GetOrderBillRequest other = (com.ywt.gapi.ordercenter.GetOrderBillRequest) obj;
boolean result = true;
result = result && getBillDate()
.equals(other.getBillDate());
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + BILLDATE_FIELD_NUMBER;
hash = (53 * hash) + getBillDate().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.ywt.gapi.ordercenter.GetOrderBillRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.ywt.gapi.ordercenter.GetOrderBillRequest parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.ywt.gapi.ordercenter.GetOrderBillRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.ywt.gapi.ordercenter.GetOrderBillRequest parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.ywt.gapi.ordercenter.GetOrderBillRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.ywt.gapi.ordercenter.GetOrderBillRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.ywt.gapi.ordercenter.GetOrderBillRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.ywt.gapi.ordercenter.GetOrderBillRequest parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static com.ywt.gapi.ordercenter.GetOrderBillRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.ywt.gapi.ordercenter.GetOrderBillRequest parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static com.ywt.gapi.ordercenter.GetOrderBillRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.ywt.gapi.ordercenter.GetOrderBillRequest parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.ywt.gapi.ordercenter.GetOrderBillRequest prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* *获取订单中心账单请求消息 ** * Protobuf type {@code com.ywt.gapi.ordercenter.GetOrderBillRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
*下载对账单的日期,格式:20180603 ** *
string billDate = 1;
*/
public java.lang.String getBillDate() {
java.lang.Object ref = billDate_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
billDate_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* *下载对账单的日期,格式:20180603 ** *
string billDate = 1;
*/
public com.google.protobuf.ByteString
getBillDateBytes() {
java.lang.Object ref = billDate_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
billDate_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* *下载对账单的日期,格式:20180603 ** *
string billDate = 1;
*/
public Builder setBillDate(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
billDate_ = value;
onChanged();
return this;
}
/**
* *下载对账单的日期,格式:20180603 ** *
string billDate = 1;
*/
public Builder clearBillDate() {
billDate_ = getDefaultInstance().getBillDate();
onChanged();
return this;
}
/**
* *下载对账单的日期,格式:20180603 ** *
string billDate = 1;
*/
public Builder setBillDateBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
billDate_ = value;
onChanged();
return this;
}
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return this;
}
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return this;
}
// @@protoc_insertion_point(builder_scope:com.ywt.gapi.ordercenter.GetOrderBillRequest)
}
// @@protoc_insertion_point(class_scope:com.ywt.gapi.ordercenter.GetOrderBillRequest)
private static final com.ywt.gapi.ordercenter.GetOrderBillRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.ywt.gapi.ordercenter.GetOrderBillRequest();
}
public static com.ywt.gapi.ordercenter.GetOrderBillRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser