ibms-MCUT/z01_WinAPP/Program.cs
jiahao 48a90ece43 1.debug: 水電表歸檔機制,結構調整
2.儲存於水電歸檔table 時需要先 四捨五入
3.報表匯出時,增加 join device 以過濾 deleted 的設備
2023-09-18 01:49:00 +08:00

27 lines
696 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using z01_WinAPP;
namespace tpDomeWinAPP
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
//Application.Run(new fmCheckTagName());
//Application.Run(new fmKeke());
Application.Run(new fmDecrypt());
}
}
}