|
@@ -38,7 +38,7 @@ namespace MySystem
|
|
|
{
|
|
|
while (true)
|
|
|
{
|
|
|
- string content = RedisDbconn.Instance.RPop<string>("ResetMerchantStatDataQueue");
|
|
|
+ string content = RedisDbconn.Instance.RPop<string>("ResetMerchantStatDataQueue2");
|
|
|
if(!string.IsNullOrEmpty(content))
|
|
|
{
|
|
|
StatResetMerchantAmount(content);
|
|
@@ -111,7 +111,7 @@ namespace MySystem
|
|
|
{
|
|
|
while (true)
|
|
|
{
|
|
|
- string content = RedisDbconn.Instance.RPop<string>("ResetSnStatDataQueue");
|
|
|
+ string content = RedisDbconn.Instance.RPop<string>("ResetSnStatDataQueue2");
|
|
|
if(!string.IsNullOrEmpty(content))
|
|
|
{
|
|
|
StatResetSnAmount(content);
|
|
@@ -184,7 +184,7 @@ namespace MySystem
|
|
|
{
|
|
|
while (true)
|
|
|
{
|
|
|
- string content = RedisDbconn.Instance.RPop<string>("ResetUserSelfStatDataQueue");
|
|
|
+ string content = RedisDbconn.Instance.RPop<string>("ResetUserSelfStatDataQueue2");
|
|
|
if(!string.IsNullOrEmpty(content))
|
|
|
{
|
|
|
StatResetUserSelfAmount(content);
|
|
@@ -246,7 +246,7 @@ namespace MySystem
|
|
|
foreach(string id in ParentNavList)
|
|
|
{
|
|
|
string reqdata = "{\"UserId\":\"" + id + "\",\"StartDate\":\"" + startDate + "\",\"EndDate\":\"" + endDate + "\"}";
|
|
|
- RedisDbconn.Instance.AddList("ResetUserTeamStatDataQueue", reqdata);
|
|
|
+ RedisDbconn.Instance.AddList("ResetUserTeamStatDataQueue2", reqdata);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -268,7 +268,7 @@ namespace MySystem
|
|
|
{
|
|
|
while (true)
|
|
|
{
|
|
|
- string content = RedisDbconn.Instance.RPop<string>("ResetUserTeamStatDataQueue");
|
|
|
+ string content = RedisDbconn.Instance.RPop<string>("ResetUserTeamStatDataQueue2");
|
|
|
if(!string.IsNullOrEmpty(content))
|
|
|
{
|
|
|
StatResetUserTeamAmount(content);
|