From 9dc4ba2599eda52aaae28e6f0ecbce3bac28714b Mon Sep 17 00:00:00 2001
From: zrg <z18737863051@163.com>
Date: 星期一, 23 九月 2024 09:49:50 +0800
Subject: [PATCH] 1.模具保养规程表头 增加 HErrWarQtys int --预警次数 2,模具保养计划单 主表 增加 HErrWarQtys int --预警次数 3.模具保养计划单 计划子表 增加 HSendFlag bit //是否发送信息 (发送钉钉) HErrBeginQty int --预警开始次数 HUseNowQty ?int --当前使用次数 HUseEndQty ?int --结束使用次数
---
LMES/Program.cs | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/LMES/Program.cs b/LMES/Program.cs
index c2a48b5..81a7262 100644
--- a/LMES/Program.cs
+++ b/LMES/Program.cs
@@ -15,6 +15,8 @@
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
+ //Application.Run(new DingDing_autoGetData());
+
DBUtility.ClsPub.AppPath = System.Environment.CurrentDirectory;
Pub_Class.ClsPub.AppPath = System.Environment.CurrentDirectory;
@@ -38,9 +40,9 @@
//============================================
BLL.FrmLogin frmlg = new BLL.FrmLogin();
frmlg.ShowDialog();
- if (frmlg.isOk)
+ if (frmlg.isOk)
{
- MDIMain MainFrm = new MDIMain();
+ MDIMain MainFrm = new MDIMain();
Application.Run(MainFrm);
}
}
--
Gitblit v1.9.1