31 lines
873 B
C#
31 lines
873 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MQTT_WinformV1.Model
|
|
{
|
|
/// <summary>
|
|
/// 全局静态类
|
|
/// </summary>
|
|
public class Globalstatic
|
|
{
|
|
|
|
//本地数据库配置
|
|
public static string localIP = "139.224.232.211";
|
|
public static string localPort = "3308";
|
|
public static string localDBName = "ay2509055-guiyang-fluorescence-lmes";
|
|
public static string localUser = "root";
|
|
public static string localPwd = "doantech123";
|
|
|
|
//MES数据库配置
|
|
public static string mesIP = "139.224.232.211";
|
|
public static string mesPort = "3308";
|
|
public static string mesDBName = "GXAssembly";
|
|
public static string mesUser = "root";
|
|
public static string mesPwd = "doantech123";
|
|
|
|
}
|
|
}
|