1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
| using WindowsFormsApp1.entity.tb;
|
| namespace WindowsFormsApp1.utils
| {
| class Constant
| {
| public static Dictionary<int,TBAccountLogin> tbAccountMap = new Dictionary<int, TBAccountLogin>();
| public static Dictionary<int, String> sdljBaseUrl = new Dictionary<int, String>();
|
| public static String token="";
|
| //采集首单;立减开关
| public static bool parseSDLJOPen = true;
|
| }
| }
|
|