提交修改
This commit is contained in:
@@ -28,6 +28,7 @@ public sealed partial class Item : Luban.BeanBase
|
||||
Length = (int)_obj.GetValue("length");
|
||||
Max = (int)_obj.GetValue("max");
|
||||
AutoUse = (int)_obj.GetValue("auto_use");
|
||||
Effect = (int)_obj.GetValue("effect");
|
||||
{ var __json0 = _obj.GetValue("result1"); Result1 = new System.Collections.Generic.List<int>((__json0 as JArray).Count); foreach(JToken __e0 in __json0) { int __v0; __v0 = (int)__e0; Result1.Add(__v0); } }
|
||||
{ var __json0 = _obj.GetValue("result2"); Result2 = new System.Collections.Generic.List<string>((__json0 as JArray).Count); foreach(JToken __e0 in __json0) { string __v0; __v0 = (string)__e0; Result2.Add(__v0); } }
|
||||
}
|
||||
@@ -70,6 +71,10 @@ public sealed partial class Item : Luban.BeanBase
|
||||
/// </summary>
|
||||
public readonly int AutoUse;
|
||||
/// <summary>
|
||||
/// 使用效果
|
||||
/// </summary>
|
||||
public readonly int Effect;
|
||||
/// <summary>
|
||||
/// 使用参数1
|
||||
/// </summary>
|
||||
public readonly System.Collections.Generic.List<int> Result1;
|
||||
@@ -97,6 +102,7 @@ public sealed partial class Item : Luban.BeanBase
|
||||
+ "length:" + Length + ","
|
||||
+ "max:" + Max + ","
|
||||
+ "autoUse:" + AutoUse + ","
|
||||
+ "effect:" + Effect + ","
|
||||
+ "result1:" + Luban.StringUtil.CollectionToString(Result1) + ","
|
||||
+ "result2:" + Luban.StringUtil.CollectionToString(Result2) + ","
|
||||
+ "}";
|
||||
|
||||
Reference in New Issue
Block a user