You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
538 B
C#
17 lines
538 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace TradeServer
|
|
{
|
|
public class StaticModel
|
|
{
|
|
public static string FedexReadTime = "";
|
|
public static string OrderReadTime = ""; //每天定时读取订单
|
|
public static int OrderDelayTime = 10; //因网络原因订单读取失败,延迟多少分钟再读取
|
|
public static int OrderReadNum = 5; //每天最多读取失败几次
|
|
public static int OrderJGTime = 24; //间隔几小时读取
|
|
}
|
|
}
|