From fb04a6a21b142c95834f96ee66116745034e72ad Mon Sep 17 00:00:00 2001
From: client_linchunjie <461730578@qq.com>
Date: 星期三, 15 八月 2018 16:52:51 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
---
Core/GameEngine/Model/Config/StoreConfig.cs | 73 +++++++++++++++++++-----------------
1 files changed, 38 insertions(+), 35 deletions(-)
diff --git a/Core/GameEngine/Model/Config/StoreConfig.cs b/Core/GameEngine/Model/Config/StoreConfig.cs
index 37cf41a..112272f 100644
--- a/Core/GameEngine/Model/Config/StoreConfig.cs
+++ b/Core/GameEngine/Model/Config/StoreConfig.cs
@@ -1,14 +1,14 @@
-锘�//--------------------------------------------------------
-// [Author]: 绗簩涓栫晫
-// [ Date ]: Tuesday, July 31, 2018
-//--------------------------------------------------------
-
-using UnityEngine;
-using System;
-
-namespace TableConfig {
-
-
+锘�//--------------------------------------------------------
+// [Author]: 绗簩涓栫晫
+// [ Date ]: Wednesday, August 15, 2018
+//--------------------------------------------------------
+
+using UnityEngine;
+using System;
+
+namespace TableConfig {
+
+
public partial class StoreConfig : ConfigBase {
public int ID { get ; private set ; }
@@ -31,13 +31,14 @@
public string SalesStatus { get ; private set; }
public int TheOnlyShop { get ; private set ; }
public int RemindSuccess { get ; private set ; }
-
+ public int IsHideSellOut { get ; private set ; }
+
public override string getKey()
{
return ID.ToString();
- }
-
- public override void Parse() {
+ }
+
+ public override void Parse() {
try
{
ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
@@ -60,20 +61,20 @@
RefreshType=IsNumeric(rawContents[9]) ? int.Parse(rawContents[9]):0;
- string[] VIPLVStringArray = rawContents[10].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries);
- VIPLV = new int[VIPLVStringArray.Length];
- for (int i=0;i<VIPLVStringArray.Length;i++)
- {
- int.TryParse(VIPLVStringArray[i],out VIPLV[i]);
+ string[] VIPLVStringArray = rawContents[10].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries);
+ VIPLV = new int[VIPLVStringArray.Length];
+ for (int i=0;i<VIPLVStringArray.Length;i++)
+ {
+ int.TryParse(VIPLVStringArray[i],out VIPLV[i]);
}
LV=IsNumeric(rawContents[11]) ? int.Parse(rawContents[11]):0;
- string[] PurchaseNumberStringArray = rawContents[12].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries);
- PurchaseNumber = new int[PurchaseNumberStringArray.Length];
- for (int i=0;i<PurchaseNumberStringArray.Length;i++)
- {
- int.TryParse(PurchaseNumberStringArray[i],out PurchaseNumber[i]);
+ string[] PurchaseNumberStringArray = rawContents[12].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries);
+ PurchaseNumber = new int[PurchaseNumberStringArray.Length];
+ for (int i=0;i<PurchaseNumberStringArray.Length;i++)
+ {
+ int.TryParse(PurchaseNumberStringArray[i],out PurchaseNumber[i]);
}
MoneyType=IsNumeric(rawContents[13]) ? int.Parse(rawContents[13]):0;
@@ -89,17 +90,19 @@
TheOnlyShop=IsNumeric(rawContents[18]) ? int.Parse(rawContents[18]):0;
RemindSuccess=IsNumeric(rawContents[19]) ? int.Parse(rawContents[19]):0;
+
+ IsHideSellOut=IsNumeric(rawContents[20]) ? int.Parse(rawContents[20]):0;
}
catch (Exception ex)
{
DebugEx.Log(ex);
- }
- }
-
- }
-
-}
-
-
-
-
+ }
+ }
+
+ }
+
+}
+
+
+
+
--
Gitblit v1.8.0