工具更新

This commit is contained in:
zhang hongbo 2026-01-19 21:11:05 +08:00
parent 1156cf2bc9
commit c7f962e458
94 changed files with 323 additions and 467 deletions

View File

@ -95,9 +95,9 @@ class IntegratedPipeline:
# Unity 主项目相关路径
if self.main_project_path:
main_root = Path(self.main_project_path)
paths['unity_csharp_dir'] = str(main_root / "Assets" / "Scripts" / "thrift" / "gen-netstd")
paths['unity_bytes_dir'] = str(main_root / "Assets" / "Resources" / "ConfigData")
paths['dr_output_dir'] = str(main_root / "Assets" / "GameMain" / "Scripts" / "DR_Generated")
paths['unity_csharp_dir'] = str(main_root / "Assets" / "Design_SubModule" / "Scripts" / "thrift" / "gen-netstd")
paths['unity_bytes_dir'] = str(main_root / "Assets" / "Design_SubModule" / "ConfigData")
paths['dr_output_dir'] = str(main_root / "Assets" / "Design_SubModule" / "Scripts" / "DR_Generated")
return paths
@ -1123,6 +1123,21 @@ class IntegratedPipeline:
copied_count = 0
copied_files = []
skipped_count = 0
# 获取允许的配置名称列表从config_struct_names
# 为每个配置名生成对应的文件名模式
allowed_files = set()
if hasattr(self, 'config_struct_names'):
for struct_name in self.config_struct_names:
# 每个配置对应3个文件主文件、Item文件、Extensions文件
allowed_files.add(f"{struct_name}.cs")
allowed_files.add(f"{struct_name}Item.cs")
allowed_files.add(f"{struct_name}.Extensions.cs")
# AllConfigs相关文件必须保留
allowed_files.add("AllConfigs.cs")
# AllConfigs.Extensions.cs 已在步骤4删除不应该存在
# C# 文件在 Byway\Thrift\Data 子目录中
csharp_actual_dir = os.path.join(self.csharp_output_dir, 'Byway', 'Thrift', 'Data')
@ -1131,28 +1146,36 @@ class IntegratedPipeline:
self.log(f" 源目录: {csharp_actual_dir}\n")
self.log(f" 目标目录: {unity_target_dir}\n\n")
# 复制所有C#文件AllConfigsExtensions.cs已在步骤4删除
# 只复制cfg_txt.json中定义的配置对应的C#文件
for file in os.listdir(csharp_actual_dir):
if file.endswith('.cs'):
src = os.path.join(csharp_actual_dir, file)
dst = os.path.join(unity_target_dir, file)
shutil.copy2(src, dst)
copied_files.append(file)
copied_count += 1
# 标记文件类型
if file == 'AllConfigs.cs':
self.log(f" [OK] {file} [合并配置类]\n")
elif file.endswith('Item.cs'):
self.log(f" [OK] {file} [Item文件]\n")
elif file.endswith('.Extensions.cs'):
self.log(f" [OK] {file} [Extensions文件]\n")
# 检查文件是否在允许列表中
if file in allowed_files:
src = os.path.join(csharp_actual_dir, file)
dst = os.path.join(unity_target_dir, file)
shutil.copy2(src, dst)
copied_files.append(file)
copied_count += 1
# 标记文件类型
if file == 'AllConfigs.cs':
self.log(f" [OK] {file} [合并配置类]\n")
elif file.endswith('Item.cs'):
self.log(f" [OK] {file} [Item文件]\n")
elif file.endswith('.Extensions.cs'):
self.log(f" [OK] {file} [Extensions文件]\n")
else:
self.log(f" [OK] {file}\n")
else:
self.log(f" [OK] {file}\n")
# 跳过不在配置列表中的文件
skipped_count += 1
else:
self.log(f" [FAIL] 未找到C#文件: {csharp_actual_dir}\n")
if skipped_count > 0:
self.log(f" [INFO] 跳过了 {skipped_count} 个不在配置列表中的文件\n")
self.log(f"\n复制完成: {copied_count} 个 C# 文件\n")
self.add_step_report("复制C#到Unity", "success", {

Binary file not shown.

View File

@ -41,14 +41,14 @@ namespace Byway.Thrift.Data
public partial class GuideDataItem : TBase
{
private int _Id;
private string _targetStr;
private int _fingerType;
private string _title;
private string _titlePos;
private string _expression;
private string _other;
private string _disappear;
private string _remark;
private string _TargetStr;
private int _FingerType;
private string _Title;
private string _TitlePos;
private string _Expression;
private string _Other;
private string _Disappear;
private string _Remark;
[DataMember(Order = 0)]
public int Id
@ -69,12 +69,12 @@ namespace Byway.Thrift.Data
{
get
{
return _targetStr;
return _TargetStr;
}
set
{
__isset.targetStr = true;
this._targetStr = value;
__isset.TargetStr = true;
this._TargetStr = value;
}
}
@ -83,12 +83,12 @@ namespace Byway.Thrift.Data
{
get
{
return _fingerType;
return _FingerType;
}
set
{
__isset.fingerType = true;
this._fingerType = value;
__isset.FingerType = true;
this._FingerType = value;
}
}
@ -97,12 +97,12 @@ namespace Byway.Thrift.Data
{
get
{
return _title;
return _Title;
}
set
{
__isset.@title = true;
this._title = value;
__isset.Title = true;
this._Title = value;
}
}
@ -111,12 +111,12 @@ namespace Byway.Thrift.Data
{
get
{
return _titlePos;
return _TitlePos;
}
set
{
__isset.titlePos = true;
this._titlePos = value;
__isset.TitlePos = true;
this._TitlePos = value;
}
}
@ -125,12 +125,12 @@ namespace Byway.Thrift.Data
{
get
{
return _expression;
return _Expression;
}
set
{
__isset.@expression = true;
this._expression = value;
__isset.Expression = true;
this._Expression = value;
}
}
@ -139,12 +139,12 @@ namespace Byway.Thrift.Data
{
get
{
return _other;
return _Other;
}
set
{
__isset.@other = true;
this._other = value;
__isset.Other = true;
this._Other = value;
}
}
@ -153,12 +153,12 @@ namespace Byway.Thrift.Data
{
get
{
return _disappear;
return _Disappear;
}
set
{
__isset.@disappear = true;
this._disappear = value;
__isset.Disappear = true;
this._Disappear = value;
}
}
@ -167,12 +167,12 @@ namespace Byway.Thrift.Data
{
get
{
return _remark;
return _Remark;
}
set
{
__isset.@remark = true;
this._remark = value;
__isset.Remark = true;
this._Remark = value;
}
}
@ -185,21 +185,21 @@ namespace Byway.Thrift.Data
[DataMember]
public bool Id;
[DataMember]
public bool targetStr;
public bool TargetStr;
[DataMember]
public bool fingerType;
public bool FingerType;
[DataMember]
public bool @title;
public bool Title;
[DataMember]
public bool titlePos;
public bool TitlePos;
[DataMember]
public bool @expression;
public bool Expression;
[DataMember]
public bool @other;
public bool Other;
[DataMember]
public bool @disappear;
public bool Disappear;
[DataMember]
public bool @remark;
public bool Remark;
}
#region XmlSerializer support
@ -211,42 +211,42 @@ namespace Byway.Thrift.Data
public bool ShouldSerializeTargetStr()
{
return __isset.targetStr;
return __isset.TargetStr;
}
public bool ShouldSerializeFingerType()
{
return __isset.fingerType;
return __isset.FingerType;
}
public bool ShouldSerializeTitle()
{
return __isset.@title;
return __isset.Title;
}
public bool ShouldSerializeTitlePos()
{
return __isset.titlePos;
return __isset.TitlePos;
}
public bool ShouldSerializeExpression()
{
return __isset.@expression;
return __isset.Expression;
}
public bool ShouldSerializeOther()
{
return __isset.@other;
return __isset.Other;
}
public bool ShouldSerializeDisappear()
{
return __isset.@disappear;
return __isset.Disappear;
}
public bool ShouldSerializeRemark()
{
return __isset.@remark;
return __isset.Remark;
}
#endregion XmlSerializer support
@ -263,46 +263,46 @@ namespace Byway.Thrift.Data
tmp0.Id = this.Id;
}
tmp0.__isset.Id = this.__isset.Id;
if((TargetStr != null) && __isset.targetStr)
if((TargetStr != null) && __isset.TargetStr)
{
tmp0.TargetStr = this.TargetStr;
}
tmp0.__isset.targetStr = this.__isset.targetStr;
if(__isset.fingerType)
tmp0.__isset.TargetStr = this.__isset.TargetStr;
if(__isset.FingerType)
{
tmp0.FingerType = this.FingerType;
}
tmp0.__isset.fingerType = this.__isset.fingerType;
if((Title != null) && __isset.@title)
tmp0.__isset.FingerType = this.__isset.FingerType;
if((Title != null) && __isset.Title)
{
tmp0.Title = this.Title;
}
tmp0.__isset.@title = this.__isset.@title;
if((TitlePos != null) && __isset.titlePos)
tmp0.__isset.Title = this.__isset.Title;
if((TitlePos != null) && __isset.TitlePos)
{
tmp0.TitlePos = this.TitlePos;
}
tmp0.__isset.titlePos = this.__isset.titlePos;
if((Expression != null) && __isset.@expression)
tmp0.__isset.TitlePos = this.__isset.TitlePos;
if((Expression != null) && __isset.Expression)
{
tmp0.Expression = this.Expression;
}
tmp0.__isset.@expression = this.__isset.@expression;
if((Other != null) && __isset.@other)
tmp0.__isset.Expression = this.__isset.Expression;
if((Other != null) && __isset.Other)
{
tmp0.Other = this.Other;
}
tmp0.__isset.@other = this.__isset.@other;
if((Disappear != null) && __isset.@disappear)
tmp0.__isset.Other = this.__isset.Other;
if((Disappear != null) && __isset.Disappear)
{
tmp0.Disappear = this.Disappear;
}
tmp0.__isset.@disappear = this.__isset.@disappear;
if((Remark != null) && __isset.@remark)
tmp0.__isset.Disappear = this.__isset.Disappear;
if((Remark != null) && __isset.Remark)
{
tmp0.Remark = this.Remark;
}
tmp0.__isset.@remark = this.__isset.@remark;
tmp0.__isset.Remark = this.__isset.Remark;
return tmp0;
}
@ -446,72 +446,72 @@ namespace Byway.Thrift.Data
await oprot.WriteI32Async(Id, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if((TargetStr != null) && __isset.targetStr)
if((TargetStr != null) && __isset.TargetStr)
{
tmp2.Name = "targetStr";
tmp2.Name = "TargetStr";
tmp2.Type = TType.String;
tmp2.ID = 2;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
await oprot.WriteStringAsync(TargetStr, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if(__isset.fingerType)
if(__isset.FingerType)
{
tmp2.Name = "fingerType";
tmp2.Name = "FingerType";
tmp2.Type = TType.I32;
tmp2.ID = 3;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
await oprot.WriteI32Async(FingerType, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if((Title != null) && __isset.@title)
if((Title != null) && __isset.Title)
{
tmp2.Name = "title";
tmp2.Name = "Title";
tmp2.Type = TType.String;
tmp2.ID = 4;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
await oprot.WriteStringAsync(Title, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if((TitlePos != null) && __isset.titlePos)
if((TitlePos != null) && __isset.TitlePos)
{
tmp2.Name = "titlePos";
tmp2.Name = "TitlePos";
tmp2.Type = TType.String;
tmp2.ID = 5;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
await oprot.WriteStringAsync(TitlePos, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if((Expression != null) && __isset.@expression)
if((Expression != null) && __isset.Expression)
{
tmp2.Name = "expression";
tmp2.Name = "Expression";
tmp2.Type = TType.String;
tmp2.ID = 6;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
await oprot.WriteStringAsync(Expression, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if((Other != null) && __isset.@other)
if((Other != null) && __isset.Other)
{
tmp2.Name = "other";
tmp2.Name = "Other";
tmp2.Type = TType.String;
tmp2.ID = 7;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
await oprot.WriteStringAsync(Other, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if((Disappear != null) && __isset.@disappear)
if((Disappear != null) && __isset.Disappear)
{
tmp2.Name = "disappear";
tmp2.Name = "Disappear";
tmp2.Type = TType.String;
tmp2.ID = 8;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
await oprot.WriteStringAsync(Disappear, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if((Remark != null) && __isset.@remark)
if((Remark != null) && __isset.Remark)
{
tmp2.Name = "remark";
tmp2.Name = "Remark";
tmp2.Type = TType.String;
tmp2.ID = 9;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
@ -532,14 +532,14 @@ namespace Byway.Thrift.Data
if (!(that is GuideDataItem other)) return false;
if (ReferenceEquals(this, other)) return true;
return ((__isset.Id == other.__isset.Id) && ((!__isset.Id) || (global::System.Object.Equals(Id, other.Id))))
&& ((__isset.targetStr == other.__isset.targetStr) && ((!__isset.targetStr) || (global::System.Object.Equals(TargetStr, other.TargetStr))))
&& ((__isset.fingerType == other.__isset.fingerType) && ((!__isset.fingerType) || (global::System.Object.Equals(FingerType, other.FingerType))))
&& ((__isset.@title == other.__isset.@title) && ((!__isset.@title) || (global::System.Object.Equals(Title, other.Title))))
&& ((__isset.titlePos == other.__isset.titlePos) && ((!__isset.titlePos) || (global::System.Object.Equals(TitlePos, other.TitlePos))))
&& ((__isset.@expression == other.__isset.@expression) && ((!__isset.@expression) || (global::System.Object.Equals(Expression, other.Expression))))
&& ((__isset.@other == other.__isset.@other) && ((!__isset.@other) || (global::System.Object.Equals(Other, other.Other))))
&& ((__isset.@disappear == other.__isset.@disappear) && ((!__isset.@disappear) || (global::System.Object.Equals(Disappear, other.Disappear))))
&& ((__isset.@remark == other.__isset.@remark) && ((!__isset.@remark) || (global::System.Object.Equals(Remark, other.Remark))));
&& ((__isset.TargetStr == other.__isset.TargetStr) && ((!__isset.TargetStr) || (global::System.Object.Equals(TargetStr, other.TargetStr))))
&& ((__isset.FingerType == other.__isset.FingerType) && ((!__isset.FingerType) || (global::System.Object.Equals(FingerType, other.FingerType))))
&& ((__isset.Title == other.__isset.Title) && ((!__isset.Title) || (global::System.Object.Equals(Title, other.Title))))
&& ((__isset.TitlePos == other.__isset.TitlePos) && ((!__isset.TitlePos) || (global::System.Object.Equals(TitlePos, other.TitlePos))))
&& ((__isset.Expression == other.__isset.Expression) && ((!__isset.Expression) || (global::System.Object.Equals(Expression, other.Expression))))
&& ((__isset.Other == other.__isset.Other) && ((!__isset.Other) || (global::System.Object.Equals(Other, other.Other))))
&& ((__isset.Disappear == other.__isset.Disappear) && ((!__isset.Disappear) || (global::System.Object.Equals(Disappear, other.Disappear))))
&& ((__isset.Remark == other.__isset.Remark) && ((!__isset.Remark) || (global::System.Object.Equals(Remark, other.Remark))));
}
public override int GetHashCode() {
@ -549,35 +549,35 @@ namespace Byway.Thrift.Data
{
hashcode = (hashcode * 397) + Id.GetHashCode();
}
if((TargetStr != null) && __isset.targetStr)
if((TargetStr != null) && __isset.TargetStr)
{
hashcode = (hashcode * 397) + TargetStr.GetHashCode();
}
if(__isset.fingerType)
if(__isset.FingerType)
{
hashcode = (hashcode * 397) + FingerType.GetHashCode();
}
if((Title != null) && __isset.@title)
if((Title != null) && __isset.Title)
{
hashcode = (hashcode * 397) + Title.GetHashCode();
}
if((TitlePos != null) && __isset.titlePos)
if((TitlePos != null) && __isset.TitlePos)
{
hashcode = (hashcode * 397) + TitlePos.GetHashCode();
}
if((Expression != null) && __isset.@expression)
if((Expression != null) && __isset.Expression)
{
hashcode = (hashcode * 397) + Expression.GetHashCode();
}
if((Other != null) && __isset.@other)
if((Other != null) && __isset.Other)
{
hashcode = (hashcode * 397) + Other.GetHashCode();
}
if((Disappear != null) && __isset.@disappear)
if((Disappear != null) && __isset.Disappear)
{
hashcode = (hashcode * 397) + Disappear.GetHashCode();
}
if((Remark != null) && __isset.@remark)
if((Remark != null) && __isset.Remark)
{
hashcode = (hashcode * 397) + Remark.GetHashCode();
}
@ -595,49 +595,49 @@ namespace Byway.Thrift.Data
tmp3.Append("Id: ");
Id.ToString(tmp3);
}
if((TargetStr != null) && __isset.targetStr)
if((TargetStr != null) && __isset.TargetStr)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("TargetStr: ");
TargetStr.ToString(tmp3);
}
if(__isset.fingerType)
if(__isset.FingerType)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("FingerType: ");
FingerType.ToString(tmp3);
}
if((Title != null) && __isset.@title)
if((Title != null) && __isset.Title)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("Title: ");
Title.ToString(tmp3);
}
if((TitlePos != null) && __isset.titlePos)
if((TitlePos != null) && __isset.TitlePos)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("TitlePos: ");
TitlePos.ToString(tmp3);
}
if((Expression != null) && __isset.@expression)
if((Expression != null) && __isset.Expression)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("Expression: ");
Expression.ToString(tmp3);
}
if((Other != null) && __isset.@other)
if((Other != null) && __isset.Other)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("Other: ");
Other.ToString(tmp3);
}
if((Disappear != null) && __isset.@disappear)
if((Disappear != null) && __isset.Disappear)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("Disappear: ");
Disappear.ToString(tmp3);
}
if((Remark != null) && __isset.@remark)
if((Remark != null) && __isset.Remark)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("Remark: ");

View File

@ -41,10 +41,10 @@ namespace Byway.Thrift.Data
public partial class LanguageDataItem : TBase
{
private int _Id;
private string _key;
private string _en_US;
private string _zh_CN;
private string _pt_BR;
private string _Key;
private string _En_US;
private string _Zh_CN;
private string _Pt_BR;
[DataMember(Order = 0)]
public int Id
@ -65,12 +65,12 @@ namespace Byway.Thrift.Data
{
get
{
return _key;
return _Key;
}
set
{
__isset.@key = true;
this._key = value;
__isset.Key = true;
this._Key = value;
}
}
@ -79,12 +79,12 @@ namespace Byway.Thrift.Data
{
get
{
return _en_US;
return _En_US;
}
set
{
__isset.en_US = true;
this._en_US = value;
__isset.En_US = true;
this._En_US = value;
}
}
@ -93,12 +93,12 @@ namespace Byway.Thrift.Data
{
get
{
return _zh_CN;
return _Zh_CN;
}
set
{
__isset.zh_CN = true;
this._zh_CN = value;
__isset.Zh_CN = true;
this._Zh_CN = value;
}
}
@ -107,12 +107,12 @@ namespace Byway.Thrift.Data
{
get
{
return _pt_BR;
return _Pt_BR;
}
set
{
__isset.pt_BR = true;
this._pt_BR = value;
__isset.Pt_BR = true;
this._Pt_BR = value;
}
}
@ -125,13 +125,13 @@ namespace Byway.Thrift.Data
[DataMember]
public bool Id;
[DataMember]
public bool @key;
public bool Key;
[DataMember]
public bool en_US;
public bool En_US;
[DataMember]
public bool zh_CN;
public bool Zh_CN;
[DataMember]
public bool pt_BR;
public bool Pt_BR;
}
#region XmlSerializer support
@ -143,22 +143,22 @@ namespace Byway.Thrift.Data
public bool ShouldSerializeKey()
{
return __isset.@key;
return __isset.Key;
}
public bool ShouldSerializeEn_US()
{
return __isset.en_US;
return __isset.En_US;
}
public bool ShouldSerializeZh_CN()
{
return __isset.zh_CN;
return __isset.Zh_CN;
}
public bool ShouldSerializePt_BR()
{
return __isset.pt_BR;
return __isset.Pt_BR;
}
#endregion XmlSerializer support
@ -175,26 +175,26 @@ namespace Byway.Thrift.Data
tmp0.Id = this.Id;
}
tmp0.__isset.Id = this.__isset.Id;
if((Key != null) && __isset.@key)
if((Key != null) && __isset.Key)
{
tmp0.Key = this.Key;
}
tmp0.__isset.@key = this.__isset.@key;
if((En_US != null) && __isset.en_US)
tmp0.__isset.Key = this.__isset.Key;
if((En_US != null) && __isset.En_US)
{
tmp0.En_US = this.En_US;
}
tmp0.__isset.en_US = this.__isset.en_US;
if((Zh_CN != null) && __isset.zh_CN)
tmp0.__isset.En_US = this.__isset.En_US;
if((Zh_CN != null) && __isset.Zh_CN)
{
tmp0.Zh_CN = this.Zh_CN;
}
tmp0.__isset.zh_CN = this.__isset.zh_CN;
if((Pt_BR != null) && __isset.pt_BR)
tmp0.__isset.Zh_CN = this.__isset.Zh_CN;
if((Pt_BR != null) && __isset.Pt_BR)
{
tmp0.Pt_BR = this.Pt_BR;
}
tmp0.__isset.pt_BR = this.__isset.pt_BR;
tmp0.__isset.Pt_BR = this.__isset.Pt_BR;
return tmp0;
}
@ -298,36 +298,36 @@ namespace Byway.Thrift.Data
await oprot.WriteI32Async(Id, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if((Key != null) && __isset.@key)
if((Key != null) && __isset.Key)
{
tmp2.Name = "key";
tmp2.Name = "Key";
tmp2.Type = TType.String;
tmp2.ID = 2;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
await oprot.WriteStringAsync(Key, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if((En_US != null) && __isset.en_US)
if((En_US != null) && __isset.En_US)
{
tmp2.Name = "en_US";
tmp2.Name = "En_US";
tmp2.Type = TType.String;
tmp2.ID = 3;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
await oprot.WriteStringAsync(En_US, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if((Zh_CN != null) && __isset.zh_CN)
if((Zh_CN != null) && __isset.Zh_CN)
{
tmp2.Name = "zh_CN";
tmp2.Name = "Zh_CN";
tmp2.Type = TType.String;
tmp2.ID = 4;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
await oprot.WriteStringAsync(Zh_CN, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if((Pt_BR != null) && __isset.pt_BR)
if((Pt_BR != null) && __isset.Pt_BR)
{
tmp2.Name = "pt_BR";
tmp2.Name = "Pt_BR";
tmp2.Type = TType.String;
tmp2.ID = 5;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
@ -348,10 +348,10 @@ namespace Byway.Thrift.Data
if (!(that is LanguageDataItem other)) return false;
if (ReferenceEquals(this, other)) return true;
return ((__isset.Id == other.__isset.Id) && ((!__isset.Id) || (global::System.Object.Equals(Id, other.Id))))
&& ((__isset.@key == other.__isset.@key) && ((!__isset.@key) || (global::System.Object.Equals(Key, other.Key))))
&& ((__isset.en_US == other.__isset.en_US) && ((!__isset.en_US) || (global::System.Object.Equals(En_US, other.En_US))))
&& ((__isset.zh_CN == other.__isset.zh_CN) && ((!__isset.zh_CN) || (global::System.Object.Equals(Zh_CN, other.Zh_CN))))
&& ((__isset.pt_BR == other.__isset.pt_BR) && ((!__isset.pt_BR) || (global::System.Object.Equals(Pt_BR, other.Pt_BR))));
&& ((__isset.Key == other.__isset.Key) && ((!__isset.Key) || (global::System.Object.Equals(Key, other.Key))))
&& ((__isset.En_US == other.__isset.En_US) && ((!__isset.En_US) || (global::System.Object.Equals(En_US, other.En_US))))
&& ((__isset.Zh_CN == other.__isset.Zh_CN) && ((!__isset.Zh_CN) || (global::System.Object.Equals(Zh_CN, other.Zh_CN))))
&& ((__isset.Pt_BR == other.__isset.Pt_BR) && ((!__isset.Pt_BR) || (global::System.Object.Equals(Pt_BR, other.Pt_BR))));
}
public override int GetHashCode() {
@ -361,19 +361,19 @@ namespace Byway.Thrift.Data
{
hashcode = (hashcode * 397) + Id.GetHashCode();
}
if((Key != null) && __isset.@key)
if((Key != null) && __isset.Key)
{
hashcode = (hashcode * 397) + Key.GetHashCode();
}
if((En_US != null) && __isset.en_US)
if((En_US != null) && __isset.En_US)
{
hashcode = (hashcode * 397) + En_US.GetHashCode();
}
if((Zh_CN != null) && __isset.zh_CN)
if((Zh_CN != null) && __isset.Zh_CN)
{
hashcode = (hashcode * 397) + Zh_CN.GetHashCode();
}
if((Pt_BR != null) && __isset.pt_BR)
if((Pt_BR != null) && __isset.Pt_BR)
{
hashcode = (hashcode * 397) + Pt_BR.GetHashCode();
}
@ -391,25 +391,25 @@ namespace Byway.Thrift.Data
tmp3.Append("Id: ");
Id.ToString(tmp3);
}
if((Key != null) && __isset.@key)
if((Key != null) && __isset.Key)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("Key: ");
Key.ToString(tmp3);
}
if((En_US != null) && __isset.en_US)
if((En_US != null) && __isset.En_US)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("En_US: ");
En_US.ToString(tmp3);
}
if((Zh_CN != null) && __isset.zh_CN)
if((Zh_CN != null) && __isset.Zh_CN)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("Zh_CN: ");
Zh_CN.ToString(tmp3);
}
if((Pt_BR != null) && __isset.pt_BR)
if((Pt_BR != null) && __isset.Pt_BR)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("Pt_BR: ");

View File

@ -41,7 +41,7 @@ namespace Byway.Thrift.Data
public partial class MultiLanguageResourceItem : TBase
{
private int _Id;
private string _key;
private string _Key;
private string _English;
private string _ChineseSimplified;
@ -64,12 +64,12 @@ namespace Byway.Thrift.Data
{
get
{
return _key;
return _Key;
}
set
{
__isset.@key = true;
this._key = value;
__isset.Key = true;
this._Key = value;
}
}
@ -110,7 +110,7 @@ namespace Byway.Thrift.Data
[DataMember]
public bool Id;
[DataMember]
public bool @key;
public bool Key;
[DataMember]
public bool English;
[DataMember]
@ -126,7 +126,7 @@ namespace Byway.Thrift.Data
public bool ShouldSerializeKey()
{
return __isset.@key;
return __isset.Key;
}
public bool ShouldSerializeEnglish()
@ -153,11 +153,11 @@ namespace Byway.Thrift.Data
tmp0.Id = this.Id;
}
tmp0.__isset.Id = this.__isset.Id;
if((Key != null) && __isset.@key)
if((Key != null) && __isset.Key)
{
tmp0.Key = this.Key;
}
tmp0.__isset.@key = this.__isset.@key;
tmp0.__isset.Key = this.__isset.Key;
if((English != null) && __isset.English)
{
tmp0.English = this.English;
@ -261,9 +261,9 @@ namespace Byway.Thrift.Data
await oprot.WriteI32Async(Id, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if((Key != null) && __isset.@key)
if((Key != null) && __isset.Key)
{
tmp2.Name = "key";
tmp2.Name = "Key";
tmp2.Type = TType.String;
tmp2.ID = 2;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
@ -302,7 +302,7 @@ namespace Byway.Thrift.Data
if (!(that is MultiLanguageResourceItem other)) return false;
if (ReferenceEquals(this, other)) return true;
return ((__isset.Id == other.__isset.Id) && ((!__isset.Id) || (global::System.Object.Equals(Id, other.Id))))
&& ((__isset.@key == other.__isset.@key) && ((!__isset.@key) || (global::System.Object.Equals(Key, other.Key))))
&& ((__isset.Key == other.__isset.Key) && ((!__isset.Key) || (global::System.Object.Equals(Key, other.Key))))
&& ((__isset.English == other.__isset.English) && ((!__isset.English) || (global::System.Object.Equals(English, other.English))))
&& ((__isset.ChineseSimplified == other.__isset.ChineseSimplified) && ((!__isset.ChineseSimplified) || (global::System.Object.Equals(ChineseSimplified, other.ChineseSimplified))));
}
@ -314,7 +314,7 @@ namespace Byway.Thrift.Data
{
hashcode = (hashcode * 397) + Id.GetHashCode();
}
if((Key != null) && __isset.@key)
if((Key != null) && __isset.Key)
{
hashcode = (hashcode * 397) + Key.GetHashCode();
}
@ -340,7 +340,7 @@ namespace Byway.Thrift.Data
tmp3.Append("Id: ");
Id.ToString(tmp3);
}
if((Key != null) && __isset.@key)
if((Key != null) && __isset.Key)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("Key: ");

View File

@ -41,9 +41,9 @@ namespace Byway.Thrift.Data
public partial class RankDataItem : TBase
{
private int _Id;
private int _lv;
private int _exp;
private string _reward;
private int _Lv;
private int _Exp;
private string _Reward;
[DataMember(Order = 0)]
public int Id
@ -64,12 +64,12 @@ namespace Byway.Thrift.Data
{
get
{
return _lv;
return _Lv;
}
set
{
__isset.@lv = true;
this._lv = value;
__isset.Lv = true;
this._Lv = value;
}
}
@ -78,12 +78,12 @@ namespace Byway.Thrift.Data
{
get
{
return _exp;
return _Exp;
}
set
{
__isset.@exp = true;
this._exp = value;
__isset.Exp = true;
this._Exp = value;
}
}
@ -92,12 +92,12 @@ namespace Byway.Thrift.Data
{
get
{
return _reward;
return _Reward;
}
set
{
__isset.@reward = true;
this._reward = value;
__isset.Reward = true;
this._Reward = value;
}
}
@ -110,11 +110,11 @@ namespace Byway.Thrift.Data
[DataMember]
public bool Id;
[DataMember]
public bool @lv;
public bool Lv;
[DataMember]
public bool @exp;
public bool Exp;
[DataMember]
public bool @reward;
public bool Reward;
}
#region XmlSerializer support
@ -126,17 +126,17 @@ namespace Byway.Thrift.Data
public bool ShouldSerializeLv()
{
return __isset.@lv;
return __isset.Lv;
}
public bool ShouldSerializeExp()
{
return __isset.@exp;
return __isset.Exp;
}
public bool ShouldSerializeReward()
{
return __isset.@reward;
return __isset.Reward;
}
#endregion XmlSerializer support
@ -153,21 +153,21 @@ namespace Byway.Thrift.Data
tmp0.Id = this.Id;
}
tmp0.__isset.Id = this.__isset.Id;
if(__isset.@lv)
if(__isset.Lv)
{
tmp0.Lv = this.Lv;
}
tmp0.__isset.@lv = this.__isset.@lv;
if(__isset.@exp)
tmp0.__isset.Lv = this.__isset.Lv;
if(__isset.Exp)
{
tmp0.Exp = this.Exp;
}
tmp0.__isset.@exp = this.__isset.@exp;
if((Reward != null) && __isset.@reward)
tmp0.__isset.Exp = this.__isset.Exp;
if((Reward != null) && __isset.Reward)
{
tmp0.Reward = this.Reward;
}
tmp0.__isset.@reward = this.__isset.@reward;
tmp0.__isset.Reward = this.__isset.Reward;
return tmp0;
}
@ -261,27 +261,27 @@ namespace Byway.Thrift.Data
await oprot.WriteI32Async(Id, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if(__isset.@lv)
if(__isset.Lv)
{
tmp2.Name = "lv";
tmp2.Name = "Lv";
tmp2.Type = TType.I32;
tmp2.ID = 2;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
await oprot.WriteI32Async(Lv, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if(__isset.@exp)
if(__isset.Exp)
{
tmp2.Name = "exp";
tmp2.Name = "Exp";
tmp2.Type = TType.I32;
tmp2.ID = 3;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
await oprot.WriteI32Async(Exp, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if((Reward != null) && __isset.@reward)
if((Reward != null) && __isset.Reward)
{
tmp2.Name = "reward";
tmp2.Name = "Reward";
tmp2.Type = TType.String;
tmp2.ID = 4;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
@ -302,9 +302,9 @@ namespace Byway.Thrift.Data
if (!(that is RankDataItem other)) return false;
if (ReferenceEquals(this, other)) return true;
return ((__isset.Id == other.__isset.Id) && ((!__isset.Id) || (global::System.Object.Equals(Id, other.Id))))
&& ((__isset.@lv == other.__isset.@lv) && ((!__isset.@lv) || (global::System.Object.Equals(Lv, other.Lv))))
&& ((__isset.@exp == other.__isset.@exp) && ((!__isset.@exp) || (global::System.Object.Equals(Exp, other.Exp))))
&& ((__isset.@reward == other.__isset.@reward) && ((!__isset.@reward) || (global::System.Object.Equals(Reward, other.Reward))));
&& ((__isset.Lv == other.__isset.Lv) && ((!__isset.Lv) || (global::System.Object.Equals(Lv, other.Lv))))
&& ((__isset.Exp == other.__isset.Exp) && ((!__isset.Exp) || (global::System.Object.Equals(Exp, other.Exp))))
&& ((__isset.Reward == other.__isset.Reward) && ((!__isset.Reward) || (global::System.Object.Equals(Reward, other.Reward))));
}
public override int GetHashCode() {
@ -314,15 +314,15 @@ namespace Byway.Thrift.Data
{
hashcode = (hashcode * 397) + Id.GetHashCode();
}
if(__isset.@lv)
if(__isset.Lv)
{
hashcode = (hashcode * 397) + Lv.GetHashCode();
}
if(__isset.@exp)
if(__isset.Exp)
{
hashcode = (hashcode * 397) + Exp.GetHashCode();
}
if((Reward != null) && __isset.@reward)
if((Reward != null) && __isset.Reward)
{
hashcode = (hashcode * 397) + Reward.GetHashCode();
}
@ -340,19 +340,19 @@ namespace Byway.Thrift.Data
tmp3.Append("Id: ");
Id.ToString(tmp3);
}
if(__isset.@lv)
if(__isset.Lv)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("Lv: ");
Lv.ToString(tmp3);
}
if(__isset.@exp)
if(__isset.Exp)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("Exp: ");
Exp.ToString(tmp3);
}
if((Reward != null) && __isset.@reward)
if((Reward != null) && __isset.Reward)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("Reward: ");

View File

@ -46,7 +46,7 @@ namespace Byway.Thrift.Data
private int _Line;
private int _Lock;
private int _UnlockLv;
private string _remark;
private string _Remark;
[DataMember(Order = 0)]
public int Id
@ -137,12 +137,12 @@ namespace Byway.Thrift.Data
{
get
{
return _remark;
return _Remark;
}
set
{
__isset.@remark = true;
this._remark = value;
__isset.Remark = true;
this._Remark = value;
}
}
@ -165,7 +165,7 @@ namespace Byway.Thrift.Data
[DataMember]
public bool UnlockLv;
[DataMember]
public bool @remark;
public bool Remark;
}
#region XmlSerializer support
@ -202,7 +202,7 @@ namespace Byway.Thrift.Data
public bool ShouldSerializeRemark()
{
return __isset.@remark;
return __isset.Remark;
}
#endregion XmlSerializer support
@ -244,11 +244,11 @@ namespace Byway.Thrift.Data
tmp0.UnlockLv = this.UnlockLv;
}
tmp0.__isset.UnlockLv = this.__isset.UnlockLv;
if((Remark != null) && __isset.@remark)
if((Remark != null) && __isset.Remark)
{
tmp0.Remark = this.Remark;
}
tmp0.__isset.@remark = this.__isset.@remark;
tmp0.__isset.Remark = this.__isset.Remark;
return tmp0;
}
@ -417,9 +417,9 @@ namespace Byway.Thrift.Data
await oprot.WriteI32Async(UnlockLv, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if((Remark != null) && __isset.@remark)
if((Remark != null) && __isset.Remark)
{
tmp2.Name = "remark";
tmp2.Name = "Remark";
tmp2.Type = TType.String;
tmp2.ID = 7;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
@ -445,7 +445,7 @@ namespace Byway.Thrift.Data
&& ((__isset.Line == other.__isset.Line) && ((!__isset.Line) || (global::System.Object.Equals(Line, other.Line))))
&& ((__isset.@Lock == other.__isset.@Lock) && ((!__isset.@Lock) || (global::System.Object.Equals(Lock, other.Lock))))
&& ((__isset.UnlockLv == other.__isset.UnlockLv) && ((!__isset.UnlockLv) || (global::System.Object.Equals(UnlockLv, other.UnlockLv))))
&& ((__isset.@remark == other.__isset.@remark) && ((!__isset.@remark) || (global::System.Object.Equals(Remark, other.Remark))));
&& ((__isset.Remark == other.__isset.Remark) && ((!__isset.Remark) || (global::System.Object.Equals(Remark, other.Remark))));
}
public override int GetHashCode() {
@ -475,7 +475,7 @@ namespace Byway.Thrift.Data
{
hashcode = (hashcode * 397) + UnlockLv.GetHashCode();
}
if((Remark != null) && __isset.@remark)
if((Remark != null) && __isset.Remark)
{
hashcode = (hashcode * 397) + Remark.GetHashCode();
}
@ -523,7 +523,7 @@ namespace Byway.Thrift.Data
tmp3.Append("UnlockLv: ");
UnlockLv.ToString(tmp3);
}
if((Remark != null) && __isset.@remark)
if((Remark != null) && __isset.Remark)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("Remark: ");

View File

@ -41,8 +41,8 @@ namespace Byway.Thrift.Data
public partial class StartOrderItem : TBase
{
private int _Id;
private string _merge_id_list;
private int _fillCount;
private string _Merge_id_list;
private int _FillCount;
private string _Break;
[DataMember(Order = 0)]
@ -64,12 +64,12 @@ namespace Byway.Thrift.Data
{
get
{
return _merge_id_list;
return _Merge_id_list;
}
set
{
__isset.merge_id_list = true;
this._merge_id_list = value;
__isset.Merge_id_list = true;
this._Merge_id_list = value;
}
}
@ -78,12 +78,12 @@ namespace Byway.Thrift.Data
{
get
{
return _fillCount;
return _FillCount;
}
set
{
__isset.fillCount = true;
this._fillCount = value;
__isset.FillCount = true;
this._FillCount = value;
}
}
@ -110,9 +110,9 @@ namespace Byway.Thrift.Data
[DataMember]
public bool Id;
[DataMember]
public bool merge_id_list;
public bool Merge_id_list;
[DataMember]
public bool fillCount;
public bool FillCount;
[DataMember]
public bool @Break;
}
@ -126,12 +126,12 @@ namespace Byway.Thrift.Data
public bool ShouldSerializeMerge_id_list()
{
return __isset.merge_id_list;
return __isset.Merge_id_list;
}
public bool ShouldSerializeFillCount()
{
return __isset.fillCount;
return __isset.FillCount;
}
public bool ShouldSerializeBreak()
@ -153,16 +153,16 @@ namespace Byway.Thrift.Data
tmp0.Id = this.Id;
}
tmp0.__isset.Id = this.__isset.Id;
if((Merge_id_list != null) && __isset.merge_id_list)
if((Merge_id_list != null) && __isset.Merge_id_list)
{
tmp0.Merge_id_list = this.Merge_id_list;
}
tmp0.__isset.merge_id_list = this.__isset.merge_id_list;
if(__isset.fillCount)
tmp0.__isset.Merge_id_list = this.__isset.Merge_id_list;
if(__isset.FillCount)
{
tmp0.FillCount = this.FillCount;
}
tmp0.__isset.fillCount = this.__isset.fillCount;
tmp0.__isset.FillCount = this.__isset.FillCount;
if((Break != null) && __isset.@Break)
{
tmp0.Break = this.Break;
@ -261,18 +261,18 @@ namespace Byway.Thrift.Data
await oprot.WriteI32Async(Id, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if((Merge_id_list != null) && __isset.merge_id_list)
if((Merge_id_list != null) && __isset.Merge_id_list)
{
tmp2.Name = "merge_id_list";
tmp2.Name = "Merge_id_list";
tmp2.Type = TType.String;
tmp2.ID = 2;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
await oprot.WriteStringAsync(Merge_id_list, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if(__isset.fillCount)
if(__isset.FillCount)
{
tmp2.Name = "fillCount";
tmp2.Name = "FillCount";
tmp2.Type = TType.I32;
tmp2.ID = 3;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
@ -302,8 +302,8 @@ namespace Byway.Thrift.Data
if (!(that is StartOrderItem other)) return false;
if (ReferenceEquals(this, other)) return true;
return ((__isset.Id == other.__isset.Id) && ((!__isset.Id) || (global::System.Object.Equals(Id, other.Id))))
&& ((__isset.merge_id_list == other.__isset.merge_id_list) && ((!__isset.merge_id_list) || (global::System.Object.Equals(Merge_id_list, other.Merge_id_list))))
&& ((__isset.fillCount == other.__isset.fillCount) && ((!__isset.fillCount) || (global::System.Object.Equals(FillCount, other.FillCount))))
&& ((__isset.Merge_id_list == other.__isset.Merge_id_list) && ((!__isset.Merge_id_list) || (global::System.Object.Equals(Merge_id_list, other.Merge_id_list))))
&& ((__isset.FillCount == other.__isset.FillCount) && ((!__isset.FillCount) || (global::System.Object.Equals(FillCount, other.FillCount))))
&& ((__isset.@Break == other.__isset.@Break) && ((!__isset.@Break) || (global::System.Object.Equals(Break, other.Break))));
}
@ -314,11 +314,11 @@ namespace Byway.Thrift.Data
{
hashcode = (hashcode * 397) + Id.GetHashCode();
}
if((Merge_id_list != null) && __isset.merge_id_list)
if((Merge_id_list != null) && __isset.Merge_id_list)
{
hashcode = (hashcode * 397) + Merge_id_list.GetHashCode();
}
if(__isset.fillCount)
if(__isset.FillCount)
{
hashcode = (hashcode * 397) + FillCount.GetHashCode();
}
@ -340,13 +340,13 @@ namespace Byway.Thrift.Data
tmp3.Append("Id: ");
Id.ToString(tmp3);
}
if((Merge_id_list != null) && __isset.merge_id_list)
if((Merge_id_list != null) && __isset.Merge_id_list)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("Merge_id_list: ");
Merge_id_list.ToString(tmp3);
}
if(__isset.fillCount)
if(__isset.FillCount)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("FillCount: ");

View File

@ -45,7 +45,7 @@ namespace Byway.Thrift.Data
private int _Row;
private int _Line;
private int _Lock;
private string _remark;
private string _Remark;
[DataMember(Order = 0)]
public int Id
@ -122,12 +122,12 @@ namespace Byway.Thrift.Data
{
get
{
return _remark;
return _Remark;
}
set
{
__isset.@remark = true;
this._remark = value;
__isset.Remark = true;
this._Remark = value;
}
}
@ -148,7 +148,7 @@ namespace Byway.Thrift.Data
[DataMember]
public bool @Lock;
[DataMember]
public bool @remark;
public bool Remark;
}
#region XmlSerializer support
@ -180,7 +180,7 @@ namespace Byway.Thrift.Data
public bool ShouldSerializeRemark()
{
return __isset.@remark;
return __isset.Remark;
}
#endregion XmlSerializer support
@ -217,11 +217,11 @@ namespace Byway.Thrift.Data
tmp0.Lock = this.Lock;
}
tmp0.__isset.@Lock = this.__isset.@Lock;
if((Remark != null) && __isset.@remark)
if((Remark != null) && __isset.Remark)
{
tmp0.Remark = this.Remark;
}
tmp0.__isset.@remark = this.__isset.@remark;
tmp0.__isset.Remark = this.__isset.Remark;
return tmp0;
}
@ -371,9 +371,9 @@ namespace Byway.Thrift.Data
await oprot.WriteI32Async(Lock, cancellationToken);
await oprot.WriteFieldEndAsync(cancellationToken);
}
if((Remark != null) && __isset.@remark)
if((Remark != null) && __isset.Remark)
{
tmp2.Name = "remark";
tmp2.Name = "Remark";
tmp2.Type = TType.String;
tmp2.ID = 6;
await oprot.WriteFieldBeginAsync(tmp2, cancellationToken);
@ -398,7 +398,7 @@ namespace Byway.Thrift.Data
&& ((__isset.Row == other.__isset.Row) && ((!__isset.Row) || (global::System.Object.Equals(Row, other.Row))))
&& ((__isset.Line == other.__isset.Line) && ((!__isset.Line) || (global::System.Object.Equals(Line, other.Line))))
&& ((__isset.@Lock == other.__isset.@Lock) && ((!__isset.@Lock) || (global::System.Object.Equals(Lock, other.Lock))))
&& ((__isset.@remark == other.__isset.@remark) && ((!__isset.@remark) || (global::System.Object.Equals(Remark, other.Remark))));
&& ((__isset.Remark == other.__isset.Remark) && ((!__isset.Remark) || (global::System.Object.Equals(Remark, other.Remark))));
}
public override int GetHashCode() {
@ -424,7 +424,7 @@ namespace Byway.Thrift.Data
{
hashcode = (hashcode * 397) + Lock.GetHashCode();
}
if((Remark != null) && __isset.@remark)
if((Remark != null) && __isset.Remark)
{
hashcode = (hashcode * 397) + Remark.GetHashCode();
}
@ -466,7 +466,7 @@ namespace Byway.Thrift.Data
tmp3.Append("Lock: ");
Lock.ToString(tmp3);
}
if((Remark != null) && __isset.@remark)
if((Remark != null) && __isset.Remark)
{
if(0 < tmp4++) { tmp3.Append(", "); }
tmp3.Append("Remark: ");

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct AdGiftDataItem
{
1:i32 Id, // Id
@ -9,7 +8,6 @@ struct AdGiftDataItem
4:string ItemReward, //
}
struct AdGiftData
{
1:map<i32,AdGiftDataItem> adgiftdatas,

View File

@ -1,4 +1,5 @@
namespace netstd Byway.Thrift.Data
include "AdGiftData.thrift"
include "BagItemConfig.thrift"
include "BonusValue.thrift"
@ -170,4 +171,4 @@ struct AllConfigs
82:WeekTaskReward.WeekTaskReward WeekTaskReward,
83:LevelLauncherData.LevelLauncherData LevelLauncherData,
84:NickNameRandomData.NickNameRandomData NickNameRandomData,
}
}

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct BagItemConfigItem
{
1:i32 Id, // Id
@ -9,7 +8,6 @@ struct BagItemConfigItem
4:i32 TrueId,
}
struct BagItemConfig
{
1:map<i32,BagItemConfigItem> bagitemconfigs,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct BonusValueItem
{
1:i32 Id, // Id
@ -11,7 +10,6 @@ struct BonusValueItem
6:double OldPrice, //
}
struct BonusValue
{
1:map<i32,BonusValueItem> bonusvalues,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct CardDetailCfgItem
{
1:i32 Id, // Id
@ -14,7 +13,6 @@ struct CardDetailCfgItem
9:i32 Round,
}
struct CardDetailCfg
{
1:map<i32,CardDetailCfgItem> carddetailcfgs,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct CardPackCfgItem
{
1:i32 Id, // Id
@ -11,7 +10,6 @@ struct CardPackCfgItem
6:i32 GoldRate,
}
struct CardPackCfg
{
1:map<i32,CardPackCfgItem> cardpackcfgs,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct CardStickerExchangeCfgItem
{
1:i32 Id, // Id
@ -10,7 +9,6 @@ struct CardStickerExchangeCfgItem
5:string RewardCnt,
}
struct CardStickerExchangeCfg
{
1:map<i32,CardStickerExchangeCfgItem> cardstickerexchangecfgs,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct CatTrickDataItem
{
1:i32 Id, // id
@ -10,7 +9,6 @@ struct CatTrickDataItem
5:i32 Energy, // 1
}
struct CatTrickData
{
1:map<i32,CatTrickDataItem> cattrickdatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct CatsGardenMultiplyDataItem
{
1:i32 Id, //
@ -9,7 +8,6 @@ struct CatsGardenMultiplyDataItem
4:i32 High, //
}
struct CatsGardenMultiplyData
{
1:map<i32,CatsGardenMultiplyDataItem> catsgardenmultiplydatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct CatsGardenProgressDataItem
{
1:i32 Id, // Id
@ -9,7 +8,6 @@ struct CatsGardenProgressDataItem
4:string Items, //
}
struct CatsGardenProgressData
{
1:map<i32,CatsGardenProgressDataItem> catsgardenprogressdatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct CatsGardenSlotDataItem
{
1:i32 Id, // Id
@ -10,7 +9,6 @@ struct CatsGardenSlotDataItem
5:i32 Growth, //
}
struct CatsGardenSlotData
{
1:map<i32,CatsGardenSlotDataItem> catsgardenslotdatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct CatsGardenTempleteDataItem
{
1:i32 Id, // Id
@ -11,7 +10,6 @@ struct CatsGardenTempleteDataItem
6:string Reward, //
}
struct CatsGardenTempleteData
{
1:map<i32,CatsGardenTempleteDataItem> catsgardentempletedatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct ChampshipCfgItem
{
1:i32 Id, // Id
@ -10,7 +9,6 @@ struct ChampshipCfgItem
5:string Button,
}
struct ChampshipCfg
{
1:map<i32,ChampshipCfgItem> champshipcfgs,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct ChampshipRankRewardItem
{
1:i32 Id, // Id
@ -12,7 +11,6 @@ struct ChampshipRankRewardItem
7:double People100, // 100
}
struct ChampshipRankReward
{
1:map<i32,ChampshipRankRewardItem> champshiprankrewards,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct ChampshipScoreRewardItem
{
1:i32 Id, // Id
@ -9,7 +8,6 @@ struct ChampshipScoreRewardItem
4:i32 SortId, //
}
struct ChampshipScoreReward
{
1:map<i32,ChampshipScoreRewardItem> champshipscorerewards,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct ChineseResMapItem
{
1:i32 Id, // Id
@ -8,7 +7,6 @@ struct ChineseResMapItem
3:string Chinese, //
}
struct ChineseResMap
{
1:map<i32,ChineseResMapItem> chineseresmaps,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct CollectionRoomRewardItem
{
1:i32 Id, // Id
@ -10,7 +9,6 @@ struct CollectionRoomRewardItem
5:string ItemReward3, // 3
}
struct CollectionRoomReward
{
1:map<i32,CollectionRoomRewardItem> collectionroomrewards,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct CollectionsRewardsDataItem
{
1:i32 Id, // Id
@ -10,7 +9,6 @@ struct CollectionsRewardsDataItem
5:i32 ClientNeed, //
}
struct CollectionsRewardsData
{
1:map<i32,CollectionsRewardsDataItem> collectionsrewardsdatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct ComboGiftItem
{
1:i32 Id, // Id
@ -9,7 +8,6 @@ struct ComboGiftItem
4:string ItemReward, //
}
struct ComboGift
{
1:map<i32,ComboGiftItem> combogifts,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct ComboGiftTwoItem
{
1:i32 Id, // Id
@ -8,7 +7,6 @@ struct ComboGiftTwoItem
3:string ItemReward, //
}
struct ComboGiftTwo
{
1:map<i32,ComboGiftTwoItem> combogifttwos,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct DailyTaskActiveCfgItem
{
1:i32 Id, // Id
@ -9,7 +8,6 @@ struct DailyTaskActiveCfgItem
4:i32 Active,
}
struct DailyTaskActiveCfg
{
1:map<i32,DailyTaskActiveCfgItem> dailytaskactivecfgs,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct DailyTaskConfigItem
{
1:i32 Id, // Id
@ -14,7 +13,6 @@ struct DailyTaskConfigItem
9:i32 Active,
}
struct DailyTaskConfig
{
1:map<i32,DailyTaskConfigItem> dailytaskconfigs,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct DailyTaskDetailItem
{
1:i32 Id, // Id
@ -10,7 +9,6 @@ struct DailyTaskDetailItem
5:string Title, //
}
struct DailyTaskDetail
{
1:map<i32,DailyTaskDetailItem> dailytaskdetails,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct DailyTaskRewardItem
{
1:i32 Id, // Id
@ -9,7 +8,6 @@ struct DailyTaskRewardItem
4:i32 ScoreReward, //
}
struct DailyTaskReward
{
1:map<i32,DailyTaskRewardItem> dailytaskrewards,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct DecorateCostItem
{
1:i32 Id, // Id
@ -22,7 +21,6 @@ struct DecorateCostItem
17:string PetExp, //
}
struct DecorateCost
{
1:map<i32,DecorateCostItem> decoratecosts,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct DialogDataItem
{
1:i32 Id, // Id
@ -17,7 +16,6 @@ struct DialogDataItem
12:string Status, //
}
struct DialogData
{
1:map<i32,DialogDataItem> dialogdatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct EmiterRetreatDataItem
{
1:i32 Id, // Id
@ -10,7 +9,6 @@ struct EmiterRetreatDataItem
5:string Retreat_Emit_ID, //
}
struct EmiterRetreatData
{
1:map<i32,EmiterRetreatDataItem> emiterretreatdatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct EmojiDataItem
{
1:i32 Id, // Id
@ -10,7 +9,6 @@ struct EmojiDataItem
5:string Spine, //
}
struct EmojiData
{
1:map<i32,EmojiDataItem> emojidatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct EndlessGiftItem
{
1:i32 Id, // Id
@ -9,7 +8,6 @@ struct EndlessGiftItem
4:double SellPrice, //
}
struct EndlessGift
{
1:map<i32,EndlessGiftItem> endlessgifts,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct EnergyLimitGiftItem
{
1:i32 Id, // Id
@ -8,7 +7,6 @@ struct EnergyLimitGiftItem
3:double PayPrice, //
}
struct EnergyLimitGift
{
1:map<i32,EnergyLimitGiftItem> energylimitgifts,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct FrameDataItem
{
1:i32 Id, // Id
@ -12,7 +11,6 @@ struct FrameDataItem
7:string FrameImageScale, //
}
struct FrameData
{
1:map<i32,FrameDataItem> framedatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct GrowthFundItem
{
1:i32 Id, // Id
@ -12,7 +11,6 @@ struct GrowthFundItem
7:string Describe,
}
struct GrowthFund
{
1:map<i32,GrowthFundItem> growthfunds,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct GuessRewardItem
{
1:i32 Id, // Id
@ -9,7 +8,6 @@ struct GuessRewardItem
4:string Reward_2, //
}
struct GuessReward
{
1:map<i32,GuessRewardItem> guessrewards,

View File

@ -1,20 +1,18 @@
namespace netstd Byway.Thrift.Data
struct GuideDataItem
{
1:i32 Id, // Id
2:string targetStr, //
3:i32 fingerType, //
4:string title, //
5:string titlePos, //
6:string expression, //
7:string other, //
8:string disappear, //
9:string remark, //
2:string TargetStr, //
3:i32 FingerType, //
4:string Title, //
5:string TitlePos, //
6:string Expression, //
7:string Other, //
8:string Disappear, //
9:string Remark, //
}
struct GuideData
{
1:map<i32,GuideDataItem> guidedatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct HandbookRewardItem
{
1:i32 Id, // Id
@ -8,7 +7,6 @@ struct HandbookRewardItem
3:string Reward, //
}
struct HandbookReward
{
1:map<i32,HandbookRewardItem> handbookrewards,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct HeadDataItem
{
1:i32 Id, // Id
@ -9,7 +8,6 @@ struct HeadDataItem
4:string Icon, //
}
struct HeadData
{
1:map<i32,HeadDataItem> headdatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct HowToPlayItem
{
1:i32 Id, // Id
@ -8,7 +7,6 @@ struct HowToPlayItem
3:string Tip, //
}
struct HowToPlay
{
1:map<i32,HowToPlayItem> howtoplays,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct IndoorProgressItem
{
1:i32 Id, // Id
@ -14,7 +13,6 @@ struct IndoorProgressItem
9:i32 Part, //
}
struct IndoorProgress
{
1:map<i32,IndoorProgressItem> indoorprogresss,

View File

@ -1,16 +1,14 @@
namespace netstd Byway.Thrift.Data
struct LanguageDataItem
{
1:i32 Id, //
2:string key, //
3:string en_US, //
4:string zh_CN, //
5:string pt_BR, // (西)
2:string Key, //
3:string En_US, //
4:string Zh_CN, //
5:string Pt_BR, // (西)
}
struct LanguageData
{
1:map<i32,LanguageDataItem> languagedatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct LevelDataItem
{
1:i32 Id, //
@ -12,7 +11,6 @@ struct LevelDataItem
7:string RetireEmit, // 退
}
struct LevelData
{
1:map<i32,LevelDataItem> leveldatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct LevelLauncherDataItem
{
1:i32 Id, // Id
@ -9,7 +8,6 @@ struct LevelLauncherDataItem
4:string Picture, //
}
struct LevelLauncherData
{
1:map<i32,LevelLauncherDataItem> levellauncherdatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct LuckyCatDataItem
{
1:i32 Id, // id
@ -8,7 +7,6 @@ struct LuckyCatDataItem
3:i32 Earn, //
}
struct LuckyCatData
{
1:map<i32,LuckyCatDataItem> luckycatdatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct LuckyCatProbabilityItem
{
1:i32 Id, //
@ -10,7 +9,6 @@ struct LuckyCatProbabilityItem
5:i32 EnergyEfficiencyValue, //
}
struct LuckyCatProbability
{
1:map<i32,LuckyCatProbabilityItem> luckycatprobabilitys,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct MainCardCollectItem
{
1:i32 Id, // Id
@ -12,7 +11,6 @@ struct MainCardCollectItem
7:i32 Round,
}
struct MainCardCollect
{
1:map<i32,MainCardCollectItem> maincardcollects,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct MergeDataItem
{
1:i32 Id, // Id
@ -32,7 +31,6 @@ struct MergeDataItem
27:string Dynamic3, // n==6
}
struct MergeData
{
1:map<i32,MergeDataItem> mergedatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct MileStoneDetailItem
{
1:i32 Id, // Id
@ -12,7 +11,6 @@ struct MileStoneDetailItem
7:string Icon, //
}
struct MileStoneDetail
{
1:map<i32,MileStoneDetailItem> milestonedetails,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct MileStoneRewardItem
{
1:i32 Id, // Id
@ -9,7 +8,6 @@ struct MileStoneRewardItem
4:i32 ScoreTotal, //
}
struct MileStoneReward
{
1:map<i32,MileStoneRewardItem> milestonerewards,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct MiningRewardItem
{
1:i32 Id, // Id
@ -10,7 +9,6 @@ struct MiningRewardItem
5:string Reward, //
}
struct MiningReward
{
1:map<i32,MiningRewardItem> miningrewards,

View File

@ -1,15 +1,13 @@
namespace netstd Byway.Thrift.Data
struct MultiLanguageResourceItem
{
1:i32 Id, // int
2:string key, // string
2:string Key, // string
3:string English, // string
4:string ChineseSimplified, // string
}
struct MultiLanguageResource
{
1:map<i32,MultiLanguageResourceItem> multilanguageresources,

View File

@ -1,13 +1,11 @@
namespace netstd Byway.Thrift.Data
struct MusicItem
{
1:i32 Id, //
2:string AssetName, //
}
struct Music
{
1:map<i32,MusicItem> musics,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct NPCFriendsDataItem
{
1:i32 Id, // Id
@ -15,7 +14,6 @@ struct NPCFriendsDataItem
10:i32 Fail, //
}
struct NPCFriendsData
{
1:map<i32,NPCFriendsDataItem> npcfriendsdatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct NetAssetDataItem
{
1:i32 Id, //
@ -15,7 +14,6 @@ struct NetAssetDataItem
10:string Remark_2, //
}
struct NetAssetData
{
1:map<i32,NetAssetDataItem> netassetdatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct NetworkItemDataItem
{
1:i32 Id, // Id
@ -10,7 +9,6 @@ struct NetworkItemDataItem
5:string Res, //
}
struct NetworkItemData
{
1:map<i32,NetworkItemDataItem> networkitemdatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct NewbieDailyTaskCfgItem
{
1:i32 Id, // Id
@ -12,7 +11,6 @@ struct NewbieDailyTaskCfgItem
7:string LangID,
}
struct NewbieDailyTaskCfg
{
1:map<i32,NewbieDailyTaskCfgItem> newbiedailytaskcfgs,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct NewbieScoreCfgItem
{
1:i32 Id, // Id
@ -8,7 +7,6 @@ struct NewbieScoreCfgItem
3:string Reward,
}
struct NewbieScoreCfg
{
1:map<i32,NewbieScoreCfgItem> newbiescorecfgs,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct NickNameRandomDataItem
{
1:i32 Id, // id
@ -13,7 +12,6 @@ struct NickNameRandomDataItem
8:string PortugueseNoun, //
}
struct NickNameRandomData
{
1:map<i32,NickNameRandomDataItem> nicknamerandomdatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct PassOneItem
{
1:i32 Id, // Id
@ -13,7 +12,6 @@ struct PassOneItem
8:i32 Hour, //
}
struct PassOne
{
1:map<i32,PassOneItem> passones,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct PetAdWorkGiftItem
{
1:i32 Id, // Id
@ -13,7 +12,6 @@ struct PetAdWorkGiftItem
8:i32 ChargeId,
}
struct PetAdWorkGift
{
1:map<i32,PetAdWorkGiftItem> petadworkgifts,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct PetAirItemItem
{
1:i32 Id, // Id
@ -10,7 +9,6 @@ struct PetAirItemItem
5:string Model, //
}
struct PetAirItem
{
1:map<i32,PetAirItemItem> petairitems,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct PetCareItemItem
{
1:i32 Id, // Id
@ -20,7 +19,6 @@ struct PetCareItemItem
15:string Name,
}
struct PetCareItem
{
1:map<i32,PetCareItemItem> petcareitems,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct PetCoinGiftItem
{
1:i32 Id, // Id
@ -9,7 +8,6 @@ struct PetCoinGiftItem
4:double Price_Old, //
}
struct PetCoinGift
{
1:map<i32,PetCoinGiftItem> petcoingifts,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct PetDailyTaskCfgItem
{
1:i32 Id, // Id
@ -11,7 +10,6 @@ struct PetDailyTaskCfgItem
6:i32 GoTo,
}
struct PetDailyTaskCfg
{
1:map<i32,PetDailyTaskCfgItem> petdailytaskcfgs,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct PetDressItemItem
{
1:i32 Id, // Id
@ -14,7 +13,6 @@ struct PetDressItemItem
9:i32 Show,
}
struct PetDressItem
{
1:map<i32,PetDressItemItem> petdressitems,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct PetHomeDecorateListItem
{
1:i32 Id, //
@ -12,7 +11,6 @@ struct PetHomeDecorateListItem
7:string Chinese, //
}
struct PetHomeDecorateList
{
1:map<i32,PetHomeDecorateListItem> pethomedecoratelists,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct PetPlayJoyItemItem
{
1:i32 Id, // Id
@ -19,7 +18,6 @@ struct PetPlayJoyItemItem
14:string Name,
}
struct PetPlayJoyItem
{
1:map<i32,PetPlayJoyItemItem> petplayjoyitems,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct PetRoomUnlockCfgItem
{
1:i32 Id, // Id
@ -9,7 +8,6 @@ struct PetRoomUnlockCfgItem
4:string Title,
}
struct PetRoomUnlockCfg
{
1:map<i32,PetRoomUnlockCfgItem> petroomunlockcfgs,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct PetShopItemItem
{
1:i32 Id, // Id
@ -23,7 +22,6 @@ struct PetShopItemItem
18:string Name,
}
struct PetShopItem
{
1:map<i32,PetShopItemItem> petshopitems,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct PlayHomeDecorateCfgItem
{
1:i32 Id, //
@ -18,7 +17,6 @@ struct PlayHomeDecorateCfgItem
13:string GoName,
}
struct PlayHomeDecorateCfg
{
1:map<i32,PlayHomeDecorateCfgItem> playhomedecoratecfgs,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct PromotionPackItem
{
1:i32 Id, // Id
@ -12,7 +11,6 @@ struct PromotionPackItem
7:double Price_Old, //
}
struct PromotionPack
{
1:map<i32,PromotionPackItem> promotionpacks,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct RaceRewardItem
{
1:i32 Id, // Id
@ -11,7 +10,6 @@ struct RaceRewardItem
6:string LimitReward, //
}
struct RaceReward
{
1:map<i32,RaceRewardItem> racerewards,

View File

@ -1,15 +1,13 @@
namespace netstd Byway.Thrift.Data
struct RankDataItem
{
1:i32 Id, //
2:i32 lv, //
3:i32 exp, //
4:string reward, //
2:i32 Lv, //
3:i32 Exp, //
4:string Reward, //
}
struct RankData
{
1:map<i32,RankDataItem> rankdatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct RegionDataItem
{
1:i32 Id, // Id
@ -10,7 +9,6 @@ struct RegionDataItem
5:i32 PhoneCode,
}
struct RegionData
{
1:map<i32,RegionDataItem> regiondatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct SceneDataItem
{
1:i32 Id, // Id
@ -11,7 +10,6 @@ struct SceneDataItem
6:string IconGray, // ???
}
struct SceneData
{
1:map<i32,SceneDataItem> scenedatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct SevenLoginCfgItem
{
1:i32 Id, // Id
@ -8,7 +7,6 @@ struct SevenLoginCfgItem
3:string RewardCnt, // Id
}
struct SevenLoginCfg
{
1:map<i32,SevenLoginCfgItem> sevenlogincfgs,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct ShopItemItem
{
1:i32 Id, // Id
@ -13,7 +12,6 @@ struct ShopItemItem
8:string MoreTip, //
}
struct ShopItem
{
1:map<i32,ShopItemItem> shopitems,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct ShopPackItem
{
1:i32 Id, // Id
@ -12,7 +11,6 @@ struct ShopPackItem
7:i32 TotalCount, //
}
struct ShopPack
{
1:map<i32,ShopPackItem> shoppacks,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct ShopSpecialItem
{
1:i32 Id, // Id
@ -10,7 +9,6 @@ struct ShopSpecialItem
5:double PayPrice, //
}
struct ShopSpecial
{
1:map<i32,ShopSpecialItem> shopspecials,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct SignInDataItem
{
1:i32 Id, // Id
@ -9,7 +8,6 @@ struct SignInDataItem
4:string Reward, //
}
struct SignInData
{
1:map<i32,SignInDataItem> signindatas,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct SoundItem
{
1:i32 Id, //
@ -12,7 +11,6 @@ struct SoundItem
7:double MaxDistance, //
}
struct Sound
{
1:map<i32,SoundItem> sounds,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct StartMergeItem
{
1:i32 Id, // Id
@ -9,10 +8,9 @@ struct StartMergeItem
4:i32 Line, //
5:i32 Lock, //
6:i32 UnlockLv, //
7:string remark, //
7:string Remark, //
}
struct StartMerge
{
1:map<i32,StartMergeItem> startmerges,

View File

@ -1,15 +1,13 @@
namespace netstd Byway.Thrift.Data
struct StartOrderItem
{
1:i32 Id, // Id
2:string merge_id_list, // Id数组
3:i32 fillCount, //
2:string Merge_id_list, // Id数组
3:i32 FillCount, //
4:string Break, //
}
struct StartOrder
{
1:map<i32,StartOrderItem> startorders,

View File

@ -1,13 +1,11 @@
namespace netstd Byway.Thrift.Data
struct TurnTableCfgItem
{
1:i32 Id, // Id
2:string RewardInfo, //
}
struct TurnTableCfg
{
1:map<i32,TurnTableCfgItem> turntablecfgs,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct UIFormItem
{
1:i32 Id, //
@ -12,7 +11,6 @@ struct UIFormItem
7:i32 AddBg,
}
struct UIForm
{
1:map<i32,UIFormItem> uiforms,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct WashStartMergeItem
{
1:i32 Id, // Id
@ -8,10 +7,9 @@ struct WashStartMergeItem
3:i32 Row, //
4:i32 Line, //
5:i32 Lock, //
6:string remark, //
6:string Remark, //
}
struct WashStartMerge
{
1:map<i32,WashStartMergeItem> washstartmerges,

View File

@ -1,6 +1,5 @@
namespace netstd Byway.Thrift.Data
struct WeekTaskRewardItem
{
1:i32 Id, // Id
@ -8,7 +7,6 @@ struct WeekTaskRewardItem
3:i32 NeedActive, //
}
struct WeekTaskReward
{
1:map<i32,WeekTaskRewardItem> weektaskrewards,