| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: YYL
|
| | | // [ Date ]: 2025年11月3日
|
| | | // [ Date ]: Friday, November 7, 2025
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using System.Collections.Generic;
|
| | |
| | | public int TaskType;
|
| | | public int[] TaskConds;
|
| | | public int NeedValue;
|
| | | public int AwardLiveness;
|
| | | public int[][] AwardItemList;
|
| | | public string Title;
|
| | | public int GuideID;
|
| | |
|
| | |
| | |
|
| | | int.TryParse(tables[3],out NeedValue);
|
| | |
|
| | | int.TryParse(tables[4],out AwardLiveness); |
| | | AwardItemList = JsonMapper.ToObject<int[][]>(tables[4].Replace("(", "[").Replace(")", "]")); |
| | |
|
| | | Title = tables[5];
|
| | |
|