|
|
@@ -1648,7 +1648,9 @@ proto.app.v1.GameDetailReply.toObject = function(includeInstance, msg) {
|
|
|
proto.app.v1.GameControlPoint.toObject, includeInstance),
|
|
|
duration: (f = msg.getDuration()) && google_protobuf_duration_pb.Duration.toObject(includeInstance, f),
|
|
|
stopAt: (f = msg.getStopAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
|
- qrjsoncode: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
|
+ qrjsoncode: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
|
+ issuccess: jspb.Message.getBooleanFieldWithDefault(msg, 8, false),
|
|
|
+ syspoint: jspb.Message.getFieldWithDefault(msg, 9, 0)
|
|
|
};
|
|
|
|
|
|
if (includeInstance) {
|
|
|
@@ -1717,6 +1719,14 @@ proto.app.v1.GameDetailReply.deserializeBinaryFromReader = function(msg, reader)
|
|
|
var value = /** @type {string} */ (reader.readString());
|
|
|
msg.setQrjsoncode(value);
|
|
|
break;
|
|
|
+ case 8:
|
|
|
+ var value = /** @type {boolean} */ (reader.readBool());
|
|
|
+ msg.setIssuccess(value);
|
|
|
+ break;
|
|
|
+ case 9:
|
|
|
+ var value = /** @type {number} */ (reader.readInt32());
|
|
|
+ msg.setSyspoint(value);
|
|
|
+ break;
|
|
|
default:
|
|
|
reader.skipField();
|
|
|
break;
|
|
|
@@ -1799,6 +1809,20 @@ proto.app.v1.GameDetailReply.serializeBinaryToWriter = function(message, writer)
|
|
|
f
|
|
|
);
|
|
|
}
|
|
|
+ f = message.getIssuccess();
|
|
|
+ if (f) {
|
|
|
+ writer.writeBool(
|
|
|
+ 8,
|
|
|
+ f
|
|
|
+ );
|
|
|
+ }
|
|
|
+ f = message.getSyspoint();
|
|
|
+ if (f !== 0) {
|
|
|
+ writer.writeInt32(
|
|
|
+ 9,
|
|
|
+ f
|
|
|
+ );
|
|
|
+ }
|
|
|
};
|
|
|
|
|
|
|
|
|
@@ -2005,6 +2029,42 @@ proto.app.v1.GameDetailReply.prototype.setQrjsoncode = function(value) {
|
|
|
};
|
|
|
|
|
|
|
|
|
+/**
|
|
|
+ * optional bool isSuccess = 8;
|
|
|
+ * @return {boolean}
|
|
|
+ */
|
|
|
+proto.app.v1.GameDetailReply.prototype.getIssuccess = function() {
|
|
|
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 8, false));
|
|
|
+};
|
|
|
+
|
|
|
+
|
|
|
+/**
|
|
|
+ * @param {boolean} value
|
|
|
+ * @return {!proto.app.v1.GameDetailReply} returns this
|
|
|
+ */
|
|
|
+proto.app.v1.GameDetailReply.prototype.setIssuccess = function(value) {
|
|
|
+ return jspb.Message.setProto3BooleanField(this, 8, value);
|
|
|
+};
|
|
|
+
|
|
|
+
|
|
|
+/**
|
|
|
+ * optional int32 sysPoint = 9;
|
|
|
+ * @return {number}
|
|
|
+ */
|
|
|
+proto.app.v1.GameDetailReply.prototype.getSyspoint = function() {
|
|
|
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 9, 0));
|
|
|
+};
|
|
|
+
|
|
|
+
|
|
|
+/**
|
|
|
+ * @param {number} value
|
|
|
+ * @return {!proto.app.v1.GameDetailReply} returns this
|
|
|
+ */
|
|
|
+proto.app.v1.GameDetailReply.prototype.setSyspoint = function(value) {
|
|
|
+ return jspb.Message.setProto3IntField(this, 9, value);
|
|
|
+};
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
|