using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Uninpho.DBOperation.Model; using System.Windows.Forms; namespace Uninpho.Tools.components { /// /// 用户登录信息 /// public class UserInform { /// /// 用户存贮当前信息 /// public static Login_user userinf = new Login_user() { Pow = 1,Username="张三" }; public static bool isconnect = true; public static string sqkey = "ssry_this_is_dcbhfxrj_create_by_UninphoTeam.exe"; public static string CPUID = ""; public static string sqCode = ""; public static string sqDate = ""; public static string sqType = "Long"; } /// /// 自动化设置 /// public class zdhSetClass { /// /// 自动化配置路径 /// public static string path = Application.StartupPath + "\\zdh.ini"; /// /// 默认自动化设置 /// public static string initStr = @"startdate灬2022/10/19 00:00:00 folder灬" + Application.StartupPath + @"\dataFolder\ Interval灬7 isStartZDH灬0"; // public static string initStr = @"taskName:DaoChaZiDongHua_ //startdate:2022/10/19 00:00:00 //folder:" + Application.StartupPath + @"\dataFolder\ //Interval:7 //isStartZDH:0"; /// /// 自动化脚本 /// public static string zdhexe = Application.StartupPath + "\\ZDHscript.exe"; /// /// 是否已经加入了任务 0:未加入; 1:已加入 /// public static int isStartZDH = 0; /// /// 任务名 /// public static string taskName = "DaoChaZiDongHua_"; /// /// 日期 /// public static string startdate = "2022/10/19 00:00:00"; /// /// 路径 /// public static string folder = Application.StartupPath + @"\dataFolder\"; /// /// 循环周期 /// public static int Interval = 7; } }