From 2bcf2e683f83dabd2245145633cfbddc1a12bd52 Mon Sep 17 00:00:00 2001 From: ck_yeun9 Date: Sun, 12 Jan 2025 14:46:37 +0800 Subject: [PATCH 1/7] Change control to Antd-UI. Add loadingprogress to more Form. Remove not use UserControl. --- .../AppFunction/FrmAboutUs.Designer.cs | 71 ++- .../AppFunction/FrmAboutUs.cs | 3 +- .../AppFunction/FrmAboutUs.resx | 54 +- .../AppFunction/FrmCheckOutForm.cs | 9 +- .../AppFunction/FrmCustoManager.Designer.cs | 18 +- .../AppFunction/FrmCustoManager.cs | 94 ++-- .../AppFunction/FrmCustoManager.resx | 37 +- .../FrmCustomerManager.Designer.cs | 509 +++++------------- .../AppFunction/FrmCustomerManager.cs | 257 +++++---- .../AppFunction/FrmCustomerManager.resx | 55 +- .../AppFunction/FrmEditInputs.cs | 12 +- .../AppFunction/FrmRoomManager.Designer.cs | 6 +- .../AppFunction/FrmRoomManager.resx | 4 +- .../ucCustomProgressBar.Designer.cs | 44 -- .../AppUserControls/ucCustomProgressBar.cs | 59 -- .../AppUserControls/ucCustomProgressBar.resx | 120 ----- .../AppUserControls/ucRoom.cs | 7 +- 17 files changed, 435 insertions(+), 924 deletions(-) delete mode 100644 EOM.TSHotelManager.FormUI/AppUserControls/ucCustomProgressBar.Designer.cs delete mode 100644 EOM.TSHotelManager.FormUI/AppUserControls/ucCustomProgressBar.cs delete mode 100644 EOM.TSHotelManager.FormUI/AppUserControls/ucCustomProgressBar.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.Designer.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.Designer.cs index 24cdbd6..44c1d6e 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.Designer.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.Designer.cs @@ -29,49 +29,46 @@ private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAboutUs)); - this.uiRichTextBox1 = new Sunny.UI.UIRichTextBox(); - this.SuspendLayout(); + uiRichTextBox1 = new Sunny.UI.UIRichTextBox(); + SuspendLayout(); // // uiRichTextBox1 // - this.uiRichTextBox1.AutoWordSelection = true; - this.uiRichTextBox1.BulletIndent = 5; - this.uiRichTextBox1.FillColor = System.Drawing.Color.White; - this.uiRichTextBox1.Font = new System.Drawing.Font("微软雅黑", 12F); - this.uiRichTextBox1.HideSelection = false; - this.uiRichTextBox1.Location = new System.Drawing.Point(6, 40); - this.uiRichTextBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); - this.uiRichTextBox1.MinimumSize = new System.Drawing.Size(1, 1); - this.uiRichTextBox1.Name = "uiRichTextBox1"; - this.uiRichTextBox1.Padding = new System.Windows.Forms.Padding(2); - this.uiRichTextBox1.Radius = 10; - this.uiRichTextBox1.ReadOnly = true; - this.uiRichTextBox1.Size = new System.Drawing.Size(539, 180); - this.uiRichTextBox1.Style = Sunny.UI.UIStyle.Custom; - this.uiRichTextBox1.TabIndex = 0; - this.uiRichTextBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; - this.uiRichTextBox1.WordWrap = true; + uiRichTextBox1.BulletIndent = 5; + uiRichTextBox1.FillColor = Color.White; + uiRichTextBox1.Font = new Font("微软雅黑", 12F); + uiRichTextBox1.HideSelection = false; + uiRichTextBox1.Location = new Point(4, 32); + uiRichTextBox1.Margin = new Padding(3, 4, 3, 4); + uiRichTextBox1.MinimumSize = new Size(1, 1); + uiRichTextBox1.Name = "uiRichTextBox1"; + uiRichTextBox1.Padding = new Padding(1, 2, 1, 2); + uiRichTextBox1.Radius = 10; + uiRichTextBox1.ReadOnly = true; + uiRichTextBox1.ScrollBarStyleInherited = false; + uiRichTextBox1.ShowText = false; + uiRichTextBox1.Size = new Size(377, 146); + uiRichTextBox1.Style = Sunny.UI.UIStyle.Custom; + uiRichTextBox1.TabIndex = 0; + uiRichTextBox1.TextAlignment = ContentAlignment.MiddleCenter; // // FrmAboutUs // - this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.ClientSize = new System.Drawing.Size(550, 228); - this.Controls.Add(this.uiRichTextBox1); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "FrmAboutUs"; - this.ShowIcon = true; - this.ShowTitleIcon = true; - this.Style = Sunny.UI.UIStyle.Custom; - this.Text = "关于我们"; - this.Load += new System.EventHandler(this.FrmAboutUs_Load); - this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.FrmAboutUs_MouseDown); - this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.FrmAboutUs_MouseMove); - this.ResumeLayout(false); - + AutoScaleDimensions = new SizeF(7F, 17F); + AutoScaleMode = AutoScaleMode.Font; + BackColor = Color.FromArgb(235, 243, 255); + ClientSize = new Size(390, 192); + Controls.Add(uiRichTextBox1); + Icon = (Icon)resources.GetObject("$this.Icon"); + Margin = new Padding(2, 2, 2, 2); + MaximizeBox = false; + MinimizeBox = false; + Name = "FrmAboutUs"; + Text = "关于我们"; + Load += FrmAboutUs_Load; + MouseDown += FrmAboutUs_MouseDown; + MouseMove += FrmAboutUs_MouseMove; + ResumeLayout(false); } #endregion diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.cs index 22519f3..f0f53d9 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.cs @@ -21,11 +21,12 @@ *SOFTWARE. * */ +using AntdUI; using Sunny.UI; namespace EOM.TSHotelManager.FormUI { - public partial class FrmAboutUs : UIForm + public partial class FrmAboutUs : Window { public FrmAboutUs() { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.resx b/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.resx index 8dd8416..4c87f86 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.resx +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.resx @@ -1,17 +1,17 @@  - diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckOutForm.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckOutForm.cs index c04d876..863681b 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckOutForm.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckOutForm.cs @@ -42,10 +42,12 @@ namespace EOM.TSHotelManager.FormUI public static string co_CustoType; public static string co_CustoID; public static HydroelectricPower w; + private LoadingProgress _loadingProgress; - public FrmCheckOutForm() + public FrmCheckOutForm(LoadingProgress loadingProgress) { InitializeComponent(); + _loadingProgress = loadingProgress; } ResponseMsg result = null; @@ -298,6 +300,11 @@ namespace EOM.TSHotelManager.FormUI } + if (_loadingProgress != null) + { + _loadingProgress.Close(); + } + } #endregion diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.Designer.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.Designer.cs index 8e53801..3e085ad 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.Designer.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.Designer.cs @@ -43,7 +43,6 @@ btnExport = new AntdUI.Button(); btnUpdate = new AntdUI.Button(); cbOnlyVip = new AntdUI.Checkbox(); - cbExportAll = new AntdUI.Checkbox(); divider1 = new AntdUI.Divider(); cmsCustoManager.SuspendLayout(); SuspendLayout(); @@ -81,7 +80,7 @@ btnPg.Name = "btnPg"; btnPg.PageSize = 15; btnPg.ShowSizeChanger = true; - btnPg.Size = new Size(405, 31); + btnPg.Size = new Size(530, 31); btnPg.TabIndex = 133; btnPg.Total = 100; btnPg.ValueChanged += btnPg_ValueChanged; @@ -190,23 +189,13 @@ // cbOnlyVip.AutoCheck = true; cbOnlyVip.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); - cbOnlyVip.Location = new Point(422, 538); + cbOnlyVip.Location = new Point(540, 538); cbOnlyVip.Name = "cbOnlyVip"; cbOnlyVip.Size = new Size(120, 23); cbOnlyVip.TabIndex = 147; cbOnlyVip.Text = "仅查看会员"; cbOnlyVip.CheckedChanged += cbOnlyVip_CheckedChanged; // - // cbExportAll - // - cbExportAll.AutoCheck = true; - cbExportAll.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Regular, GraphicsUnit.Point, 134); - cbExportAll.Location = new Point(559, 538); - cbExportAll.Name = "cbExportAll"; - cbExportAll.Size = new Size(108, 23); - cbExportAll.TabIndex = 148; - cbExportAll.Text = "导出全部"; - // // divider1 // divider1.ColorSplit = Color.Blue; @@ -224,7 +213,6 @@ ClientSize = new Size(1005, 623); ControlBox = false; Controls.Add(divider1); - Controls.Add(cbExportAll); Controls.Add(cbOnlyVip); Controls.Add(btnUpdate); Controls.Add(btnExport); @@ -241,6 +229,7 @@ MaximizeBox = false; MinimizeBox = false; Name = "FrmCustoManager"; + Resizable = false; Text = "客户信息管理"; Load += FrmCustoManager_Load; cmsCustoManager.ResumeLayout(false); @@ -262,7 +251,6 @@ private AntdUI.Button btnExport; private AntdUI.Button btnUpdate; private AntdUI.Checkbox cbOnlyVip; - private AntdUI.Checkbox cbExportAll; private AntdUI.Divider divider1; } } \ No newline at end of file diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.cs index bc2d0af..62d12db 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.cs @@ -48,9 +48,11 @@ namespace EOM.TSHotelManager.FormUI //定义委托类型的变量 public static ReloadCustomerList ReloadCusto; TableComHelper tableComHelper = null; + private LoadingProgress _loadingProgress; public FrmCustoManager() { InitializeComponent(); + _loadingProgress = new LoadingProgress(); ReloadCusto = LoadCustomer; tableComHelper = new TableComHelper(); } @@ -221,55 +223,47 @@ namespace EOM.TSHotelManager.FormUI private void btnExport_Click(object sender, EventArgs e) { - //// 调用之前定义的导出方法 - //ExportHelper exportHelper = new ExportHelper(); - //SaveFileDialog saveFileDialog = new SaveFileDialog(); - //// 设置保存对话框的属性 - //saveFileDialog.Filter = "2003~2007工作表*.xls|*.xls|2010及以上版本工作表*.xlsx|*.xlsx"; - //saveFileDialog.Title = cbExportAll.Checked ? "导出Excel文件(导出全部)" : "导出Excel文件(导出当前页)"; - //saveFileDialog.FileName = Convert.ToDateTime(DateTime.Now).ToString("yyyyMMddHHmmss") + "_" + "客户列表"; // 默认文件名 - //saveFileDialog.CheckPathExists = true; // 检查目录是否存在 - - //if (saveFileDialog.ShowDialog() == DialogResult.OK) - //{ - // // 用户确认保存,获取选择的文件路径 - // string filePath = saveFileDialog.FileName; - - // try - // { - // if (cbExportAll.Checked) - // { - // dic = new Dictionary() - // { - // { "pageIndex",null}, - // { "pageSize",null} - // }; - // ResponseMsg response = HttpHelper.Request("Custo/SelectCustoAll", null, dic); - // if (response.statusCode != 200) - // { - // AntdUI.Message.error(this,"SelectCustoAll+接口服务异常,请提交Issue或尝试更新版本!"); - // return; - // } - // OSelectAllDto custos = HttpHelper.JsonToModel>(response.message); - // exportHelper.ExportDataToExcel(custos.listSource, filePath, new List { "CustoSex", "PassportType", "CustoID", "CustoType", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date" }); - // } - // else - // { - // exportHelper.ExportDataTableToExcel(ConvertDataGridViewToDataTable(dgvCustomerList.CopyData(dgvCustomerList.SelectedIndex), filePath, new List { "Column1", "Column2", "Column3", "Column4" }); - // } - // AntdUI.Message.success(this,"导出成功!"); - // System.Diagnostics.Process.Start("Explorer.exe", filePath); - // #region 获取添加操作日志所需的信息 - // RecordHelper.Record(LoginInfo.WorkerClub + LoginInfo.WorkerName + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + Convert.ToDateTime(DateTime.Now) + "导出了" + "后台用户信息!", 3); - // #endregion - // } - // catch (Exception ex) - // { - // // 处理可能发生的任何错误 - // AntdUI.Message.error(this, $"导出失败: {ex.Message}"); - // } - //} - //// 如果用户取消了保存,则不执行任何操作 + // 调用之前定义的导出方法 + ExportHelper exportHelper = new ExportHelper(); + SaveFileDialog saveFileDialog = new SaveFileDialog(); + // 设置保存对话框的属性 + saveFileDialog.Filter = "2003~2007工作表*.xls|*.xls|2010及以上版本工作表*.xlsx|*.xlsx"; + saveFileDialog.Title = "导出Excel文件"; + saveFileDialog.FileName = Convert.ToDateTime(DateTime.Now).ToString("yyyyMMddHHmmss") + "_" + "客户列表"; // 默认文件名 + saveFileDialog.CheckPathExists = true; // 检查目录是否存在 + + if (saveFileDialog.ShowDialog() == DialogResult.OK) + { + // 用户确认保存,获取选择的文件路径 + string filePath = saveFileDialog.FileName; + + try + { + dic = new Dictionary() + { + { "pageIndex",null}, + { "pageSize",null} + }; + ResponseMsg response = HttpHelper.Request("Custo/SelectCustoAll", null, dic); + if (response.statusCode != 200) + { + AntdUI.Message.error(this, "SelectCustoAll+接口服务异常,请提交Issue或尝试更新版本!"); + return; + } + OSelectAllDto custos = HttpHelper.JsonToModel>(response.message); + exportHelper.ExportDataToExcel(custos.listSource, filePath, new List { "CustoSex", "PassportType", "CustoID", "CustoType", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date" }); + + AntdUI.Message.success(this, "导出成功!"); + System.Diagnostics.Process.Start("Explorer.exe", filePath); + #region 获取添加操作日志所需的信息 + RecordHelper.Record(LoginInfo.WorkerClub + LoginInfo.WorkerName + LoginInfo.WorkerPosition + LoginInfo.WorkerName + "于" + Convert.ToDateTime(DateTime.Now) + "导出了" + "后台用户信息!", 3); + #endregion + } + catch (Exception ex) + { + AntdUI.Message.error(this, $"导出失败: {ex.Message}"); + } + } } private void btnUpdate_Click(object sender, EventArgs e) @@ -311,7 +305,7 @@ namespace EOM.TSHotelManager.FormUI var dataCount = 0; dgvCustomerList.Spin("正在加载中...", () => { - dgvCustomerList.DataSource = GetPageData(e.Current, e.PageSize, ref dataCount); + dgvCustomerList.DataSource = GetPageData(e.Current, e.PageSize, ref dataCount,cbOnlyVip.Checked); btnPg.Total = dataCount; }, () => { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.resx b/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.resx index 284de1a..750c0dd 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.resx +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.resx @@ -1,7 +1,7 @@  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.cs b/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.cs index 2fa95b4..67cad8e 100644 --- a/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.cs +++ b/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.cs @@ -11,9 +11,11 @@ namespace EOM.TSHotelManager.FormUI { public partial class ucRoom : UserControl { + private LoadingProgress _loadingProgress; public ucRoom() { InitializeComponent(); + _loadingProgress = new LoadingProgress(); } @@ -304,11 +306,12 @@ namespace EOM.TSHotelManager.FormUI private void tsmiCheckOut_Click(object sender, EventArgs e) { + _loadingProgress.Show(); rm_CustoNo = romRoomInfo.CustoNo; rm_RoomNo = romRoomInfo.RoomNo; rm_RoomType = romRoomInfo.RoomName; - FrmCheckOutForm frm = new FrmCheckOutForm(); - frm.Show(); + FrmCheckOutForm frm = new FrmCheckOutForm(_loadingProgress); + frm.ShowDialog(this); } public static string? RoomNo; -- Gitee From cf638525876e89339173637ab7053c2e59297146 Mon Sep 17 00:00:00 2001 From: ck_yeun9 Date: Sun, 19 Jan 2025 17:29:20 +0800 Subject: [PATCH 2/7] Change Request Method --- .../AppConstant/AdminConstant.cs | 30 + .../AppConstant/SpendConsts.cs | 42 + .../Helper/HttpHelper.cs | 69 +- .../Util/ApplicationUtil.cs | 2 +- .../AppFunction/FrmAddAdmin.Designer.cs | 30 +- .../AppFunction/FrmAddAdmin.cs | 4 +- .../AppFunction/FrmAddAdmin.resx | 4 +- .../AppFunction/FrmAddRoom.Designer.cs | 24 +- .../AppFunction/FrmAddRoom.cs | 9 +- .../AppFunction/FrmAuthority.cs | 5 +- .../AppFunction/FrmCash.cs | 1 - .../AppFunction/FrmChangePosition.cs | 2 +- .../AppFunction/FrmChangeRoom.cs | 20 +- .../AppFunction/FrmCheckIn.cs | 18 +- .../AppFunction/FrmCheckOutForm.cs | 20 +- .../AppFunction/FrmCustoManager.Designer.cs | 16 - .../AppFunction/FrmCustoManager.cs | 55 +- .../AppFunction/FrmCustomerManager.cs | 17 +- .../AppFunction/FrmDepartment.cs | 2 +- .../AppFunction/FrmEditInputs.cs | 2 +- .../AppFunction/FrmGoodOrBad.cs | 2 +- .../AppFunction/FrmMySpace.cs | 22 +- .../AppFunction/FrmOperation.cs | 4 +- .../AppFunction/FrmProgress.Designer.cs | 26 +- .../AppFunction/FrmProgress.cs | 16 - .../AppFunction/FrmReserList.cs | 17 +- .../AppFunction/FrmRoomConfig.cs | 4 +- .../AppFunction/FrmRoomManager.cs | 8 +- .../AppFunction/FrmRoomStateManager.cs | 2 +- .../AppFunction/FrmSelectCustoInfo.cs | 2 +- .../AppFunction/FrmSellThing.Designer.cs | 936 ++++++------------ .../AppFunction/FrmSellThing.cs | 182 ++-- .../AppFunction/FrmSellThing.resx | 126 +-- .../AppFunction/FrmSellThingManager.cs | 6 +- .../AppFunction/FrmUnLockSystem.cs | 2 +- .../AppFunction/FrmVipRule.cs | 2 +- .../AppFunction/FrmWorkerCheckInfo.cs | 2 +- .../AppFunction/FrmWorkerInfo.cs | 16 +- .../AppInterface/FrmAdminEnter.cs | 10 +- .../AppInterface/FrmLoading.cs | 19 +- .../AppInterface/FrmLogin.cs | 45 +- .../AppMain/FrmBackgroundSystem.cs | 15 +- EOM.TSHotelManager.FormUI/AppMain/FrmMain.cs | 23 +- .../AppUserControls/ucRoom.cs | 6 +- .../EOM.TSHotelManager.FormUI.csproj | 4 +- .../TableComponent/LoadingProgress.cs | 2 +- .../TableComponent/TableComHelper.cs | 22 +- topsky-hotel-manager-system-web-api | 2 +- 48 files changed, 791 insertions(+), 1104 deletions(-) create mode 100644 EOM.TSHotelManager.Common/AppConstant/AdminConstant.cs create mode 100644 EOM.TSHotelManager.Common/AppConstant/SpendConsts.cs diff --git a/EOM.TSHotelManager.Common/AppConstant/AdminConstant.cs b/EOM.TSHotelManager.Common/AppConstant/AdminConstant.cs new file mode 100644 index 0000000..40c63a8 --- /dev/null +++ b/EOM.TSHotelManager.Common/AppConstant/AdminConstant.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EOM.TSHotelManager.Common +{ + public class AdminConstant : Constant + { + // 超级管理员 + public static readonly AdminConstant Admin = new AdminConstant("Admin", "超级管理员"); + // 财务经理 + public static readonly AdminConstant FinanceManager = new AdminConstant("FinanceManager", "财务经理"); + // 总经理 + public static readonly AdminConstant GeneralManager = new AdminConstant("GeneralManager", "总经理"); + // 酒店经理 + public static readonly AdminConstant HotelManager = new AdminConstant("HotelManager", "酒店经理"); + // 人力资源经理 + public static readonly AdminConstant HRManager = new AdminConstant("HRManager", "人力资源经理"); + // 后勤经理 + public static readonly AdminConstant LogisticsManager = new AdminConstant("LogisticsManager", "后勤经理"); + // 监管小组 + public static readonly AdminConstant CheckGroup = new AdminConstant("CheckGroup", "监管小组"); + + private AdminConstant(string code, string description) : base(code, description) + { + } + } +} diff --git a/EOM.TSHotelManager.Common/AppConstant/SpendConsts.cs b/EOM.TSHotelManager.Common/AppConstant/SpendConsts.cs new file mode 100644 index 0000000..af2d3db --- /dev/null +++ b/EOM.TSHotelManager.Common/AppConstant/SpendConsts.cs @@ -0,0 +1,42 @@ +/* + * MIT License + *Copyright (c) 2021 易开元(Easy-Open-Meta) + + *Permission is hereby granted, free of charge, to any person obtaining a copy + *of this software and associated documentation files (the "Software"), to deal + *in the Software without restriction, including without limitation the rights + *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + *copies of the Software, and to permit persons to whom the Software is + *furnished to do so, subject to the following conditions: + + *The above copyright notice and this permission notice shall be included in all + *copies or substantial portions of the Software. + + *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + *SOFTWARE. + * + *模块说明:结算状态常量 + */ +namespace EOM.TSHotelManager.Common +{ + /// + /// 结算状态常量 + /// + public class SpendConsts + { + /// + /// 已结算状态常量 + /// + public const string Settled = "Settled"; + + /// + /// 未结算状态常量 + /// + public const string UnSettle = "UnSettle"; + } +} diff --git a/EOM.TSHotelManager.Common/Helper/HttpHelper.cs b/EOM.TSHotelManager.Common/Helper/HttpHelper.cs index 11dec7e..1943318 100644 --- a/EOM.TSHotelManager.Common/Helper/HttpHelper.cs +++ b/EOM.TSHotelManager.Common/Helper/HttpHelper.cs @@ -113,7 +113,31 @@ namespace EOM.TSHotelManager.Common /// /// /// - public static ResponseMsg Request(string url, string? json = null, Dictionary? dic = null) + public static ResponseMsg Request(string url) + { + ResponseMsg msg = new ResponseMsg(); + + //处理url + var sourceStr = url.Replace("​", string.Empty); + + //解密原始URL + var api = encrypt.Decryption(apiUrl); + + var requestUrl = api + sourceStr; + + msg = DoGet(requestUrl); + + return msg; + } + + /// + /// 统一请求方法 + /// + /// + /// + /// + /// + public static ResponseMsg Request(string url, string? json = null) { ResponseMsg msg = new ResponseMsg(); @@ -129,7 +153,34 @@ namespace EOM.TSHotelManager.Common { msg = DoPost(requestUrl, json); } - else if (!dic.IsNullOrEmpty()) + else + { + msg = DoGet(requestUrl); + } + + return msg; + } + + /// + /// 统一请求方法 + /// + /// + /// + /// + /// + public static ResponseMsg Request(string url, Dictionary? dic = null) + { + ResponseMsg msg = new ResponseMsg(); + + //处理url + var sourceStr = url.Replace("​", string.Empty); + + //解密原始URL + var api = encrypt.Decryption(apiUrl); + + var requestUrl = api + sourceStr; + + if (!dic.IsNullOrEmpty()) { msg = DoGet(requestUrl, dic); } @@ -146,14 +197,22 @@ namespace EOM.TSHotelManager.Common /// /// /// - public static Dictionary RaiseRequests(Dictionary? dic)> requests) + public static Dictionary RaiseBatchRequest(Dictionary? dic)> requests) { var results = new Dictionary(); foreach (var (url, (json, dic)) in requests) { - var result = Request(url, json, dic); - results[url] = result; + var result = Request(url); + if (!json.IsNullOrEmpty()) + { + result = Request(url, json); + } + else if (!dic.IsNullOrEmpty()) + { + result = Request(url, dic); + } + results.Add(url, result); } return results; diff --git a/EOM.TSHotelManager.Common/Util/ApplicationUtil.cs b/EOM.TSHotelManager.Common/Util/ApplicationUtil.cs index 80c110b..e21860d 100644 --- a/EOM.TSHotelManager.Common/Util/ApplicationUtil.cs +++ b/EOM.TSHotelManager.Common/Util/ApplicationUtil.cs @@ -23,7 +23,7 @@ namespace EOM.TSHotelManager.Common { Dictionary dic = new Dictionary(); dic.Add("identityCard", code.Substring(0, 6)); - ResponseMsg result = HttpHelper.Request("App/SelectCardCode", null, dic); + ResponseMsg result = HttpHelper.Request("App/SelectCardCode", dic); if (result.statusCode != 200) { return new Card { message = "SelectCardCode+接口服务异常,请提交Issue或尝试更新版本!" }; diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.Designer.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.Designer.cs index 84dd4c1..9114fcf 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.Designer.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.Designer.cs @@ -42,7 +42,7 @@ namespace EOM.TSHotelManager.FormUI btnReset = new AntdUI.Button(); dgvAdminList = new AntdUI.Table(); pgnPageNavigate = new AntdUI.Pagination(); - windowBar1 = new AntdUI.WindowBar(); + pageHeader1 = new AntdUI.PageHeader(); SuspendLayout(); // // label1 @@ -54,7 +54,6 @@ namespace EOM.TSHotelManager.FormUI label1.TabIndex = 122; label1.Text = "账 号"; label1.TextAlign = ContentAlignment.MiddleCenter; - label1.TooltipConfig = null; // // txtAccount // @@ -85,7 +84,6 @@ namespace EOM.TSHotelManager.FormUI label2.TabIndex = 124; label2.Text = "账号密码"; label2.TextAlign = ContentAlignment.MiddleCenter; - label2.TooltipConfig = null; // // label4 // @@ -96,7 +94,6 @@ namespace EOM.TSHotelManager.FormUI label4.TabIndex = 126; label4.Text = "账户类型"; label4.TextAlign = ContentAlignment.MiddleCenter; - label4.TooltipConfig = null; // // cbAccountType // @@ -127,7 +124,6 @@ namespace EOM.TSHotelManager.FormUI label5.TabIndex = 128; label5.Text = "真实姓名"; label5.TextAlign = ContentAlignment.MiddleCenter; - label5.TooltipConfig = null; // // btnAdd // @@ -171,17 +167,16 @@ namespace EOM.TSHotelManager.FormUI pgnPageNavigate.ValueChanged += pgnPageNavigate_ValueChanged; pgnPageNavigate.ShowTotalChanged += pgnPageNavigate_ShowTotalChanged; // - // windowBar1 + // pageHeader1 // - windowBar1.Font = new Font("Microsoft YaHei UI", 12F); - windowBar1.IsMax = false; - windowBar1.Location = new Point(2, 3); - windowBar1.MaximizeBox = false; - windowBar1.MinimizeBox = false; - windowBar1.Name = "windowBar1"; - windowBar1.Size = new Size(999, 40); - windowBar1.TabIndex = 133; - windowBar1.Text = "添加系统管理员"; + pageHeader1.Font = new Font("Microsoft YaHei UI", 12F); + pageHeader1.Location = new Point(0, 3); + pageHeader1.Name = "pageHeader1"; + pageHeader1.ShowButton = true; + pageHeader1.ShowIcon = true; + pageHeader1.Size = new Size(1002, 41); + pageHeader1.TabIndex = 133; + pageHeader1.Text = "系统管理员"; // // FrmAddAdmin // @@ -190,7 +185,7 @@ namespace EOM.TSHotelManager.FormUI BackColor = Color.FromArgb(235, 243, 255); ClientSize = new Size(1001, 623); ControlBox = false; - Controls.Add(windowBar1); + Controls.Add(pageHeader1); Controls.Add(pgnPageNavigate); Controls.Add(dgvAdminList); Controls.Add(btnReset); @@ -235,6 +230,7 @@ namespace EOM.TSHotelManager.FormUI private AntdUI.Button btnReset; private AntdUI.Table dgvAdminList; private AntdUI.Pagination pgnPageNavigate; - private AntdUI.WindowBar windowBar1; + private AntdUI.PageHeader pageHeader1; + //private AntdUI.WindowBar windowBar1; } } \ No newline at end of file diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.cs index f79d80b..a492322 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.cs @@ -52,7 +52,7 @@ namespace EOM.TSHotelManager.FormUI { pgnPageNavigate.PageSizeOptions = new int[] { 10, 30, 50, 100 }; var dataCount = 0; - dgvAdminList.Spin("正在加载中...", () => + dgvAdminList.Spin("正在加载中......", config => { TableComHelper tableComHelper = new TableComHelper(); dgvAdminList.Columns = tableComHelper.ConvertToAntdColumns(tableComHelper.GenerateDataColumns()); @@ -136,7 +136,7 @@ namespace EOM.TSHotelManager.FormUI private void pgnPageNavigate_ValueChanged(object sender, PagePageEventArgs e) { var dataCount = 0; - dgvAdminList.Spin("正在加载中...", () => + dgvAdminList.Spin("正在加载中...", config => { dgvAdminList.DataSource = GetPageData(e.Current, e.PageSize, ref dataCount); pgnPageNavigate.PageSize = 10; diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.resx b/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.resx index 85ebd30..9f8c763 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.resx +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.resx @@ -1,7 +1,7 @@  @@ -117,78 +117,6 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - - - True - diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThingManager.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThingManager.cs index 27df2e7..4dde5b3 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThingManager.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThingManager.cs @@ -66,7 +66,7 @@ namespace EOM.TSHotelManager.FormUI {"SellNo",txtFind.Text.Trim() }, { "SellName",txtFind.Text.Trim()} }; - result = HttpHelper.Request("Sellthing/SelectSellThingAll", null, dic); + result = HttpHelper.Request("Sellthing/SelectSellThingAll", dic); if (result.statusCode != 200) { UIMessageBox.ShowError("SelectSellThingAll+接口服务异常,请提交Issue或尝试更新版本!"); @@ -81,7 +81,7 @@ namespace EOM.TSHotelManager.FormUI { { "sellNo",txtSellNo.Text.Trim()} }; - result = HttpHelper.Request("Sellthing/DeleteSellThingBySellNo", null, dic); + result = HttpHelper.Request("Sellthing/DeleteSellThingBySellNo", dic); if (result.statusCode != 200) { UIMessageBox.ShowError("DeleteSellThingBySellNo+接口服务异常,请提交Issue或尝试更新版本!"); @@ -133,7 +133,7 @@ namespace EOM.TSHotelManager.FormUI { { "SellNo",st.SellNo} }; - result = HttpHelper.Request("Sellthing/SelectSellInfoBySellNo", null, dic); + result = HttpHelper.Request("Sellthing/SelectSellInfoBySellNo", dic); if (result.statusCode != 200) { UIMessageBox.ShowError("SelectSellInfoBySellNo+接口服务异常,请提交Issue或尝试更新版本!"); diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmUnLockSystem.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmUnLockSystem.cs index 3d5ac94..2d96f7c 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmUnLockSystem.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmUnLockSystem.cs @@ -75,7 +75,7 @@ namespace EOM.TSHotelManager.FormUI { { "account",AdminInfo.Account.Trim()} }; - result = HttpHelper.Request("Admin/SelectAdminPwdByAccount", null, dic); + result = HttpHelper.Request("Admin/SelectAdminPwdByAccount", dic); if (result.statusCode != 200) { UIMessageBox.ShowError("SelectAdminPwdByAccount+接口服务异常,请提交Issue或尝试更新版本!"); diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmVipRule.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmVipRule.cs index 45fffe1..4ef9f4c 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmVipRule.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmVipRule.cs @@ -41,7 +41,7 @@ namespace EOM.TSHotelManager.FormUI private void FrmVipRule_Load(object sender, EventArgs e) { #region 加载客户类型信息 - result = HttpHelper.Request("Base/SelectCustoTypeAllCanUse", null, null); + result = HttpHelper.Request("Base/SelectCustoTypeAllCanUse"); if (result.statusCode != 200) { UIMessageTip.ShowError("SelectCustoTypeAllCanUse+接口服务异常,请提交issue"); diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerCheckInfo.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerCheckInfo.cs index 13e5de2..68fb42a 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerCheckInfo.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerCheckInfo.cs @@ -46,7 +46,7 @@ namespace EOM.TSHotelManager.FormUI { { "wid",FrmWorkerPanel.wk_WorkerNo} }; - result = HttpHelper.Request("WorkerCheck/SelectCheckInfoByWorkerNo", null, dic); + result = HttpHelper.Request("WorkerCheck/SelectCheckInfoByWorkerNo", dic); if (result.statusCode != 200) { UIMessageTip.ShowError("SelectCheckInfoByWorkerNo+接口服务异常,请提交issue"); diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerInfo.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerInfo.cs index eab5f26..eb308b4 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerInfo.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerInfo.cs @@ -61,7 +61,7 @@ namespace EOM.TSHotelManager.FormUI //加载民族信息 Dictionary dic = new Dictionary(); dic.Add("delete_mk", "0"); - result = HttpHelper.Request("Base/SelectNationAll", null, dic); + result = HttpHelper.Request("Base/SelectNationAll", dic); if (result.statusCode != 200) { UIMessageBox.ShowError("SelectNationAll+接口服务异常,请提交Issue或尝试更新版本!"); @@ -73,7 +73,7 @@ namespace EOM.TSHotelManager.FormUI //加载职位信息 dic = new Dictionary(); dic.Add("delete_mk", "0"); - result = HttpHelper.Request("Base/SelectPositionAll", null, dic); + result = HttpHelper.Request("Base/SelectPositionAll", dic); if (result.statusCode != 200) { UIMessageBox.ShowError("SelectPositionAll+接口服务异常,请提交Issue或尝试更新版本!"); @@ -85,7 +85,7 @@ namespace EOM.TSHotelManager.FormUI //加载性别信息 dic = new Dictionary(); dic.Add("delete_mk", "0"); - result = HttpHelper.Request("Base/SelectSexTypeAll", null, dic); + result = HttpHelper.Request("Base/SelectSexTypeAll", dic); if (result.statusCode != 200) { UIMessageBox.ShowError("SelectSexTypeAll+接口服务异常,请提交Issue或尝试更新版本!"); @@ -97,7 +97,7 @@ namespace EOM.TSHotelManager.FormUI //加载学历信息 dic = new Dictionary(); dic.Add("delete_mk", "0"); - result = HttpHelper.Request("Base/SelectEducationAll", null, dic); + result = HttpHelper.Request("Base/SelectEducationAll", dic); if (result.statusCode != 200) { UIMessageBox.ShowError("SelectEducationAll+接口服务异常,请提交Issue或尝试更新版本!"); @@ -148,7 +148,7 @@ namespace EOM.TSHotelManager.FormUI { { "WorkerId", WorkerNo.Text.Trim() } }; - result = HttpHelper.Request("WorkerPicture/WorkerPic", null, dic); + result = HttpHelper.Request("WorkerPicture/WorkerPic", dic); if (result.statusCode != 200) { UIMessageBox.ShowError("WorkerPic+接口服务异常,请提交Issue或尝试更新版本!"); @@ -165,7 +165,7 @@ namespace EOM.TSHotelManager.FormUI this.WorkerID.Validated -= new EventHandler(WorkerID_Validated); dic = new Dictionary(); dic.Add("wid", WorkerNo.Text.Trim()); - result = HttpHelper.Request("WorkerHistory/SelectHistoryByWorkerId", null, dic); + result = HttpHelper.Request("WorkerHistory/SelectHistoryByWorkerId", dic); if (result.statusCode != 200) { UIMessageBox.ShowError("SelectHistoryByWorkerId+接口服务异常,请提交Issue或尝试更新版本!"); @@ -222,7 +222,7 @@ namespace EOM.TSHotelManager.FormUI dic = new Dictionary(); dic.Add("WorkerId", WorkerNo.Text.Trim()); - result = HttpHelper.Request("WorkerPicture/WorkerPic", null, dic); + result = HttpHelper.Request("WorkerPicture/WorkerPic", dic); if (result.statusCode != 200) { UIMessageBox.ShowError("WorkerPic+接口服务异常,请提交Issue或尝试更新版本!"); @@ -243,7 +243,7 @@ namespace EOM.TSHotelManager.FormUI cboWorkerFace.ReadOnly = false; dic = new Dictionary(); dic.Add("wid", WorkerNo.Text.Trim()); - result = HttpHelper.Request("WorkerHistory/SelectHistoryByWorkerId", null, dic); + result = HttpHelper.Request("WorkerHistory/SelectHistoryByWorkerId", dic); if (result.statusCode != 200) { UIMessageBox.ShowError("SelectHistoryByWorkerId+接口服务异常,请提交Issue或尝试更新版本!"); diff --git a/EOM.TSHotelManager.FormUI/AppInterface/FrmAdminEnter.cs b/EOM.TSHotelManager.FormUI/AppInterface/FrmAdminEnter.cs index 02b3461..547bf37 100644 --- a/EOM.TSHotelManager.FormUI/AppInterface/FrmAdminEnter.cs +++ b/EOM.TSHotelManager.FormUI/AppInterface/FrmAdminEnter.cs @@ -32,11 +32,11 @@ namespace EOM.TSHotelManager.FormUI { public partial class FrmAdminEnter : UIForm { - private LoadingProgress _loadingProgress; - public FrmAdminEnter() + private FrmLogin returnForm1 = null; + public FrmAdminEnter(FrmLogin F1) { InitializeComponent(); - _loadingProgress = new LoadingProgress(); + this.returnForm1 = F1; } Dictionary dic = null; @@ -44,8 +44,6 @@ namespace EOM.TSHotelManager.FormUI private void btnCheckIn_Click(object sender, EventArgs e) { - _loadingProgress.Show(); - string account = txtAccount.Text.Trim();//获取超管账号 string pass = txtPassword.Text.Trim();//获取超管密码 if (!CheckInputString(account, pass)) @@ -79,7 +77,7 @@ namespace EOM.TSHotelManager.FormUI #region 获取添加操作日志所需的信息 RecordHelper.Record(AdminInfo.Account + "-" + AdminInfo.Name + "在" + Convert.ToDateTime(DateTime.Now) + "位于" + AdminInfo.SoftwareVersion + "版本登入了后台管理系统!", 3); #endregion - FrmBackgroundSystem fm = new FrmBackgroundSystem(this, _loadingProgress); + FrmBackgroundSystem fm = new FrmBackgroundSystem(this); this.Hide();//隐藏登录窗体 fm.ShowDialog(this);//打开主窗体 diff --git a/EOM.TSHotelManager.FormUI/AppInterface/FrmLoading.cs b/EOM.TSHotelManager.FormUI/AppInterface/FrmLoading.cs index 823fe93..70f2425 100644 --- a/EOM.TSHotelManager.FormUI/AppInterface/FrmLoading.cs +++ b/EOM.TSHotelManager.FormUI/AppInterface/FrmLoading.cs @@ -21,6 +21,7 @@ *SOFTWARE. * */ +using AntdUI; using EOM.TSHotelManager.Common; using EOM.TSHotelManager.Common.Core; using Newtonsoft.Json; @@ -80,40 +81,40 @@ namespace EOM.TSHotelManager.FormUI var isUpdated = await DownloadAndInstallUpdate(updateAsset.BrowserDownloadUrl, updateAsset.Name, new Progress(ReportProgress)); if (isUpdated) { - UIMessageBox.ShowWarning("旧版已停止使用,稍后将自动下载最新发行版!"); + AntdUI.Modal.open(this,"系统提示", "旧版已停止使用,稍后将自动下载最新发行版!",TType.Warn); ExitApplication(); } else { - UIMessageBox.ShowWarning("更新失败,请手动下载最新版本。"); + AntdUI.Modal.open(this, "系统提示", "更新失败,请手动下载最新版本。", TType.Warn); } } else { - UIMessageBox.ShowWarning("最新版本中未找到可更新的 .exe 文件。"); + AntdUI.Modal.open(this, "系统提示", "最新版本中未找到可更新的 .exe 文件。", TType.Warn); } } else { - UIMessageBox.ShowSuccess("当前已为最新版本,无需更新!"); + AntdUI.Modal.open(this, "系统提示", "当前已为最新版本,无需更新!", TType.Success); await Task.Run(() => threadPro()); } } else { - UIMessageBox.Show("无法获取最新版本信息,请检查网络连接。"); + AntdUI.Modal.open(this, "系统提示", "无法获取最新版本信息,请检查网络连接。", TType.Info); ExitApplication(); } } catch (OperationCanceledException) { - UIMessageBox.Show("网络连接超时,无法检查更新。即将跳转到网盘版本库"); + AntdUI.Modal.open(this, "系统提示", "网络连接超时,无法检查更新。即将跳转到网盘版本库", TType.Info); OpenFallbackUrl(); ExitApplication(); } catch (Exception ex) { - UIMessageBox.Show($"检查更新时发生错误: {ex.Message}"); + AntdUI.Modal.open(this, "系统提示", $"检查更新时发生错误: {ex.Message}", TType.Info); } } @@ -175,12 +176,12 @@ namespace EOM.TSHotelManager.FormUI } catch (OperationCanceledException) { - UIMessageBox.Show("网络连接超时,无法下载更新。"); + AntdUI.Modal.open(this, "系统提示", "网络连接超时,无法下载更新。", TType.Info); OpenFallbackUrl(); } catch (Exception ex) { - UIMessageBox.Show($"下载更新时发生错误: {ex.Message}"); + AntdUI.Modal.open(this, "系统提示", $"下载更新时发生错误: {ex.Message}", TType.Info); OpenFallbackUrl(); } return false; diff --git a/EOM.TSHotelManager.FormUI/AppInterface/FrmLogin.cs b/EOM.TSHotelManager.FormUI/AppInterface/FrmLogin.cs index 04e8630..6ddadef 100644 --- a/EOM.TSHotelManager.FormUI/AppInterface/FrmLogin.cs +++ b/EOM.TSHotelManager.FormUI/AppInterface/FrmLogin.cs @@ -26,7 +26,9 @@ using AntdUI; using EOM.TSHotelManager.Common; using EOM.TSHotelManager.Common.Core; using EOM.TSHotelManager.FormUI.Properties; +using jvncorelib.EntityLib; using Sunny.UI; +using System.Windows.Forms; namespace EOM.TSHotelManager.FormUI { @@ -157,7 +159,7 @@ namespace EOM.TSHotelManager.FormUI _loadingProgress.Show(); try { - if (CheckInput())//检验输入完整性 + if (CheckInput()) { Worker worker = new Worker() { WorkerId = txtWorkerId.Text.Trim(), WorkerPwd = txtWorkerPwd.Text.Trim() }; @@ -165,18 +167,18 @@ namespace EOM.TSHotelManager.FormUI if (result.statusCode != 200) { - UIMessageBox.Show("账号或密码错误!", "来自小T提示", UIStyle.Red); - txtWorkerPwd.Focus();//聚焦 + AntdUI.Modal.open(this, "系统提示", "账号或密码错误!",TType.Error); + txtWorkerPwd.Focus(); return; } Worker w = HttpHelper.JsonToModel(result.message); - if (w != null)//判断员工编号是否存在 + if (!w.IsNullOrEmpty()) { if (w.delete_mk == 1) { - UIMessageBox.Show("账号已禁用,请联系上级解封!", "来自小T提示", UIStyle.Red); + AntdUI.Modal.open(this, "系统提示", "账号已禁用,请联系上级解封!", TType.Error); return; } @@ -187,47 +189,28 @@ namespace EOM.TSHotelManager.FormUI LoginInfo.SoftwareVersion = ApplicationUtil.GetApplicationVersion().ToString(); LoginInfo.UserToken = w.user_token; FrmMain frm = new FrmMain(this, _loadingProgress); - this.Hide();//隐藏登录窗体 - frm.ShowDialog(this);//打开主窗体 + this.Hide(); + frm.TopMost = true; + frm.ShowDialog(this); } else { - UIMessageBox.Show("密码错误!", "来自小T提示", UIStyle.Red); - txtWorkerPwd.Focus();//聚焦 + AntdUI.Modal.open(this, "系统提示", "密码错误!", TType.Error); + txtWorkerPwd.Focus(); } } } catch (Exception ex) { - //Console.WriteLine(ex); - UIMessageBox.Show("服务器维护中,请稍后再试!", "温馨提示", UIStyle.Red); - } - finally - { + AntdUI.Modal.open(this, "系统提示", "服务器维护中,请稍后再试!", TType.Error); } } #endregion private void btnLoginBackSystem_Click(object sender, EventArgs e) { - FrmAdminEnter frmAdminEnter = new FrmAdminEnter(); + FrmAdminEnter frmAdminEnter = new FrmAdminEnter(this); frmAdminEnter.ShowDialog(this); } - - private void picFormSize_MouseDown(object sender, MouseEventArgs e) - { - this.picFormSize.BackColor = System.Drawing.Color.RoyalBlue; - } - - private void picFormSize_MouseHover(object sender, EventArgs e) - { - this.picFormSize.BackColor = System.Drawing.Color.RoyalBlue; - } - - private void picFormSize_MouseLeave(object sender, EventArgs e) - { - this.picFormSize.BackColor = System.Drawing.Color.Transparent; - this.picFormSize.BackgroundImage = Resources.arrow_down_b; - } } } diff --git a/EOM.TSHotelManager.FormUI/AppMain/FrmBackgroundSystem.cs b/EOM.TSHotelManager.FormUI/AppMain/FrmBackgroundSystem.cs index 87c82da..70b85f7 100644 --- a/EOM.TSHotelManager.FormUI/AppMain/FrmBackgroundSystem.cs +++ b/EOM.TSHotelManager.FormUI/AppMain/FrmBackgroundSystem.cs @@ -42,10 +42,9 @@ namespace EOM.TSHotelManager.FormUI public static UpdPwd hideform; - public FrmBackgroundSystem(FrmAdminEnter F1, LoadingProgress loadingProgress) + public FrmBackgroundSystem(FrmAdminEnter F1) { InitializeComponent(); - _loadingProgress = loadingProgress; this.returnForm1 = F1; @@ -84,12 +83,6 @@ namespace EOM.TSHotelManager.FormUI {//下午 uiLabel1.Text = "下午好," + AdminInfo.Name; } - - if (_loadingProgress != null) - { - _loadingProgress.Close(); - } - } /// @@ -102,7 +95,6 @@ namespace EOM.TSHotelManager.FormUI private void Aside_MenuItemClick(TreeNode node, NavMenuItem item, int pageIndex) { - _loadingProgress.Show(); if (!node.Text.IsNullOrEmpty()) { switch (node.Text) @@ -165,7 +157,7 @@ namespace EOM.TSHotelManager.FormUI case "监管统计": break; case "监管部门情况": - if (AdminInfo.isAdmin == true || AdminInfo.Type.Equals("GeneralManager") || AdminInfo.Type.Equals("CheckGroup")) + if (AdminInfo.isAdmin == true || AdminInfo.Type.Equals(AdminConstant.GeneralManager.Code) || AdminInfo.Type.Equals(AdminConstant.CheckGroup.Code)) { pnlForm.Controls.Clear(); FrmCheckList frmCheckList = new FrmCheckList(); @@ -176,7 +168,7 @@ namespace EOM.TSHotelManager.FormUI } else { - UIMessageTip.ShowWarning("此模块只开放给超级管理员或总经理以及监管小组查看!"); + UIMessageTip.ShowWarning("此模块只开放特定权限人员查看!"); return; } break; @@ -292,7 +284,6 @@ namespace EOM.TSHotelManager.FormUI break; } - _loadingProgress.Close(); } } diff --git a/EOM.TSHotelManager.FormUI/AppMain/FrmMain.cs b/EOM.TSHotelManager.FormUI/AppMain/FrmMain.cs index b855449..7a7f5f5 100644 --- a/EOM.TSHotelManager.FormUI/AppMain/FrmMain.cs +++ b/EOM.TSHotelManager.FormUI/AppMain/FrmMain.cs @@ -29,7 +29,10 @@ using EOM.TSHotelManager.FormUI.AppUserControls; using EOM.TSHotelManager.FormUI.Properties; using Sunny.UI; using System.Diagnostics; +using System.Reflection; +using System.Resources; using System.Runtime.InteropServices; +using System.Windows.Forms; namespace EOM.TSHotelManager.FormUI { @@ -274,25 +277,24 @@ namespace EOM.TSHotelManager.FormUI DateTime tmCur = Convert.ToDateTime(DateTime.Now); if (tmCur.Hour < 8 || tmCur.Hour > 18) - {//晚上 + { label3.Text = "(*´▽`)ノノ晚上好 " + LoginInfo.WorkerName; btnHello.BackgroundImage = Resources.月亮; } else if (tmCur.Hour > 8 && tmCur.Hour < 12) - {//上午 + { label3.Text = "(*´▽`)ノノ上午好 " + LoginInfo.WorkerName; btnHello.BackgroundImage = Resources.早上; } else - {//下午 + { label3.Text = "(*´▽`)ノノ下午好 " + LoginInfo.WorkerName; btnHello.BackgroundImage = Resources.咖啡; } - //SetClassLong(this.Handle, GCL_STYLE, GetClassLong(this.Handle, GCL_STYLE) | CS_DropSHADOW); //API函数加载,实现窗体边框阴影效果 Dictionary user = new Dictionary(); user.Add("wkn", LoginInfo.WorkerNo); - result = HttpHelper.Request("WorkerCheck/SelectToDayCheckInfoByWorkerNo", null, user); + result = HttpHelper.Request("WorkerCheck/SelectToDayCheckInfoByWorkerNo"); if (result.statusCode != 200) { UIMessageTip.ShowError("打卡接口异常,请提交issue"); @@ -405,7 +407,7 @@ namespace EOM.TSHotelManager.FormUI { { "wkn", LoginInfo.WorkerNo } }; - result = HttpHelper.Request("WorkerCheck/SelectToDayCheckInfoByWorkerNo", null, user); + result = HttpHelper.Request("WorkerCheck/SelectToDayCheckInfoByWorkerNo", user); if (result.statusCode != 200) { UIMessageTip.ShowError("打卡接口异常,请提交issue"); @@ -418,7 +420,7 @@ namespace EOM.TSHotelManager.FormUI linkLabel1.ForeColor = Color.Green; linkLabel1.LinkColor = Color.Green; pnlCheckInfo.Visible = true; - result = HttpHelper.Request("WorkerCheck/SelectWorkerCheckDaySumByWorkerNo", null, user); + result = HttpHelper.Request("WorkerCheck/SelectWorkerCheckDaySumByWorkerNo", user); if (result.statusCode != 200) { UIMessageTip.ShowError("打卡接口异常,请提交issue"); @@ -441,7 +443,7 @@ namespace EOM.TSHotelManager.FormUI CheckTime = DateTime.Now, datains_usr = LoginInfo.WorkerNo }; - result = HttpHelper.Request("WorkerCheck/AddCheckInfo", workerCheck.ModelToJson(), null); + result = HttpHelper.Request("WorkerCheck/AddCheckInfo", workerCheck.ModelToJson()); if (result.statusCode != 200) { UIMessageTip.ShowError("打卡接口异常,请提交issue"); @@ -450,7 +452,7 @@ namespace EOM.TSHotelManager.FormUI bool j = result.statusCode == 200 ? true : false; if (j) { - result = HttpHelper.Request("WorkerCheck/SelectWorkerCheckDaySumByWorkerNo", null, user); + result = HttpHelper.Request("WorkerCheck/SelectWorkerCheckDaySumByWorkerNo", user); if (result.statusCode != 200) { UIMessageTip.ShowError("打卡接口异常,请提交issue"); @@ -520,7 +522,8 @@ namespace EOM.TSHotelManager.FormUI private void cpUITheme_ValueChanged(object sender, ColorEventArgs e) { - AntdUI.Style.Db.SetPrimary(e.Value); + AntdUI.Style.SetPrimary(e.Value); + Settings.Default["ThemeColor"] = e.Value.ToArgb().ToString("X"); Refresh(); } diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.cs b/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.cs index 67cad8e..15ce31a 100644 --- a/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.cs +++ b/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.cs @@ -226,7 +226,7 @@ namespace EOM.TSHotelManager.FormUI { { "no", roomText[1] } }; - result = HttpHelper.Request("Room/SelectRoomByRoomNo", string.Empty, getParam); + result = HttpHelper.Request("Room/SelectRoomByRoomNo", getParam); if (result.statusCode != 200) { @@ -355,7 +355,7 @@ namespace EOM.TSHotelManager.FormUI { {"no",r.RoomNo } }; - result = HttpHelper.Request("Reser/SelectReserInfoByRoomNo", null, getParam); + result = HttpHelper.Request("Reser/SelectReserInfoByRoomNo", getParam); if (result.statusCode != 200) { UIMessageBox.Show("SelectReserInfoByRoomNo+接口服务异常!", "来自小T提示", UIStyle.Red); @@ -367,7 +367,7 @@ namespace EOM.TSHotelManager.FormUI { ReserId = HttpHelper.JsonToModel(result.message!)!.ReserId }; - result = HttpHelper.Request("Reser/DeleteReserInfo", HttpHelper.ModelToJson(reser), null); + result = HttpHelper.Request("Reser/DeleteReserInfo", HttpHelper.ModelToJson(reser)); if (result.statusCode != 200) { UIMessageBox.Show("DeleteReserInfo+接口服务异常!", "来自小T提示", UIStyle.Red); diff --git a/EOM.TSHotelManager.FormUI/EOM.TSHotelManager.FormUI.csproj b/EOM.TSHotelManager.FormUI/EOM.TSHotelManager.FormUI.csproj index e617bee..fbab320 100644 --- a/EOM.TSHotelManager.FormUI/EOM.TSHotelManager.FormUI.csproj +++ b/EOM.TSHotelManager.FormUI/EOM.TSHotelManager.FormUI.csproj @@ -203,7 +203,7 @@ - + @@ -247,7 +247,7 @@ - SettingsSingleFileGenerator + PublicSettingsSingleFileGenerator Settings.Designer.cs diff --git a/EOM.TSHotelManager.FormUI/TableComponent/LoadingProgress.cs b/EOM.TSHotelManager.FormUI/TableComponent/LoadingProgress.cs index 820fe2f..5dc1fd9 100644 --- a/EOM.TSHotelManager.FormUI/TableComponent/LoadingProgress.cs +++ b/EOM.TSHotelManager.FormUI/TableComponent/LoadingProgress.cs @@ -21,7 +21,7 @@ { if (_frmProgress != null && !_frmProgress.IsDisposed) { - _frmProgress.Invoke(new Action(() => + _frmProgress.BeginInvoke(new Action(() => { _frmProgress.Close(); })); diff --git a/EOM.TSHotelManager.FormUI/TableComponent/TableComHelper.cs b/EOM.TSHotelManager.FormUI/TableComponent/TableComHelper.cs index 84b79f5..a20b90c 100644 --- a/EOM.TSHotelManager.FormUI/TableComponent/TableComHelper.cs +++ b/EOM.TSHotelManager.FormUI/TableComponent/TableComHelper.cs @@ -72,25 +72,29 @@ namespace EOM.TSHotelManager.FormUI foreach (var prop in properties) { - // 获取 UIDisplay 特性 var displayAttribute = prop.GetCustomAttribute(); - // 如果没有 UIDisplay 特性,则跳过 if (displayAttribute == null) { continue; } - var propName = prop.Name; // 获取属性名 - var propValue = prop.GetValue(data); // 获取属性值 - var propType = prop.PropertyType; // 获取属性的类型 + var propName = prop.Name; + var propValue = prop.GetValue(data); + var propType = prop.PropertyType; - // 根据字段的类型做特定处理 if (propType == typeof(bool) || propType == typeof(int)) { - var boolValue = Convert.ToBoolean(propValue); - var cellTag = boolValue ? new AntdUI.CellTag("是", AntdUI.TTypeMini.Error) : new AntdUI.CellTag("否", AntdUI.TTypeMini.Success); - antItems.Add(new AntdUI.AntItem(propName, cellTag)); + if (displayAttribute.IsNumber) + { + antItems.Add(new AntdUI.AntItem(propName, propValue?.ToString())); + } + else + { + var boolValue = Convert.ToBoolean(propValue); + var cellTag = boolValue ? new AntdUI.CellTag("是", AntdUI.TTypeMini.Error) : new AntdUI.CellTag("否", AntdUI.TTypeMini.Success); + antItems.Add(new AntdUI.AntItem(propName, cellTag)); + } } else if (propType == typeof(string)) { diff --git a/topsky-hotel-manager-system-web-api b/topsky-hotel-manager-system-web-api index 80f78a0..657fade 160000 --- a/topsky-hotel-manager-system-web-api +++ b/topsky-hotel-manager-system-web-api @@ -1 +1 @@ -Subproject commit 80f78a0ded1bb91e68a19acf62647449f59bbaea +Subproject commit 657fade070a8444d8bea10ff4329ff5dd719d8c4 -- Gitee From fd36cfa5800c89f2af7a3565ef6ab0f0fb5305b9 Mon Sep 17 00:00:00 2001 From: ck_yeun9 Date: Sun, 19 Jan 2025 17:30:37 +0800 Subject: [PATCH 3/7] add submodule --- topsky-hotel-manager-system-web-api | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topsky-hotel-manager-system-web-api b/topsky-hotel-manager-system-web-api index 657fade..fd2c189 160000 --- a/topsky-hotel-manager-system-web-api +++ b/topsky-hotel-manager-system-web-api @@ -1 +1 @@ -Subproject commit 657fade070a8444d8bea10ff4329ff5dd719d8c4 +Subproject commit fd2c18976b77b2ab43fbc9d4e79ca4603f5aa56d -- Gitee From c0f6d42fd0089f0b49470b5759552ebda5985838 Mon Sep 17 00:00:00 2001 From: ck_yeun9 Date: Mon, 27 Jan 2025 16:55:44 +0800 Subject: [PATCH 4/7] some change --- .../AppFunction/FrmCustomerManager.cs | 9 ++++----- .../AppFunction/FrmRoomManager.cs | 5 +++++ .../AppFunction/FrmSellThing.Designer.cs | 4 ++-- .../AppFunction/FrmSellThing.cs | 18 ++++-------------- .../AppInterface/FrmLoading.cs | 6 ++++-- EOM.TSHotelManager.FormUI/AppMain/FrmMain.cs | 5 ----- .../AppUserControls/ucRoom.cs | 8 ++++---- .../TableComponent/LoadingProgress.cs | 3 --- 8 files changed, 23 insertions(+), 35 deletions(-) diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustomerManager.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmCustomerManager.cs index 25a1220..3462c7b 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustomerManager.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmCustomerManager.cs @@ -60,11 +60,10 @@ namespace EOM.TSHotelManager.FormUI #region 用户管理界面加载事件方法 private void FrmCustomerManager_Load(object sender, EventArgs e) { - AntdUI.Spin.open(this, config => - { - this.btnPg.PageSize = 15; - LoadCustomer(); - }); + _loadingProgress.Show(); + this.btnPg.PageSize = 15; + LoadCustomer(); + _loadingProgress.Close(); } #endregion diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomManager.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomManager.cs index 8597485..e026164 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomManager.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomManager.cs @@ -45,9 +45,12 @@ namespace EOM.TSHotelManager.FormUI public static ReadRoomInfo ReadInfo; public static ReLoadRoomList Reload; public static RefreshRoomCount _RefreshRoomCount; + + private LoadingProgress loadingProgress; public FrmRoomManager() { InitializeComponent(); + loadingProgress = new LoadingProgress(); ReadInfo = LoadRoomInfo; Reload = LoadData; _RefreshRoomCount = LoadRoomTypesAndStates; @@ -66,10 +69,12 @@ namespace EOM.TSHotelManager.FormUI #region 房间加载事件方法 private void FrmRoomManager_Load(object sender, EventArgs e) { + loadingProgress.Show(); LoadRoomInfo(); LoadRoomTypesAndStates(); LoadRoomTypes(); LoadData(); + loadingProgress.Close(); } #endregion diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.Designer.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.Designer.cs index 6d6b113..e7877de 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.Designer.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.Designer.cs @@ -271,7 +271,7 @@ // dgvSellthing.AutoSizeColumnsMode = AntdUI.ColumnsMode.Fill; dgvSellthing.Bordered = true; - dgvSellthing.Font = new Font("微软雅黑", 12F); + dgvSellthing.Font = new Font("Microsoft YaHei UI", 9F); dgvSellthing.Location = new Point(4, 88); dgvSellthing.Name = "dgvSellthing"; dgvSellthing.Size = new Size(487, 362); @@ -316,7 +316,7 @@ // dgvRoomSell.AutoSizeColumnsMode = AntdUI.ColumnsMode.Fill; dgvRoomSell.Bordered = true; - dgvRoomSell.Font = new Font("微软雅黑", 12F); + dgvRoomSell.Font = new Font("Microsoft YaHei UI", 9F); dgvRoomSell.Location = new Point(497, 217); dgvRoomSell.Name = "dgvRoomSell"; dgvRoomSell.Size = new Size(572, 270); diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.cs index c2cc28a..77207d7 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.cs @@ -40,26 +40,19 @@ namespace EOM.TSHotelManager.FormUI private static Spend spend = null; + private LoadingProgress loadingProgress; public FrmSellThing() { InitializeComponent(); + loadingProgress = new LoadingProgress(); } #region 窗体加载事件 private void FrmSellThing_Load(object sender, EventArgs e) { - //result = HttpHelper.Request("Room/SelectRoomByStateAll"); - //if (result.statusCode != 200) - //{ - // UIMessageBox.ShowError("SelectRoomByStateAll+接口服务异常,请提交Issue或尝试更新版本!"); - // return; - //} - //List roms = HttpHelper.JsonToList(result.message); - //for (int i = 0; i < roms.Count; i++) - //{ - // txtRoomNo.AutoCompleteCustomSource.Add(roms[i].RoomNo); - //} + loadingProgress.Show(); LoadSellThingInfo(); + loadingProgress.Close(); } #endregion @@ -144,9 +137,6 @@ namespace EOM.TSHotelManager.FormUI btnPg.PageSize = 15; btnPg.Current = 1; btnPg.Total = dataCount; - }, () => - { - System.Diagnostics.Debug.WriteLine("加载结束"); }); } diff --git a/EOM.TSHotelManager.FormUI/AppInterface/FrmLoading.cs b/EOM.TSHotelManager.FormUI/AppInterface/FrmLoading.cs index 70f2425..e2ea75d 100644 --- a/EOM.TSHotelManager.FormUI/AppInterface/FrmLoading.cs +++ b/EOM.TSHotelManager.FormUI/AppInterface/FrmLoading.cs @@ -38,7 +38,7 @@ namespace EOM.TSHotelManager.FormUI private string FileName { get; set; } private string CurrentExecutablePath => Application.ExecutablePath; private string CurrentExecutableName => Path.GetFileName(CurrentExecutablePath); - private string FallbackUrl = "https://pan.gkhive.com/TS%E9%85%92%E5%BA%97%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9F%E7%89%88%E6%9C%AC%E5%BA%93"; + private string FallbackUrl = "https://pan.gkhive.com/%E6%9C%AC%E5%9C%B0%E7%A3%81%E7%9B%98/blog_files/TS%E9%85%92%E5%BA%97%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9F%E7%89%88%E6%9C%AC%E5%BA%93"; private ProgressBar progressBar; @@ -81,7 +81,7 @@ namespace EOM.TSHotelManager.FormUI var isUpdated = await DownloadAndInstallUpdate(updateAsset.BrowserDownloadUrl, updateAsset.Name, new Progress(ReportProgress)); if (isUpdated) { - AntdUI.Modal.open(this,"系统提示", "旧版已停止使用,稍后将自动下载最新发行版!",TType.Warn); + AntdUI.Modal.open(this, "系统提示", "旧版已停止使用,稍后将自动下载最新发行版!", TType.Warn); ExitApplication(); } else @@ -115,6 +115,8 @@ namespace EOM.TSHotelManager.FormUI catch (Exception ex) { AntdUI.Modal.open(this, "系统提示", $"检查更新时发生错误: {ex.Message}", TType.Info); + OpenFallbackUrl(); + ExitApplication(); } } diff --git a/EOM.TSHotelManager.FormUI/AppMain/FrmMain.cs b/EOM.TSHotelManager.FormUI/AppMain/FrmMain.cs index 7a7f5f5..002588d 100644 --- a/EOM.TSHotelManager.FormUI/AppMain/FrmMain.cs +++ b/EOM.TSHotelManager.FormUI/AppMain/FrmMain.cs @@ -309,11 +309,6 @@ namespace EOM.TSHotelManager.FormUI } notifyIcon1.Text = "TS酒店管理系统-" + LoginInfo.WorkerName + "-版本号:" + ApplicationUtil.GetApplicationVersion(); wk_WorkerName = LoginInfo.WorkerName; - pnlMID.Controls.Clear(); - FrmRoomManager frm1 = new FrmRoomManager(); - frm1.TopLevel = false; - pnlMID.Controls.Add(frm1); - frm1.Show(); if (_loadingProgress != null) { diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.cs b/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.cs index 15ce31a..f0edee5 100644 --- a/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.cs +++ b/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.cs @@ -207,7 +207,7 @@ namespace EOM.TSHotelManager.FormUI private void tsmiReserRoom_Click(object sender, EventArgs e) { FrmReserManager frm = new FrmReserManager(); - frm.Show(); + frm.ShowDialog(); } private void cmsMain_Opening(object sender, CancelEventArgs e) { @@ -295,7 +295,7 @@ namespace EOM.TSHotelManager.FormUI rm_RoomType = romRoomInfo.RoomName; rm_RoomMoney = Convert.ToDecimal(romRoomInfo.RoomMoney).ToString(); FrmCheckIn frm = new FrmCheckIn(); - frm.Show(); + frm.ShowDialog(); } } else @@ -328,7 +328,7 @@ namespace EOM.TSHotelManager.FormUI CustoNo = romCustoInfo.CustoNo; RoomState = romRoomInfo.RoomState; FrmChangeRoom frm = new FrmChangeRoom(); - frm.Show(); + frm.ShowDialog(); } } else @@ -341,7 +341,7 @@ namespace EOM.TSHotelManager.FormUI { rm_CustoNo = romCustoInfo.CustoNo; FrmSelectCustoInfo frm = new FrmSelectCustoInfo(); - frm.Show(); + frm.ShowDialog(); } private void tsmiChangeState_Click(object sender, EventArgs e) diff --git a/EOM.TSHotelManager.FormUI/TableComponent/LoadingProgress.cs b/EOM.TSHotelManager.FormUI/TableComponent/LoadingProgress.cs index 5dc1fd9..c94ac6c 100644 --- a/EOM.TSHotelManager.FormUI/TableComponent/LoadingProgress.cs +++ b/EOM.TSHotelManager.FormUI/TableComponent/LoadingProgress.cs @@ -4,7 +4,6 @@ { private FrmProgress _frmProgress; - // 显示加载窗口 public void Show() { if (_frmProgress == null || _frmProgress.IsDisposed) @@ -12,11 +11,9 @@ _frmProgress = new FrmProgress(); } - // 异步显示窗体以确保不阻塞调用线程 Task.Run(() => _frmProgress.ShowDialog()); } - // 关闭加载窗口 public void Close() { if (_frmProgress != null && !_frmProgress.IsDisposed) -- Gitee From 2cb46727d668114fa779f728c6d695aba0d42e6a Mon Sep 17 00:00:00 2001 From: ck_yeun9 Date: Tue, 28 Jan 2025 18:33:38 +0800 Subject: [PATCH 5/7] add menu table. move spendconsts.cs to Shared Layout. --- .../AppConstant/SpendConsts.cs | 42 - .../AppFunction/FrmChangeRoom.cs | 1 + .../AppFunction/FrmSellThing.cs | 1 + .../EOM.TSHotelManager.FormUI.csproj | 1 + topsky-hotel-manager-system-web-api | 2 +- .../tshoteldb_table.sql" | 1017 +++++++++-------- 6 files changed, 528 insertions(+), 536 deletions(-) delete mode 100644 EOM.TSHotelManager.Common/AppConstant/SpendConsts.cs diff --git a/EOM.TSHotelManager.Common/AppConstant/SpendConsts.cs b/EOM.TSHotelManager.Common/AppConstant/SpendConsts.cs deleted file mode 100644 index af2d3db..0000000 --- a/EOM.TSHotelManager.Common/AppConstant/SpendConsts.cs +++ /dev/null @@ -1,42 +0,0 @@ -/* - * MIT License - *Copyright (c) 2021 易开元(Easy-Open-Meta) - - *Permission is hereby granted, free of charge, to any person obtaining a copy - *of this software and associated documentation files (the "Software"), to deal - *in the Software without restriction, including without limitation the rights - *to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - *copies of the Software, and to permit persons to whom the Software is - *furnished to do so, subject to the following conditions: - - *The above copyright notice and this permission notice shall be included in all - *copies or substantial portions of the Software. - - *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - *IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - *FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - *AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - *LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - *OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - *SOFTWARE. - * - *模块说明:结算状态常量 - */ -namespace EOM.TSHotelManager.Common -{ - /// - /// 结算状态常量 - /// - public class SpendConsts - { - /// - /// 已结算状态常量 - /// - public const string Settled = "Settled"; - - /// - /// 未结算状态常量 - /// - public const string UnSettle = "UnSettle"; - } -} diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangeRoom.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmChangeRoom.cs index dcd95a5..5d23370 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangeRoom.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmChangeRoom.cs @@ -26,6 +26,7 @@ using EOM.TSHotelManager.Common; using EOM.TSHotelManager.Common.Core; using Sunny.UI; using System.Transactions; +using EOM.TSHotelManager.Shared; namespace EOM.TSHotelManager.FormUI { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.cs b/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.cs index 77207d7..227616a 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.cs +++ b/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.cs @@ -24,6 +24,7 @@ using EOM.TSHotelManager.Common; using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManager.Shared; using jvncorelib.EntityLib; using Sunny.UI; diff --git a/EOM.TSHotelManager.FormUI/EOM.TSHotelManager.FormUI.csproj b/EOM.TSHotelManager.FormUI/EOM.TSHotelManager.FormUI.csproj index fbab320..030fd3c 100644 --- a/EOM.TSHotelManager.FormUI/EOM.TSHotelManager.FormUI.csproj +++ b/EOM.TSHotelManager.FormUI/EOM.TSHotelManager.FormUI.csproj @@ -200,6 +200,7 @@ True True + diff --git a/topsky-hotel-manager-system-web-api b/topsky-hotel-manager-system-web-api index fd2c189..72a49d4 160000 --- a/topsky-hotel-manager-system-web-api +++ b/topsky-hotel-manager-system-web-api @@ -1 +1 @@ -Subproject commit fd2c18976b77b2ab43fbc9d4e79ca4603f5aa56d +Subproject commit 72a49d4ac8e70d1de1fc6472ada71c2a4022e1bf diff --git "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/tshoteldb_table.sql" "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/tshoteldb_table.sql" index 6c8f536..aeb411a 100644 --- "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/tshoteldb_table.sql" +++ "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/tshoteldb_table.sql" @@ -1,494 +1,525 @@ -DROP TABLE IF EXISTS "public"."admintype"; -DROP TABLE IF EXISTS "public"."cashinfo"; -DROP TABLE IF EXISTS "public"."customer"; -DROP TABLE IF EXISTS "public"."education"; -DROP TABLE IF EXISTS "public"."fonts"; -DROP TABLE IF EXISTS "public"."member_info"; -DROP TABLE IF EXISTS "public"."nation"; -DROP TABLE IF EXISTS "public"."passporttype"; -DROP TABLE IF EXISTS "public"."room"; -DROP TABLE IF EXISTS "public"."roomtype"; -DROP TABLE IF EXISTS "public"."sellthing"; -DROP TABLE IF EXISTS "public"."sextype"; -DROP TABLE IF EXISTS "public"."usertype"; -DROP TABLE IF EXISTS "public"."workercheck"; -DROP TABLE IF EXISTS "public"."workerpic"; -DROP TABLE IF EXISTS "public"."admininfo"; -DROP TABLE IF EXISTS "public"."applicationversion"; -DROP TABLE IF EXISTS "public"."base"; -DROP TABLE IF EXISTS "public"."cardcodes"; -DROP TABLE IF EXISTS "public"."checkinfo"; -DROP TABLE IF EXISTS "public"."counterrule"; -DROP TABLE IF EXISTS "public"."custospend"; -DROP TABLE IF EXISTS "public"."dept"; -DROP TABLE IF EXISTS "public"."module"; -DROP TABLE IF EXISTS "public"."module_zero"; -DROP TABLE IF EXISTS "public"."nav_bar"; -DROP TABLE IF EXISTS "public"."operationlog"; -DROP TABLE IF EXISTS "public"."position"; -DROP TABLE IF EXISTS "public"."reser"; -DROP TABLE IF EXISTS "public"."roomstate"; -DROP TABLE IF EXISTS "public"."gbtype"; -DROP TABLE IF EXISTS "public"."uploadinfo"; -DROP TABLE IF EXISTS "public"."vip_rule"; -DROP TABLE IF EXISTS "public"."worker"; -DROP TABLE IF EXISTS "public"."workergoodbad"; -DROP TABLE IF EXISTS "public"."workerhistory"; +DROP TABLE IF EXISTS "public"."admintype"; +DROP TABLE IF EXISTS "public"."cashinfo"; +DROP TABLE IF EXISTS "public"."customer"; +DROP TABLE IF EXISTS "public"."education"; +DROP TABLE IF EXISTS "public"."fonts"; +DROP TABLE IF EXISTS "public"."member_info"; +DROP TABLE IF EXISTS "public"."nation"; +DROP TABLE IF EXISTS "public"."passporttype"; +DROP TABLE IF EXISTS "public"."room"; +DROP TABLE IF EXISTS "public"."roomtype"; +DROP TABLE IF EXISTS "public"."sellthing"; +DROP TABLE IF EXISTS "public"."sextype"; +DROP TABLE IF EXISTS "public"."usertype"; +DROP TABLE IF EXISTS "public"."workercheck"; +DROP TABLE IF EXISTS "public"."workerpic"; +DROP TABLE IF EXISTS "public"."admininfo"; +DROP TABLE IF EXISTS "public"."applicationversion"; +DROP TABLE IF EXISTS "public"."base"; +DROP TABLE IF EXISTS "public"."cardcodes"; +DROP TABLE IF EXISTS "public"."checkinfo"; +DROP TABLE IF EXISTS "public"."counterrule"; +DROP TABLE IF EXISTS "public"."custospend"; +DROP TABLE IF EXISTS "public"."dept"; +DROP TABLE IF EXISTS "public"."module"; +DROP TABLE IF EXISTS "public"."module_zero"; +DROP TABLE IF EXISTS "public"."nav_bar"; +DROP TABLE IF EXISTS "public"."operationlog"; +DROP TABLE IF EXISTS "public"."position"; +DROP TABLE IF EXISTS "public"."reser"; +DROP TABLE IF EXISTS "public"."roomstate"; +DROP TABLE IF EXISTS "public"."gbtype"; +DROP TABLE IF EXISTS "public"."uploadinfo"; +DROP TABLE IF EXISTS "public"."vip_rule"; +DROP TABLE IF EXISTS "public"."worker"; +DROP TABLE IF EXISTS "public"."workergoodbad"; +DROP TABLE IF EXISTS "public"."workerhistory"; DROP TABLE IF EXISTS "public"."wtinfo"; -CREATE TABLE "public"."admintype" ( - "Id" SERIAL, - "type_id" VARCHAR NOT NULL, - "type_name" VARCHAR NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "admintype_pkey" PRIMARY KEY ("Id") -); -CREATE TABLE "public"."cashinfo" ( - "CashNo" VARCHAR NOT NULL, - "CashName" VARCHAR NOT NULL, - "CashPrice" NUMERIC NOT NULL, - "CashClub" VARCHAR NOT NULL, - "CashTime" TIMESTAMP NOT NULL, - "CashSource" VARCHAR NOT NULL, - "CashPerson" VARCHAR NOT NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "cashinfo_pkey" PRIMARY KEY ("CashNo") -); -CREATE TABLE "public"."customer" ( - "custo_no" VARCHAR NOT NULL DEFAULT ''::character varying , - "custo_name" VARCHAR NULL, - "custo_sex" SMALLINT NULL DEFAULT 0 , - "custo_tel" VARCHAR NOT NULL, - "passport_type" SMALLINT NOT NULL DEFAULT 0 , - "passport_id" VARCHAR NOT NULL, - "custo_address" VARCHAR NULL, - "custo_birth" DATE NULL, - "custo_type" SMALLINT NOT NULL DEFAULT 0 , - "delete_mk" SMALLINT NOT NULL DEFAULT 0 , - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "customer_pkey" PRIMARY KEY ("custo_no") -); -CREATE TABLE "public"."education" ( - "education_no" VARCHAR NOT NULL, - "education_name" VARCHAR NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "education_pkey" PRIMARY KEY ("education_no") -); -CREATE TABLE "public"."fonts" ( - "FontsId" SERIAL, - "FontsMess" VARCHAR NOT NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "fonts_pkey" PRIMARY KEY ("FontsId") -); -CREATE TABLE "public"."member_info" ( - "member_id" VARCHAR NOT NULL, - "member_name" VARCHAR NOT NULL, - "member_nick_name" VARCHAR NULL, - "member_qq_number" VARCHAR NOT NULL, - "member_sex" VARCHAR NULL, - "member_qq_age" VARCHAR NULL, - "member_join_date" VARCHAR NOT NULL, - "member_level_score" VARCHAR NOT NULL, - "created_by" VARCHAR NULL, - "created_time" TIMESTAMP NULL, - "updated_by" VARCHAR NULL, - "updated_time" TIMESTAMP NULL, - CONSTRAINT "member_info_pkey" PRIMARY KEY ("member_id") -); -CREATE TABLE "public"."nation" ( - "nation_no" VARCHAR NOT NULL, - "nation_name" VARCHAR NOT NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "nation_pkey" PRIMARY KEY ("nation_no", "nation_name") -); -CREATE TABLE "public"."passporttype" ( - "PassportId" INTEGER NOT NULL, - "PassportName" VARCHAR NOT NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "passporttype_pkey" PRIMARY KEY ("PassportId") -); -CREATE TABLE "public"."room" ( - "room_no" VARCHAR NOT NULL, - "room_type" SMALLINT NOT NULL DEFAULT 0 , - "custo_no" VARCHAR NULL, - "check_in_time" DATE NULL, - "check_out_time" DATE NULL, - "room_state_id" SMALLINT NOT NULL DEFAULT 0 , - "room_rent" NUMERIC NOT NULL DEFAULT 0 , - "room_deposit" NUMERIC NULL DEFAULT 0 , - "room_position" VARCHAR NOT NULL DEFAULT 0 , - "delete_mk" SMALLINT NOT NULL DEFAULT 0 , - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "room_pkey" PRIMARY KEY ("room_no") -); -CREATE TABLE "public"."roomtype" ( - "RoomType" INTEGER NOT NULL, - "RoomName" VARCHAR NOT NULL, - "delete_mk" INTEGER NOT NULL DEFAULT 0 , - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - "room_rent" NUMERIC NOT NULL DEFAULT 0 , - "room_deposit" NUMERIC NOT NULL DEFAULT 0 , - CONSTRAINT "roomtype_pkey" PRIMARY KEY ("RoomType") -); -CREATE TABLE "public"."sellthing" ( - "SellNo" VARCHAR NOT NULL, - "SellName" VARCHAR NOT NULL, - "SellPrice" NUMERIC NOT NULL, - "format" VARCHAR NULL, - "Stock" NUMERIC NOT NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "sellthing_pkey" PRIMARY KEY ("SellNo") -); -CREATE TABLE "public"."sextype" ( - "sexId" INTEGER NOT NULL, - "sexName" VARCHAR NOT NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "sextype_pkey" PRIMARY KEY ("sexId") -); -CREATE TABLE "public"."usertype" ( - "UserType" INTEGER NOT NULL, - "TypeName" VARCHAR NOT NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "usertype_pkey" PRIMARY KEY ("UserType") -); -CREATE TABLE "public"."workercheck" ( - "Id" SERIAL, - "WorkerNo" VARCHAR NULL, - "CheckTime" TIMESTAMP NULL, - "CheckWay" VARCHAR NULL, - "CheckState" INTEGER NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "workercheck_pkey" PRIMARY KEY ("Id") -); -CREATE TABLE "public"."workerpic" ( - "Id" SERIAL, - "WorkerId" VARCHAR NULL, - "Pic" VARCHAR NULL, - CONSTRAINT "workerpic_pkey" PRIMARY KEY ("Id") -); -CREATE TABLE "public"."admininfo" ( - "Id" SERIAL, - "AdminAccount" VARCHAR NOT NULL, - "AdminPassword" VARCHAR NULL, - "AdminType" VARCHAR NULL, - "AdminName" VARCHAR NULL, - "IsAdmin" INTEGER NULL, - "DeleteMk" INTEGER NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "admininfo_pkey" PRIMARY KEY ("Id", "AdminAccount") -); -CREATE TABLE "public"."applicationversion" ( - "base_versionId" SERIAL, - "base_version" VARCHAR NOT NULL, - CONSTRAINT "applicationversion_pkey" PRIMARY KEY ("base_versionId") -); -CREATE TABLE "public"."base" ( - "url_no" SERIAL, - "url_addr" VARCHAR NULL, - CONSTRAINT "base_pkey" PRIMARY KEY ("url_no") -); -CREATE TABLE "public"."cardcodes" ( - "id" SERIAL, - "Province" VARCHAR NOT NULL, - "City" VARCHAR NULL, - "District" VARCHAR NULL, - "bm" VARCHAR NULL, - CONSTRAINT "cardcodes_pkey" PRIMARY KEY ("id") -); -CREATE TABLE "public"."checkinfo" ( - "CheckNo" VARCHAR NOT NULL, - "CheckClub" VARCHAR NOT NULL, - "CheckProgres" VARCHAR NOT NULL, - "CheckCash" VARCHAR NOT NULL, - "CheckScore" INTEGER NOT NULL, - "CheckPerson" VARCHAR NOT NULL, - "CheckAdvice" VARCHAR NOT NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "checkinfo_pkey" PRIMARY KEY ("CheckNo") -); -CREATE TABLE "public"."counterrule" ( - "rule_id" INTEGER NOT NULL, - "rule_name" VARCHAR NULL, - "rule_desc" VARCHAR NULL, - "now_id" INTEGER NULL, - "prefix_name" VARCHAR NULL, - "custo_format" VARCHAR NULL, - "number_format" VARCHAR NULL, - "separating_char" VARCHAR NULL, - "datains_usrid" VARCHAR NULL, - "datains_time" TIMESTAMP NULL, - "datachg_usrid" VARCHAR NULL, - "datachg_time" TIMESTAMP NULL, - CONSTRAINT "counterrule_pkey" PRIMARY KEY ("rule_id") -); -CREATE TABLE "public"."custospend" ( - "SpendId" SERIAL, - "RoomNo" VARCHAR NOT NULL, - "CustoNo" VARCHAR NOT NULL, - "SpendName" VARCHAR NOT NULL, - "SpendAmount" INTEGER NOT NULL, - "SpendPrice" NUMERIC NOT NULL, - "SpendMoney" NUMERIC NOT NULL, - "SpendTime" TIMESTAMP NOT NULL, - "MoneyState" VARCHAR NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "custospend_pkey" PRIMARY KEY ("SpendId") -); -CREATE TABLE "public"."dept" ( - "dept_no" VARCHAR NOT NULL, - "dept_name" VARCHAR NULL, - "dept_desc" VARCHAR NULL, - "dept_date" DATE NULL, - "dept_leader" VARCHAR NULL, - "dept_parent" VARCHAR NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "dept_pkey" PRIMARY KEY ("dept_no") -); -CREATE TABLE "public"."module" ( - "module_id" SERIAL, - "module_name" VARCHAR NULL, - "module_desc" VARCHAR NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "module_pkey" PRIMARY KEY ("module_id") -); -CREATE TABLE "public"."module_zero" ( - "module_id" SERIAL, - "admin_account" VARCHAR NULL, - "module_name" VARCHAR NULL, - "module_enable" INTEGER NULL, - CONSTRAINT "module_zero_pkey" PRIMARY KEY ("module_id") -); -CREATE TABLE "public"."nav_bar" ( - "nav_id" SERIAL, - "nav_name" VARCHAR NOT NULL, - "nav_or" INTEGER NULL DEFAULT 0 , - "nav_pic" VARCHAR NULL, - "nav_event" VARCHAR NULL, - "delete_mk" INTEGER NOT NULL DEFAULT 0 , - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - "margin_left" SMALLINT NULL, - CONSTRAINT "nav_bar_pkey" PRIMARY KEY ("nav_id") -); -CREATE TABLE "public"."operationlog" ( - "OperationId" SERIAL, - "OperationTime" TIMESTAMP NOT NULL, - "LogContent" VARCHAR NOT NULL, - "OperationAccount" VARCHAR NOT NULL, - "OperationLevel" INTEGER NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" TIMESTAMP NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" TIMESTAMP NULL, - "SoftwareVersion" VARCHAR NULL, - "login_ip" VARCHAR NULL, - CONSTRAINT "operationlog_pkey" PRIMARY KEY ("OperationId") -); -CREATE TABLE "public"."position" ( - "position_no" VARCHAR NOT NULL, - "position_name" VARCHAR NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "position_pkey" PRIMARY KEY ("position_no") -); -CREATE TABLE "public"."reser" ( - "ReserId" VARCHAR NOT NULL, - "CustoName" VARCHAR NULL, - "CustoTel" VARCHAR NULL, - "ReserWay" VARCHAR NULL, - "ReserRoom" VARCHAR NULL, - "ReserDate" DATE NULL, - "ReserEndDay" DATE NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "reser_pkey" PRIMARY KEY ("ReserId") -); -CREATE TABLE "public"."roomstate" ( - "RoomStateId" INTEGER NOT NULL, - "RoomState" VARCHAR NOT NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "roomstate_pkey" PRIMARY KEY ("RoomStateId") -); -CREATE TABLE "public"."gbtype" ( - "GBTypeId" INTEGER NOT NULL, - "GBName" VARCHAR NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "gbtype_pkey" PRIMARY KEY ("GBTypeId") -); -CREATE TABLE "public"."uploadinfo" ( - "NoticeNo" VARCHAR NOT NULL, - "Noticetheme" VARCHAR NOT NULL, - "NoticeType" VARCHAR NULL, - "NoticeTime" TIMESTAMP NOT NULL, - "NoticeContent" VARCHAR NOT NULL, - "NoticeClub" VARCHAR NOT NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "uploadinfo_pkey" PRIMARY KEY ("NoticeNo") -); -CREATE TABLE "public"."vip_rule" ( - "id" SERIAL, - "rule_id" VARCHAR NOT NULL, - "rule_name" VARCHAR NOT NULL, - "rule_value" NUMERIC NOT NULL, - "type_id" INTEGER NOT NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "vip_rule_pkey" PRIMARY KEY ("id", "rule_id") -); -CREATE TABLE "public"."worker" ( - "WorkerId" VARCHAR NOT NULL, - "WorkerName" VARCHAR NOT NULL, - "WorkerBirthday" TIMESTAMP NOT NULL, - "WorkerSex" INTEGER NOT NULL, - "WorkerTel" VARCHAR NOT NULL, - "WorkerClub" VARCHAR NOT NULL, - "WorkerNation" VARCHAR NOT NULL, - "WorkerAddress" VARCHAR NOT NULL, - "WorkerPosition" VARCHAR NOT NULL, - "CardID" VARCHAR NOT NULL, - "WorkerPwd" VARCHAR NULL, - "WorkerTime" TIMESTAMP NOT NULL, - "WorkerFace" VARCHAR NOT NULL, - "WorkerEducation" VARCHAR NOT NULL, - "delete_mk" INTEGER NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "worker_pkey" PRIMARY KEY ("WorkerId") -); -CREATE TABLE "public"."workergoodbad" ( - "Id" SERIAL, - "WorkNo" VARCHAR NULL, - "GBInfo" VARCHAR NULL, - "GBType" INTEGER NULL, - "GBOperation" VARCHAR NULL, - "GBTime" TIMESTAMP NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "workergoodbad_pkey" PRIMARY KEY ("Id") -); -CREATE TABLE "public"."workerhistory" ( - "Id" SERIAL, - "WorkerId" VARCHAR NOT NULL, - "StartDate" TIMESTAMP NOT NULL, - "EndDate" TIMESTAMP NOT NULL, - "Position" VARCHAR NOT NULL, - "Company" VARCHAR NOT NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - CONSTRAINT "workerhistory_pkey" PRIMARY KEY ("Id") -); -CREATE TABLE "public"."wtinfo" ( - "RoomNo" VARCHAR NOT NULL, - "UseDate" TIMESTAMP NOT NULL, - "EndDate" TIMESTAMP NULL, - "WaterUse" NUMERIC NOT NULL, - "PowerUse" NUMERIC NOT NULL, - "Record" VARCHAR NOT NULL, - "CustoNo" VARCHAR NULL, - "delete_mk" INTEGER NOT NULL, - "datains_usr" VARCHAR NULL, - "datains_date" DATE NULL, - "datachg_usr" VARCHAR NULL, - "datachg_date" DATE NULL, - "WtiNo" SERIAL, - CONSTRAINT "wtinfo_pkey" PRIMARY KEY ("WtiNo") -); +DROP TABLE IF EXISTS "public"."menu"; +CREATE TABLE "public"."admintype" ( + "Id" SERIAL, + "type_id" VARCHAR NOT NULL, + "type_name" VARCHAR NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "admintype_pkey" PRIMARY KEY ("Id") +); +CREATE TABLE "public"."cashinfo" ( + "CashNo" VARCHAR NOT NULL, + "CashName" VARCHAR NOT NULL, + "CashPrice" NUMERIC NOT NULL, + "CashClub" VARCHAR NOT NULL, + "CashTime" TIMESTAMP NOT NULL, + "CashSource" VARCHAR NOT NULL, + "CashPerson" VARCHAR NOT NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "cashinfo_pkey" PRIMARY KEY ("CashNo") +); +CREATE TABLE "public"."customer" ( + "custo_no" VARCHAR NOT NULL DEFAULT ''::character varying , + "custo_name" VARCHAR NULL, + "custo_sex" SMALLINT NULL DEFAULT 0 , + "custo_tel" VARCHAR NOT NULL, + "passport_type" SMALLINT NOT NULL DEFAULT 0 , + "passport_id" VARCHAR NOT NULL, + "custo_address" VARCHAR NULL, + "custo_birth" DATE NULL, + "custo_type" SMALLINT NOT NULL DEFAULT 0 , + "delete_mk" SMALLINT NOT NULL DEFAULT 0 , + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "customer_pkey" PRIMARY KEY ("custo_no") +); +CREATE TABLE "public"."education" ( + "education_no" VARCHAR NOT NULL, + "education_name" VARCHAR NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "education_pkey" PRIMARY KEY ("education_no") +); +CREATE TABLE "public"."fonts" ( + "FontsId" SERIAL, + "FontsMess" VARCHAR NOT NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "fonts_pkey" PRIMARY KEY ("FontsId") +); +CREATE TABLE "public"."member_info" ( + "member_id" VARCHAR NOT NULL, + "member_name" VARCHAR NOT NULL, + "member_nick_name" VARCHAR NULL, + "member_qq_number" VARCHAR NOT NULL, + "member_sex" VARCHAR NULL, + "member_qq_age" VARCHAR NULL, + "member_join_date" VARCHAR NOT NULL, + "member_level_score" VARCHAR NOT NULL, + "created_by" VARCHAR NULL, + "created_time" TIMESTAMP NULL, + "updated_by" VARCHAR NULL, + "updated_time" TIMESTAMP NULL, + CONSTRAINT "member_info_pkey" PRIMARY KEY ("member_id") +); +CREATE TABLE "public"."nation" ( + "nation_no" VARCHAR NOT NULL, + "nation_name" VARCHAR NOT NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "nation_pkey" PRIMARY KEY ("nation_no", "nation_name") +); +CREATE TABLE "public"."passporttype" ( + "PassportId" INTEGER NOT NULL, + "PassportName" VARCHAR NOT NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "passporttype_pkey" PRIMARY KEY ("PassportId") +); +CREATE TABLE "public"."room" ( + "room_no" VARCHAR NOT NULL, + "room_type" SMALLINT NOT NULL DEFAULT 0 , + "custo_no" VARCHAR NULL, + "check_in_time" DATE NULL, + "check_out_time" DATE NULL, + "room_state_id" SMALLINT NOT NULL DEFAULT 0 , + "room_rent" NUMERIC NOT NULL DEFAULT 0 , + "room_deposit" NUMERIC NULL DEFAULT 0 , + "room_position" VARCHAR NOT NULL DEFAULT 0 , + "delete_mk" SMALLINT NOT NULL DEFAULT 0 , + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "room_pkey" PRIMARY KEY ("room_no") +); +CREATE TABLE "public"."roomtype" ( + "RoomType" INTEGER NOT NULL, + "RoomName" VARCHAR NOT NULL, + "delete_mk" INTEGER NOT NULL DEFAULT 0 , + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + "room_rent" NUMERIC NOT NULL DEFAULT 0 , + "room_deposit" NUMERIC NOT NULL DEFAULT 0 , + CONSTRAINT "roomtype_pkey" PRIMARY KEY ("RoomType") +); +CREATE TABLE "public"."sellthing" ( + "SellNo" VARCHAR NOT NULL, + "SellName" VARCHAR NOT NULL, + "SellPrice" NUMERIC NOT NULL, + "format" VARCHAR NULL, + "Stock" NUMERIC NOT NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "sellthing_pkey" PRIMARY KEY ("SellNo") +); +CREATE TABLE "public"."sextype" ( + "sexId" INTEGER NOT NULL, + "sexName" VARCHAR NOT NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "sextype_pkey" PRIMARY KEY ("sexId") +); +CREATE TABLE "public"."usertype" ( + "UserType" INTEGER NOT NULL, + "TypeName" VARCHAR NOT NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "usertype_pkey" PRIMARY KEY ("UserType") +); +CREATE TABLE "public"."workercheck" ( + "Id" SERIAL, + "WorkerNo" VARCHAR NULL, + "CheckTime" TIMESTAMP NULL, + "CheckWay" VARCHAR NULL, + "CheckState" INTEGER NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "workercheck_pkey" PRIMARY KEY ("Id") +); +CREATE TABLE "public"."workerpic" ( + "Id" SERIAL, + "WorkerId" VARCHAR NULL, + "Pic" VARCHAR NULL, + CONSTRAINT "workerpic_pkey" PRIMARY KEY ("Id") +); +CREATE TABLE "public"."admininfo" ( + "Id" SERIAL, + "AdminAccount" VARCHAR NOT NULL, + "AdminPassword" VARCHAR NULL, + "AdminType" VARCHAR NULL, + "AdminName" VARCHAR NULL, + "IsAdmin" INTEGER NULL, + "DeleteMk" INTEGER NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "admininfo_pkey" PRIMARY KEY ("Id", "AdminAccount") +); +CREATE TABLE "public"."applicationversion" ( + "base_versionId" SERIAL, + "base_version" VARCHAR NOT NULL, + CONSTRAINT "applicationversion_pkey" PRIMARY KEY ("base_versionId") +); +CREATE TABLE "public"."base" ( + "url_no" SERIAL, + "url_addr" VARCHAR NULL, + CONSTRAINT "base_pkey" PRIMARY KEY ("url_no") +); +CREATE TABLE "public"."cardcodes" ( + "id" SERIAL, + "Province" VARCHAR NOT NULL, + "City" VARCHAR NULL, + "District" VARCHAR NULL, + "bm" VARCHAR NULL, + CONSTRAINT "cardcodes_pkey" PRIMARY KEY ("id") +); +CREATE TABLE "public"."checkinfo" ( + "CheckNo" VARCHAR NOT NULL, + "CheckClub" VARCHAR NOT NULL, + "CheckProgres" VARCHAR NOT NULL, + "CheckCash" VARCHAR NOT NULL, + "CheckScore" INTEGER NOT NULL, + "CheckPerson" VARCHAR NOT NULL, + "CheckAdvice" VARCHAR NOT NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "checkinfo_pkey" PRIMARY KEY ("CheckNo") +); +CREATE TABLE "public"."counterrule" ( + "rule_id" INTEGER NOT NULL, + "rule_name" VARCHAR NULL, + "rule_desc" VARCHAR NULL, + "now_id" INTEGER NULL, + "prefix_name" VARCHAR NULL, + "custo_format" VARCHAR NULL, + "number_format" VARCHAR NULL, + "separating_char" VARCHAR NULL, + "datains_usrid" VARCHAR NULL, + "datains_time" TIMESTAMP NULL, + "datachg_usrid" VARCHAR NULL, + "datachg_time" TIMESTAMP NULL, + CONSTRAINT "counterrule_pkey" PRIMARY KEY ("rule_id") +); +CREATE TABLE "public"."custospend" ( + "SpendId" SERIAL, + "RoomNo" VARCHAR NOT NULL, + "CustoNo" VARCHAR NOT NULL, + "SpendName" VARCHAR NOT NULL, + "SpendAmount" INTEGER NOT NULL, + "SpendPrice" NUMERIC NOT NULL, + "SpendMoney" NUMERIC NOT NULL, + "SpendTime" TIMESTAMP NOT NULL, + "MoneyState" VARCHAR NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "custospend_pkey" PRIMARY KEY ("SpendId") +); +CREATE TABLE "public"."dept" ( + "dept_no" VARCHAR NOT NULL, + "dept_name" VARCHAR NULL, + "dept_desc" VARCHAR NULL, + "dept_date" DATE NULL, + "dept_leader" VARCHAR NULL, + "dept_parent" VARCHAR NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "dept_pkey" PRIMARY KEY ("dept_no") +); +CREATE TABLE "public"."module" ( + "module_id" SERIAL, + "module_name" VARCHAR NULL, + "module_desc" VARCHAR NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "module_pkey" PRIMARY KEY ("module_id") +); +CREATE TABLE "public"."module_zero" ( + "module_id" SERIAL, + "admin_account" VARCHAR NULL, + "module_name" VARCHAR NULL, + "module_enable" INTEGER NULL, + CONSTRAINT "module_zero_pkey" PRIMARY KEY ("module_id") +); +CREATE TABLE "public"."nav_bar" ( + "nav_id" SERIAL, + "nav_name" VARCHAR NOT NULL, + "nav_or" INTEGER NULL DEFAULT 0 , + "nav_pic" VARCHAR NULL, + "nav_event" VARCHAR NULL, + "delete_mk" INTEGER NOT NULL DEFAULT 0 , + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + "margin_left" SMALLINT NULL, + CONSTRAINT "nav_bar_pkey" PRIMARY KEY ("nav_id") +); +CREATE TABLE "public"."operationlog" ( + "OperationId" SERIAL, + "OperationTime" TIMESTAMP NOT NULL, + "LogContent" VARCHAR NOT NULL, + "OperationAccount" VARCHAR NOT NULL, + "OperationLevel" INTEGER NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" TIMESTAMP NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" TIMESTAMP NULL, + "SoftwareVersion" VARCHAR NULL, + "login_ip" VARCHAR NULL, + CONSTRAINT "operationlog_pkey" PRIMARY KEY ("OperationId") +); +CREATE TABLE "public"."position" ( + "position_no" VARCHAR NOT NULL, + "position_name" VARCHAR NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "position_pkey" PRIMARY KEY ("position_no") +); +CREATE TABLE "public"."reser" ( + "ReserId" VARCHAR NOT NULL, + "CustoName" VARCHAR NULL, + "CustoTel" VARCHAR NULL, + "ReserWay" VARCHAR NULL, + "ReserRoom" VARCHAR NULL, + "ReserDate" DATE NULL, + "ReserEndDay" DATE NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "reser_pkey" PRIMARY KEY ("ReserId") +); +CREATE TABLE "public"."roomstate" ( + "RoomStateId" INTEGER NOT NULL, + "RoomState" VARCHAR NOT NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "roomstate_pkey" PRIMARY KEY ("RoomStateId") +); +CREATE TABLE "public"."gbtype" ( + "GBTypeId" INTEGER NOT NULL, + "GBName" VARCHAR NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "gbtype_pkey" PRIMARY KEY ("GBTypeId") +); +CREATE TABLE "public"."uploadinfo" ( + "NoticeNo" VARCHAR NOT NULL, + "Noticetheme" VARCHAR NOT NULL, + "NoticeType" VARCHAR NULL, + "NoticeTime" TIMESTAMP NOT NULL, + "NoticeContent" VARCHAR NOT NULL, + "NoticeClub" VARCHAR NOT NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "uploadinfo_pkey" PRIMARY KEY ("NoticeNo") +); +CREATE TABLE "public"."vip_rule" ( + "id" SERIAL, + "rule_id" VARCHAR NOT NULL, + "rule_name" VARCHAR NOT NULL, + "rule_value" NUMERIC NOT NULL, + "type_id" INTEGER NOT NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "vip_rule_pkey" PRIMARY KEY ("id", "rule_id") +); +CREATE TABLE "public"."worker" ( + "WorkerId" VARCHAR NOT NULL, + "WorkerName" VARCHAR NOT NULL, + "WorkerBirthday" TIMESTAMP NOT NULL, + "WorkerSex" INTEGER NOT NULL, + "WorkerTel" VARCHAR NOT NULL, + "WorkerClub" VARCHAR NOT NULL, + "WorkerNation" VARCHAR NOT NULL, + "WorkerAddress" VARCHAR NOT NULL, + "WorkerPosition" VARCHAR NOT NULL, + "CardID" VARCHAR NOT NULL, + "WorkerPwd" VARCHAR NULL, + "WorkerTime" TIMESTAMP NOT NULL, + "WorkerFace" VARCHAR NOT NULL, + "WorkerEducation" VARCHAR NOT NULL, + "delete_mk" INTEGER NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "worker_pkey" PRIMARY KEY ("WorkerId") +); +CREATE TABLE "public"."workergoodbad" ( + "Id" SERIAL, + "WorkNo" VARCHAR NULL, + "GBInfo" VARCHAR NULL, + "GBType" INTEGER NULL, + "GBOperation" VARCHAR NULL, + "GBTime" TIMESTAMP NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "workergoodbad_pkey" PRIMARY KEY ("Id") +); +CREATE TABLE "public"."workerhistory" ( + "Id" SERIAL, + "WorkerId" VARCHAR NOT NULL, + "StartDate" TIMESTAMP NOT NULL, + "EndDate" TIMESTAMP NOT NULL, + "Position" VARCHAR NOT NULL, + "Company" VARCHAR NOT NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + CONSTRAINT "workerhistory_pkey" PRIMARY KEY ("Id") +); +CREATE TABLE "public"."wtinfo" ( + "RoomNo" VARCHAR NOT NULL, + "UseDate" TIMESTAMP NOT NULL, + "EndDate" TIMESTAMP NULL, + "WaterUse" NUMERIC NOT NULL, + "PowerUse" NUMERIC NOT NULL, + "Record" VARCHAR NOT NULL, + "CustoNo" VARCHAR NULL, + "delete_mk" INTEGER NOT NULL, + "datains_usr" VARCHAR NULL, + "datains_date" DATE NULL, + "datachg_usr" VARCHAR NULL, + "datachg_date" DATE NULL, + "WtiNo" SERIAL, + CONSTRAINT "wtinfo_pkey" PRIMARY KEY ("WtiNo") +); +CREATE TABLE "public"."menu" ( + "id" int4 NOT NULL GENERATED ALWAYS AS IDENTITY ( +INCREMENT 1 +MINVALUE 1 +MAXVALUE 2147483647 +START 1 +CACHE 1 +), + "key" varchar(100) COLLATE "pg_catalog"."default", + "title" text COLLATE "pg_catalog"."default" NOT NULL, + "path" text COLLATE "pg_catalog"."default", + "parent" int4, + "delete_mk" int4, + "datains_usr" varchar(100) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(100) COLLATE "pg_catalog"."default", + "datachg_date" date +); +COMMENT ON COLUMN "public"."menu"."id" IS '自增长ID'; +COMMENT ON COLUMN "public"."menu"."key" IS '菜单键'; +COMMENT ON COLUMN "public"."menu"."title" IS '菜单标题'; +COMMENT ON COLUMN "public"."menu"."path" IS '菜单路径'; +COMMENT ON COLUMN "public"."menu"."parent" IS '父级ID'; +COMMENT ON COLUMN "public"."menu"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."menu"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."menu"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."menu"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."menu"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."menu" IS '菜单表'; +ALTER TABLE "public"."menu" ADD CONSTRAINT "menu_pkey" PRIMARY KEY ("id"); \ No newline at end of file -- Gitee From 179585900b3c6a2b510529e9cd5e7d160f8d0b58 Mon Sep 17 00:00:00 2001 From: ck_yeun9 Date: Wed, 29 Jan 2025 13:14:09 +0800 Subject: [PATCH 6/7] Rename Project Name. --- .gitmodules | 6 +- ...EOM.Client.TopSkyHotelManagementSystem.sln | 16 +- .../AppConstant/AdminConstant.cs | 2 +- .../AppConstant/Constant.cs | 2 +- .../AppConstant/CustomTypeConstant.cs | 2 +- .../AppConstant/PassportConstant.cs | 2 +- .../AppConstant/RoomStateConstant.cs | 2 +- .../AppConstant/SexConstant.cs | 2 +- .../EOM.TSHotelManagement.Common.csproj | 2 +- .../Helper/HttpHelper.cs | 2 +- .../Helper/ResponseMsg.cs | 2 +- .../LocalInfo/AdminInfo.cs | 2 +- .../LocalInfo/LoginInfo.cs | 2 +- .../Util/ApplicationUtil.cs | 2 +- .../Util/ExportHelper.cs | 2 +- .../Util/RecordHelper.cs | 4 +- .../ApiExtractor/ApiConstant.cs | 2 +- .../ApiExtractor/SwaggerExtractor.cs | 4 +- .../App.config | 0 .../AppFunction/FrmAboutUs.Designer.cs | 2 +- .../AppFunction/FrmAboutUs.cs | 2 +- .../AppFunction/FrmAboutUs.resx | 0 .../AppFunction/FrmAddAdmin.Designer.cs | 2 +- .../AppFunction/FrmAddAdmin.cs | 8 +- .../AppFunction/FrmAddAdmin.resx | 0 .../AppFunction/FrmAddRoom.Designer.cs | 2 +- .../AppFunction/FrmAddRoom.cs | 8 +- .../AppFunction/FrmAddRoom.resx | 0 .../FrmAdminManagement.Designer.cs | 2 +- .../AppFunction/FrmAdminManagement.cs | 6 +- .../AppFunction/FrmAdminManagement.resx | 0 .../AppFunction/FrmAuthority.Designer.cs | 2 +- .../AppFunction/FrmAuthority.cs | 6 +- .../AppFunction/FrmAuthority.resx | 0 .../AppFunction/FrmBaseManagement.Designer.cs | 2 +- .../AppFunction/FrmBaseManagement.cs | 2 +- .../AppFunction/FrmBaseManagement.resx | 0 .../AppFunction/FrmCash.Designer.cs | 2 +- .../AppFunction/FrmCash.cs | 8 +- .../AppFunction/FrmCash.resx | 0 .../AppFunction/FrmChangeAdminPwd.Designer.cs | 2 +- .../AppFunction/FrmChangeAdminPwd.cs | 6 +- .../AppFunction/FrmChangeAdminPwd.resx | 0 .../AppFunction/FrmChangePosition.Designer.cs | 2 +- .../AppFunction/FrmChangePosition.cs | 6 +- .../AppFunction/FrmChangePosition.resx | 0 .../AppFunction/FrmChangeRoom.Designer.cs | 2 +- .../AppFunction/FrmChangeRoom.cs | 8 +- .../AppFunction/FrmChangeRoom.resx | 0 .../AppFunction/FrmChart.Designer.cs | 0 .../AppFunction/FrmChart.cs | 0 .../AppFunction/FrmChart.resx | 0 .../AppFunction/FrmCheckIn.Designer.cs | 2 +- .../AppFunction/FrmCheckIn.cs | 6 +- .../AppFunction/FrmCheckIn.resx | 0 .../AppFunction/FrmCheckList.Designer.cs | 2 +- .../AppFunction/FrmCheckList.cs | 6 +- .../AppFunction/FrmCheckList.resx | 0 .../AppFunction/FrmCheckOutForm.Designer.cs | 2 +- .../AppFunction/FrmCheckOutForm.cs | 6 +- .../AppFunction/FrmCheckOutForm.resx | 0 .../FrmCustoManagement.Designer.cs | 2 +- .../AppFunction/FrmCustoManagement.cs | 6 +- .../AppFunction/FrmCustoManagement.resx | 0 .../AppFunction/FrmCustoSpend.Designer.cs | 2 +- .../AppFunction/FrmCustoSpend.cs | 6 +- .../AppFunction/FrmCustoSpend.resx | 0 .../FrmCustomerManagement.Designer.cs | 2 +- .../AppFunction/FrmCustomerManagement.cs | 6 +- .../AppFunction/FrmCustomerManagement.resx | 0 .../AppFunction/FrmDepartment.Designer.cs | 2 +- .../AppFunction/FrmDepartment.cs | 6 +- .../AppFunction/FrmDepartment.resx | 0 .../AppFunction/FrmEditInputs.Designer.cs | 2 +- .../AppFunction/FrmEditInputs.cs | 6 +- .../AppFunction/FrmEditInputs.resx | 0 .../AppFunction/FrmEducation.Designer.cs | 2 +- .../AppFunction/FrmEducation.cs | 6 +- .../AppFunction/FrmEducation.resx | 0 .../AppFunction/FrmGoodOrBad.Designer.cs | 2 +- .../AppFunction/FrmGoodOrBad.cs | 6 +- .../AppFunction/FrmGoodOrBad.resx | 0 .../AppFunction/FrmMySpace.Designer.cs | 2 +- .../AppFunction/FrmMySpace.cs | 6 +- .../AppFunction/FrmMySpace.resx | 0 .../AppFunction/FrmNation.Designer.cs | 2 +- .../AppFunction/FrmNation.cs | 8 +- .../AppFunction/FrmNation.resx | 0 .../AppFunction/FrmNotice.Designer.cs | 0 .../AppFunction/FrmNotice.cs | 0 .../AppFunction/FrmNotice.resx | 0 .../AppFunction/FrmOperation.Designer.cs | 2 +- .../AppFunction/FrmOperation.cs | 6 +- .../AppFunction/FrmOperation.resx | 0 .../AppFunction/FrmPleaseWait.Designer.cs | 2 +- .../AppFunction/FrmPleaseWait.cs | 2 +- .../AppFunction/FrmPleaseWait.resx | 0 .../AppFunction/FrmPosition.Designer.cs | 2 +- .../AppFunction/FrmPosition.cs | 6 +- .../AppFunction/FrmPosition.resx | 0 .../AppFunction/FrmProgress.Designer.cs | 2 +- .../AppFunction/FrmProgress.cs | 2 +- .../AppFunction/FrmProgress.resx | 0 .../AppFunction/FrmReserList.Designer.cs | 2 +- .../AppFunction/FrmReserList.cs | 6 +- .../AppFunction/FrmReserList.resx | 0 .../FrmReserManagement.Designer.cs | 2 +- .../AppFunction/FrmReserManagement.cs | 6 +- .../AppFunction/FrmReserManagement.resx | 0 .../AppFunction/FrmRoomConfig.Designer.cs | 2 +- .../AppFunction/FrmRoomConfig.cs | 8 +- .../AppFunction/FrmRoomConfig.resx | 0 .../AppFunction/FrmRoomManagement.Designer.cs | 2 +- .../AppFunction/FrmRoomManagement.cs | 10 +- .../AppFunction/FrmRoomManagement.resx | 0 .../AppFunction/FrmRoomMap.Designer.cs | 2 +- .../AppFunction/FrmRoomMap.cs | 6 +- .../AppFunction/FrmRoomMap.resx | 0 .../FrmRoomStateManagement.Designer.cs | 2 +- .../AppFunction/FrmRoomStateManagement.cs | 6 +- .../AppFunction/FrmRoomStateManagement.resx | 0 .../FrmSelectCustoInfo.Designer.cs | 2 +- .../AppFunction/FrmSelectCustoInfo.cs | 6 +- .../AppFunction/FrmSelectCustoInfo.resx | 0 .../AppFunction/FrmSellThing.Designer.cs | 2 +- .../AppFunction/FrmSellThing.cs | 8 +- .../AppFunction/FrmSellThing.resx | 0 .../FrmSellThingManagement.Designer.cs | 2 +- .../AppFunction/FrmSellThingManagement.cs | 6 +- .../AppFunction/FrmSellThingManagement.resx | 0 .../AppFunction/FrmSexType.Designer.cs | 2 +- .../AppFunction/FrmSexType.cs | 2 +- .../AppFunction/FrmSexType.resx | 0 .../AppFunction/FrmUnLockSystem.Designer.cs | 4 +- .../AppFunction/FrmUnLockSystem.cs | 6 +- .../AppFunction/FrmUnLockSystem.resx | 0 .../AppFunction/FrmUpLoadNotice.Designer.cs | 0 .../AppFunction/FrmUpLoadNotice.cs | 0 .../AppFunction/FrmUpLoadNotice.resx | 0 .../AppFunction/FrmVipRule.Designer.cs | 2 +- .../AppFunction/FrmVipRule.cs | 8 +- .../AppFunction/FrmVipRule.resx | 0 .../AppFunction/FrmWoEInfo.Designer.cs | 2 +- .../AppFunction/FrmWoEInfo.cs | 6 +- .../AppFunction/FrmWoEInfo.resx | 0 .../FrmWorkerCheckInfo.Designer.cs | 2 +- .../AppFunction/FrmWorkerCheckInfo.cs | 6 +- .../AppFunction/FrmWorkerCheckInfo.resx | 0 .../AppFunction/FrmWorkerInfo.Designer.cs | 4 +- .../AppFunction/FrmWorkerInfo.cs | 6 +- .../AppFunction/FrmWorkerInfo.resx | 0 .../FrmWorkerManagement.Designer.cs | 2 +- .../AppFunction/FrmWorkerManagement.cs | 6 +- .../AppFunction/FrmWorkerManagement.resx | 0 .../AppFunction/FrmWorkerPanel.Designer.cs | 4 +- .../AppFunction/FrmWorkerPanel.cs | 8 +- .../AppFunction/FrmWorkerPanel.resx | 0 .../AppInterface/FrmAdminEnter.Designer.cs | 2 +- .../AppInterface/FrmAdminEnter.cs | 6 +- .../AppInterface/FrmAdminEnter.resx | 0 .../AppInterface/FrmLoading.Designer.cs | 2 +- .../AppInterface/FrmLoading.cs | 6 +- .../AppInterface/FrmLoading.resx | 0 .../AppInterface/FrmLogin.Designer.cs | 2 +- .../AppInterface/FrmLogin.cs | 8 +- .../AppInterface/FrmLogin.resx | 0 .../AppInterface/FrmNewLogin.Designer.cs | 0 .../AppInterface/FrmNewLogin.cs | 0 .../AppInterface/FrmNewLogin.resx | 0 .../AppMain/FrmBackgroundSystem.Designer.cs | 2 +- .../AppMain/FrmBackgroundSystem.cs | 8 +- .../AppMain/FrmBackgroundSystem.resx | 0 .../AppMain/FrmMain.Designer.cs | 2 +- .../AppMain/FrmMain.cs | 10 +- .../AppMain/FrmMain.resx | 0 .../AppUserControls/ucHistory.Designer.cs | 2 +- .../AppUserControls/ucHistory.cs | 2 +- .../AppUserControls/ucHistory.resx | 0 .../AppUserControls/ucNavBar.Designer.cs | 2 +- .../AppUserControls/ucNavBar.cs | 2 +- .../AppUserControls/ucNavBar.resx | 0 .../AppUserControls/ucRoom.Designer.cs | 2 +- .../AppUserControls/ucRoom.cs | 8 +- .../AppUserControls/ucRoom.resx | 0 .../AppUserControls/ucRoomType.Designer.cs | 2 +- .../AppUserControls/ucRoomType.cs | 2 +- .../AppUserControls/ucRoomType.resx | 0 .../AppUserControls/ucVipType.Designer.cs | 4 +- .../AppUserControls/ucVipType.cs | 2 +- .../AppUserControls/ucVipType.resx | 0 .../EOM.TSHotelManagement.FormUI.csproj | 10 +- .../FodyWeavers.xml | 0 .../InitConfig/Initialize.cs | 4 +- .../Logo/bitbug_favicon (1).ico | Bin .../Program.cs | 2 +- .../Properties/Resources.Designer.cs | 37 +- .../Properties/Resources.resx | 9 +- .../Properties/Settings.Designer.cs | 6 +- .../Properties/Settings.settings | 0 .../EOM.TSHotelManagement.Common.Core.xml | 675 ++++++++++-------- .../Resources/arrow-down-b.png | Bin .../Resources/blue_refresh.png | Bin .../Resources/close.png | Bin ...ICaP4M8cef_PIC2018.jpg!w1024_new_small.png | Bin .../Resources/lockicon.png | Bin .../Resources/picCommodity.Image.png | Bin .../Resources/picCommodity.ImageHover.png | Bin .../Resources/picCustomer.Image.png | Bin .../Resources/picCustomer.ImageHover.png | Bin .../Resources/picExtend.Image.png | Bin .../Resources/picExtend.ImageHover.png | Bin .../Resources/picLogo.BackgroundImage.png | Bin .../Resources/picRoom.Image.png | Bin .../Resources/picRoom.ImageHover.png | Bin .../Resources/settings2.png | Bin ...2\344\274\240\347\205\247\347\211\207.png" | Bin ...2\344\272\272\344\270\255\345\277\203.png" | Bin ...0\351\203\250\345\215\241\347\211\207.png" | Bin .../Resources/\344\277\256\346\224\271.png" | Bin ...3\344\272\216\346\210\221\344\273\254.png" | Bin ...7\351\203\250\345\215\241\347\211\207.png" | Bin ...7\346\215\242\350\264\246\345\217\267.png" | Bin ...57\344\275\217\346\210\277(hover)icon.png" | Bin ...5\217\257\344\275\217\346\210\277icon.png" | Bin ...7\344\275\217\347\212\266\346\200\201.png" | Bin ...4\351\203\250\345\215\241\347\211\207.png" | Bin .../Resources/\345\222\226\345\225\241.png" | Bin ...1\351\203\250\345\215\241\347\211\207.png" | Bin .../Resources/\345\244\215\345\210\266.png" | Bin .../Resources/\345\257\206\347\240\201.png" | Bin ...62\344\275\217\346\210\277(hover)icon.png" | Bin ...5\267\262\344\275\217\346\210\277icon.png" | Bin ...2\344\275\217\347\212\266\346\200\201.png" | Bin ...0\351\227\250\345\215\241\347\211\207.png" | Bin ...7\345\212\236\345\215\241\347\211\207.png" | Bin .../Resources/\346\211\223\345\215\241.png" | Bin .../Resources/\346\227\251\344\270\212.png" | Bin ...6\351\200\232\344\274\232\345\221\230.png" | Bin .../Resources/\346\234\210\344\272\256.png" | Bin ...6\237\245\346\233\264\346\226\260 (1).png" | Bin .../Resources/\346\263\250\351\224\200.png" | Bin ...0\346\210\267\347\231\273\345\275\225.png" | Bin ...5\351\207\221\344\274\232\345\221\230.png" | Bin ...7\347\273\204\345\215\241\347\211\207.png" | Bin ...7\347\256\241\347\220\206\345\221\230.png" | Bin ...6\351\203\250\345\215\241\347\211\207.png" | Bin ...64\344\277\256\346\210\277(hover)icon.png" | Bin ...7\273\264\344\277\256\346\210\277icon.png" | Bin ...4\344\277\256\347\212\266\346\200\201.png" | Bin ...6\351\203\250\345\215\241\347\211\207.png" | Bin .../\350\204\217\346\210\277(hover)icon.png" | Bin .../\350\204\217\346\210\277icon1.png" | Bin ...7\346\210\277\347\212\266\346\200\201.png" | Bin ...1\351\203\250\345\215\241\347\211\207.png" | Bin .../Resources/\350\264\246\345\217\267.png" | Bin .../Resources/\350\275\254\346\215\242.ico" | Bin ...7\351\203\250\345\215\241\347\211\207.png" | Bin ...3\347\237\263\344\274\232\345\221\230.png" | Bin .../Resources/\351\224\201\345\261\217.png" | Bin ...04\347\272\246\346\210\277(hover)icon.png" | Bin ...1\242\204\347\272\246\346\210\277icon.png" | Bin ...4\347\272\246\347\212\266\346\200\201.png" | Bin ...6\351\203\250\345\215\241\347\211\207.png" | Bin ...4\351\207\221\344\274\232\345\221\230.png" | Bin .../TableComponent/LoadingProgress.cs | 2 +- .../TableComponent/TableComHelper.cs | 10 +- .../app.manifest | 0 .../icon/add to card.ico | Bin .../icon/add_person.ico | Bin .../icon/check-out2.ico | Bin .../icon/checkin.ico | Bin .../icon/customers.ico | Bin .../icon/time.ico | Bin ...\350\276\223_\344\270\212\344\274\240.ico" | Bin ...3\344\272\216\346\210\221\344\273\254.ico" | Bin ...6\345\217\262\345\205\254\345\221\212.ico" | Bin ...0\345\267\245\344\273\273\345\221\275.ico" | Bin ...0\345\267\245\347\256\241\347\220\206.ico" | Bin ...6\345\223\201\347\256\241\347\220\206.ico" | Bin .../icon/\345\245\226\346\203\251.ico" | Bin .../icon/\345\255\246\345\216\206.ico" | Bin ...2\346\210\267\344\277\241\346\201\257.ico" | Bin ...2\346\210\267\347\256\241\347\220\206.ico" | Bin .../icon/\346\200\247 \345\210\253.ico" | Bin .../\346\210\277\346\200\201\345\233\276.ico" | Bin ...7\351\227\264\344\277\256\346\224\271.ico" | Bin .../icon/\346\212\245\350\241\250.ico" | Bin ...5\344\275\234\350\256\260\345\275\225.ico" | Bin .../icon/\346\226\260\345\242\236.ico" | Bin .../icon/\346\235\203\351\231\220.ico" | Bin .../icon/\346\260\221\346\227\217.ico" | Bin .../icon/\346\260\264\347\224\265.ico" | Bin ...0\350\264\271\350\264\246\345\215\225.ico" | Bin ...3\345\212\240\345\221\230\345\267\245.ico" | Bin ...0\347\256\241\347\220\206\345\221\230.ico" | Bin ...1\347\256\241\347\273\237\350\256\241.ico" | Bin .../icon/\347\233\276\347\211\214.ico" | Bin .../icon/\347\246\201\347\224\250.ico" | Bin .../icon/\347\255\211\347\272\247.ico" | Bin .../icon/\350\201\214\344\275\215.ico" | Bin .../icon/\350\247\204\345\210\231.ico" | Bin ...2\345\212\241\350\264\246\345\215\225.ico" | Bin .../icon/\350\275\254\346\215\242.ico" | Bin .../icon/\351\203\250\351\227\250.ico" | Bin .../icon/\351\242\204\347\272\246.ico" | Bin .../images/blue_refresh.png | Bin .../images/lockicon.png | Bin .../images/\345\244\215\345\210\266.png" | Bin .../logo.ico | Bin topsky-hotel-manager-system-web-api | 1 - 310 files changed, 646 insertions(+), 596 deletions(-) rename EOM.Client.TopSkyHotelManagerSystem.sln => EOM.Client.TopSkyHotelManagementSystem.sln (78%) rename {EOM.TSHotelManager.Common => EOM.TSHotelManagement.Common}/AppConstant/AdminConstant.cs (96%) rename {EOM.TSHotelManager.Common => EOM.TSHotelManagement.Common}/AppConstant/Constant.cs (96%) rename {EOM.TSHotelManager.Common => EOM.TSHotelManagement.Common}/AppConstant/CustomTypeConstant.cs (94%) rename {EOM.TSHotelManager.Common => EOM.TSHotelManagement.Common}/AppConstant/PassportConstant.cs (96%) rename {EOM.TSHotelManager.Common => EOM.TSHotelManagement.Common}/AppConstant/RoomStateConstant.cs (94%) rename {EOM.TSHotelManager.Common => EOM.TSHotelManagement.Common}/AppConstant/SexConstant.cs (89%) rename EOM.TSHotelManager.Common/EOM.TSHotelManager.Common.csproj => EOM.TSHotelManagement.Common/EOM.TSHotelManagement.Common.csproj (80%) rename {EOM.TSHotelManager.Common => EOM.TSHotelManagement.Common}/Helper/HttpHelper.cs (99%) rename {EOM.TSHotelManager.Common => EOM.TSHotelManagement.Common}/Helper/ResponseMsg.cs (86%) rename {EOM.TSHotelManager.Common => EOM.TSHotelManagement.Common}/LocalInfo/AdminInfo.cs (98%) rename {EOM.TSHotelManager.Common => EOM.TSHotelManagement.Common}/LocalInfo/LoginInfo.cs (98%) rename {EOM.TSHotelManager.Common => EOM.TSHotelManagement.Common}/Util/ApplicationUtil.cs (99%) rename {EOM.TSHotelManager.Common => EOM.TSHotelManagement.Common}/Util/ExportHelper.cs (99%) rename {EOM.TSHotelManager.Common => EOM.TSHotelManagement.Common}/Util/RecordHelper.cs (93%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/ApiExtractor/ApiConstant.cs (81%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/ApiExtractor/SwaggerExtractor.cs (93%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/App.config (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmAboutUs.Designer.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmAboutUs.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmAboutUs.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmAddAdmin.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmAddAdmin.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmAddAdmin.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmAddRoom.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmAddRoom.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmAddRoom.resx (100%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmAdminManager.Designer.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.Designer.cs (99%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmAdminManager.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.cs (96%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmAdminManager.resx => EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmAuthority.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmAuthority.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmAuthority.resx (100%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmBaseManager.Designer.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.Designer.cs (99%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmBaseManager.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.cs (97%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmBaseManager.resx => EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmCash.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmCash.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmCash.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmChangeAdminPwd.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmChangeAdminPwd.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmChangeAdminPwd.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmChangePosition.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmChangePosition.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmChangePosition.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmChangeRoom.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmChangeRoom.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmChangeRoom.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmChart.Designer.cs (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmChart.cs (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmChart.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmCheckIn.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmCheckIn.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmCheckIn.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmCheckList.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmCheckList.cs (93%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmCheckList.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmCheckOutForm.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmCheckOutForm.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmCheckOutForm.resx (100%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.Designer.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.Designer.cs (99%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.cs (99%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.resx => EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmCustoSpend.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmCustoSpend.cs (93%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmCustoSpend.resx (100%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmCustomerManager.Designer.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.Designer.cs (99%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmCustomerManager.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.cs (98%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmCustomerManager.resx => EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmDepartment.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmDepartment.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmDepartment.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmEditInputs.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmEditInputs.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmEditInputs.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmEducation.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmEducation.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmEducation.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmGoodOrBad.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmGoodOrBad.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmGoodOrBad.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmMySpace.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmMySpace.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmMySpace.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmNation.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmNation.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmNation.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmNotice.Designer.cs (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmNotice.cs (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmNotice.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmOperation.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmOperation.cs (96%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmOperation.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmPleaseWait.Designer.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmPleaseWait.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmPleaseWait.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmPosition.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmPosition.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmPosition.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmProgress.Designer.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmProgress.cs (86%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmProgress.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmReserList.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmReserList.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmReserList.resx (100%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmReserManager.Designer.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.Designer.cs (99%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmReserManager.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.cs (97%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmReserManager.resx => EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmRoomConfig.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmRoomConfig.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmRoomConfig.resx (100%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmRoomManager.Designer.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomManagement.Designer.cs (99%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmRoomManager.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomManagement.cs (98%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmRoomManager.resx => EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomManagement.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmRoomMap.Designer.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmRoomMap.cs (94%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmRoomMap.resx (100%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmRoomStateManager.Designer.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomStateManagement.Designer.cs (99%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmRoomStateManager.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomStateManagement.cs (97%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmRoomStateManager.resx => EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomStateManagement.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmSelectCustoInfo.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmSelectCustoInfo.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmSelectCustoInfo.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmSellThing.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmSellThing.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmSellThing.resx (100%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmSellThingManager.Designer.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.Designer.cs (99%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmSellThingManager.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.cs (98%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmSellThingManager.resx => EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmSexType.Designer.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmSexType.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmSexType.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmUnLockSystem.Designer.cs (96%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmUnLockSystem.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmUnLockSystem.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmUpLoadNotice.Designer.cs (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmUpLoadNotice.cs (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmUpLoadNotice.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmVipRule.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmVipRule.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmVipRule.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmWoEInfo.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmWoEInfo.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmWoEInfo.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmWorkerCheckInfo.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmWorkerCheckInfo.cs (95%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmWorkerCheckInfo.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmWorkerInfo.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmWorkerInfo.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmWorkerInfo.resx (100%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerManager.Designer.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.Designer.cs (99%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerManager.cs => EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.cs (97%) rename EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerManager.resx => EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmWorkerPanel.Designer.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmWorkerPanel.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppFunction/FrmWorkerPanel.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppInterface/FrmAdminEnter.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppInterface/FrmAdminEnter.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppInterface/FrmAdminEnter.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppInterface/FrmLoading.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppInterface/FrmLoading.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppInterface/FrmLoading.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppInterface/FrmLogin.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppInterface/FrmLogin.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppInterface/FrmLogin.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppInterface/FrmNewLogin.Designer.cs (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppInterface/FrmNewLogin.cs (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppInterface/FrmNewLogin.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppMain/FrmBackgroundSystem.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppMain/FrmBackgroundSystem.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppMain/FrmBackgroundSystem.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppMain/FrmMain.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppMain/FrmMain.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppMain/FrmMain.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppUserControls/ucHistory.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppUserControls/ucHistory.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppUserControls/ucHistory.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppUserControls/ucNavBar.Designer.cs (96%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppUserControls/ucNavBar.cs (95%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppUserControls/ucNavBar.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppUserControls/ucRoom.Designer.cs (99%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppUserControls/ucRoom.cs (98%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppUserControls/ucRoom.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppUserControls/ucRoomType.Designer.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppUserControls/ucRoomType.cs (71%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppUserControls/ucRoomType.resx (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppUserControls/ucVipType.Designer.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppUserControls/ucVipType.cs (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/AppUserControls/ucVipType.resx (100%) rename EOM.TSHotelManager.FormUI/EOM.TSHotelManager.FormUI.csproj => EOM.TSHotelManagement.FormUI/EOM.TSHotelManagement.FormUI.csproj (93%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/FodyWeavers.xml (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/InitConfig/Initialize.cs (96%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Logo/bitbug_favicon (1).ico (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Program.cs (93%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Properties/Resources.Designer.cs (95%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Properties/Resources.resx (97%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Properties/Settings.Designer.cs (84%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Properties/Settings.settings (100%) rename EOM.TSHotelManager.FormUI/Resources/EOM.TSHotelManager.Common.Core.xml => EOM.TSHotelManagement.FormUI/Resources/EOM.TSHotelManagement.Common.Core.xml (51%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Resources/arrow-down-b.png (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Resources/blue_refresh.png (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Resources/close.png (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Resources/jpg_auto_04N58PICPw2s58PICaP4M8cef_PIC2018.jpg!w1024_new_small.png (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Resources/lockicon.png (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Resources/picCommodity.Image.png (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Resources/picCommodity.ImageHover.png (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Resources/picCustomer.Image.png (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Resources/picCustomer.ImageHover.png (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Resources/picExtend.Image.png (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Resources/picExtend.ImageHover.png (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Resources/picLogo.BackgroundImage.png (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Resources/picRoom.Image.png (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Resources/picRoom.ImageHover.png (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/Resources/settings2.png (100%) rename "EOM.TSHotelManager.FormUI/Resources/\344\270\212\344\274\240\347\205\247\347\211\207.png" => "EOM.TSHotelManagement.FormUI/Resources/\344\270\212\344\274\240\347\205\247\347\211\207.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\344\270\252\344\272\272\344\270\255\345\277\203.png" => "EOM.TSHotelManagement.FormUI/Resources/\344\270\252\344\272\272\344\270\255\345\277\203.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\344\272\272\345\212\233\350\265\204\346\272\220\351\203\250\345\215\241\347\211\207.png" => "EOM.TSHotelManagement.FormUI/Resources/\344\272\272\345\212\233\350\265\204\346\272\220\351\203\250\345\215\241\347\211\207.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\344\277\256\346\224\271.png" => "EOM.TSHotelManagement.FormUI/Resources/\344\277\256\346\224\271.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\345\205\263\344\272\216\346\210\221\344\273\254.png" => "EOM.TSHotelManagement.FormUI/Resources/\345\205\263\344\272\216\346\210\221\344\273\254.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\345\206\205\346\216\247\351\203\250\345\215\241\347\211\207.png" => "EOM.TSHotelManagement.FormUI/Resources/\345\206\205\346\216\247\351\203\250\345\215\241\347\211\207.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\345\210\207\346\215\242\350\264\246\345\217\267.png" => "EOM.TSHotelManagement.FormUI/Resources/\345\210\207\346\215\242\350\264\246\345\217\267.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\345\217\257\344\275\217\346\210\277(hover)icon.png" => "EOM.TSHotelManagement.FormUI/Resources/\345\217\257\344\275\217\346\210\277(hover)icon.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\345\217\257\344\275\217\346\210\277icon.png" => "EOM.TSHotelManagement.FormUI/Resources/\345\217\257\344\275\217\346\210\277icon.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\345\217\257\344\275\217\347\212\266\346\200\201.png" => "EOM.TSHotelManagement.FormUI/Resources/\345\217\257\344\275\217\347\212\266\346\200\201.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\345\220\216\345\213\244\351\203\250\345\215\241\347\211\207.png" => "EOM.TSHotelManagement.FormUI/Resources/\345\220\216\345\213\244\351\203\250\345\215\241\347\211\207.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\345\222\226\345\225\241.png" => "EOM.TSHotelManagement.FormUI/Resources/\345\222\226\345\225\241.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\345\225\206\345\223\201\351\203\250\345\215\241\347\211\207.png" => "EOM.TSHotelManagement.FormUI/Resources/\345\225\206\345\223\201\351\203\250\345\215\241\347\211\207.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\345\244\215\345\210\266.png" => "EOM.TSHotelManagement.FormUI/Resources/\345\244\215\345\210\266.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\345\257\206\347\240\201.png" => "EOM.TSHotelManagement.FormUI/Resources/\345\257\206\347\240\201.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\345\267\262\344\275\217\346\210\277(hover)icon.png" => "EOM.TSHotelManagement.FormUI/Resources/\345\267\262\344\275\217\346\210\277(hover)icon.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\345\267\262\344\275\217\346\210\277icon.png" => "EOM.TSHotelManagement.FormUI/Resources/\345\267\262\344\275\217\346\210\277icon.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\345\267\262\344\275\217\347\212\266\346\200\201.png" => "EOM.TSHotelManagement.FormUI/Resources/\345\267\262\344\275\217\347\212\266\346\200\201.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\345\270\270\350\247\204\351\203\250\351\227\250\345\215\241\347\211\207.png" => "EOM.TSHotelManagement.FormUI/Resources/\345\270\270\350\247\204\351\203\250\351\227\250\345\215\241\347\211\207.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\346\200\273\347\273\217\345\212\236\345\215\241\347\211\207.png" => "EOM.TSHotelManagement.FormUI/Resources/\346\200\273\347\273\217\345\212\236\345\215\241\347\211\207.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\346\211\223\345\215\241.png" => "EOM.TSHotelManagement.FormUI/Resources/\346\211\223\345\215\241.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\346\227\251\344\270\212.png" => "EOM.TSHotelManagement.FormUI/Resources/\346\227\251\344\270\212.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\346\231\256\351\200\232\344\274\232\345\221\230.png" => "EOM.TSHotelManagement.FormUI/Resources/\346\231\256\351\200\232\344\274\232\345\221\230.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\346\234\210\344\272\256.png" => "EOM.TSHotelManagement.FormUI/Resources/\346\234\210\344\272\256.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\346\243\200\346\237\245\346\233\264\346\226\260 (1).png" => "EOM.TSHotelManagement.FormUI/Resources/\346\243\200\346\237\245\346\233\264\346\226\260 (1).png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\346\263\250\351\224\200.png" => "EOM.TSHotelManagement.FormUI/Resources/\346\263\250\351\224\200.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\347\224\250\346\210\267\347\231\273\345\275\225.png" => "EOM.TSHotelManagement.FormUI/Resources/\347\224\250\346\210\267\347\231\273\345\275\225.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\347\231\275\351\207\221\344\274\232\345\221\230.png" => "EOM.TSHotelManagement.FormUI/Resources/\347\231\275\351\207\221\344\274\232\345\221\230.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\347\233\221\347\256\241\345\260\217\347\273\204\345\215\241\347\211\207.png" => "EOM.TSHotelManagement.FormUI/Resources/\347\233\221\347\256\241\345\260\217\347\273\204\345\215\241\347\211\207.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\347\263\273\347\273\237\347\256\241\347\220\206\345\221\230.png" => "EOM.TSHotelManagement.FormUI/Resources/\347\263\273\347\273\237\347\256\241\347\220\206\345\221\230.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\347\273\217\347\220\206\351\203\250\345\215\241\347\211\207.png" => "EOM.TSHotelManagement.FormUI/Resources/\347\273\217\347\220\206\351\203\250\345\215\241\347\211\207.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\347\273\264\344\277\256\346\210\277(hover)icon.png" => "EOM.TSHotelManagement.FormUI/Resources/\347\273\264\344\277\256\346\210\277(hover)icon.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\347\273\264\344\277\256\346\210\277icon.png" => "EOM.TSHotelManagement.FormUI/Resources/\347\273\264\344\277\256\346\210\277icon.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\347\273\264\344\277\256\347\212\266\346\200\201.png" => "EOM.TSHotelManagement.FormUI/Resources/\347\273\264\344\277\256\347\212\266\346\200\201.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\347\273\264\344\277\256\351\203\250\345\215\241\347\211\207.png" => "EOM.TSHotelManagement.FormUI/Resources/\347\273\264\344\277\256\351\203\250\345\215\241\347\211\207.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\350\204\217\346\210\277(hover)icon.png" => "EOM.TSHotelManagement.FormUI/Resources/\350\204\217\346\210\277(hover)icon.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\350\204\217\346\210\277icon1.png" => "EOM.TSHotelManagement.FormUI/Resources/\350\204\217\346\210\277icon1.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\350\204\217\346\210\277\347\212\266\346\200\201.png" => "EOM.TSHotelManagement.FormUI/Resources/\350\204\217\346\210\277\347\212\266\346\200\201.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\350\264\242\345\212\241\351\203\250\345\215\241\347\211\207.png" => "EOM.TSHotelManagement.FormUI/Resources/\350\264\242\345\212\241\351\203\250\345\215\241\347\211\207.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\350\264\246\345\217\267.png" => "EOM.TSHotelManagement.FormUI/Resources/\350\264\246\345\217\267.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\350\275\254\346\215\242.ico" => "EOM.TSHotelManagement.FormUI/Resources/\350\275\254\346\215\242.ico" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\351\205\222\345\272\227\351\203\250\345\215\241\347\211\207.png" => "EOM.TSHotelManagement.FormUI/Resources/\351\205\222\345\272\227\351\203\250\345\215\241\347\211\207.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\351\222\273\347\237\263\344\274\232\345\221\230.png" => "EOM.TSHotelManagement.FormUI/Resources/\351\222\273\347\237\263\344\274\232\345\221\230.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\351\224\201\345\261\217.png" => "EOM.TSHotelManagement.FormUI/Resources/\351\224\201\345\261\217.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\351\242\204\347\272\246\346\210\277(hover)icon.png" => "EOM.TSHotelManagement.FormUI/Resources/\351\242\204\347\272\246\346\210\277(hover)icon.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\351\242\204\347\272\246\346\210\277icon.png" => "EOM.TSHotelManagement.FormUI/Resources/\351\242\204\347\272\246\346\210\277icon.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\351\242\204\347\272\246\347\212\266\346\200\201.png" => "EOM.TSHotelManagement.FormUI/Resources/\351\242\204\347\272\246\347\212\266\346\200\201.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\351\244\220\351\245\256\351\203\250\345\215\241\347\211\207.png" => "EOM.TSHotelManagement.FormUI/Resources/\351\244\220\351\245\256\351\203\250\345\215\241\347\211\207.png" (100%) rename "EOM.TSHotelManager.FormUI/Resources/\351\273\204\351\207\221\344\274\232\345\221\230.png" => "EOM.TSHotelManagement.FormUI/Resources/\351\273\204\351\207\221\344\274\232\345\221\230.png" (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/TableComponent/LoadingProgress.cs (93%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/TableComponent/TableComHelper.cs (95%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/app.manifest (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/icon/add to card.ico (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/icon/add_person.ico (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/icon/check-out2.ico (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/icon/checkin.ico (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/icon/customers.ico (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/icon/time.ico (100%) rename "EOM.TSHotelManager.FormUI/icon/\344\274\240\350\276\223_\344\270\212\344\274\240.ico" => "EOM.TSHotelManagement.FormUI/icon/\344\274\240\350\276\223_\344\270\212\344\274\240.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\345\205\263\344\272\216\346\210\221\344\273\254.ico" => "EOM.TSHotelManagement.FormUI/icon/\345\205\263\344\272\216\346\210\221\344\273\254.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\345\216\206\345\217\262\345\205\254\345\221\212.ico" => "EOM.TSHotelManagement.FormUI/icon/\345\216\206\345\217\262\345\205\254\345\221\212.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\345\221\230\345\267\245\344\273\273\345\221\275.ico" => "EOM.TSHotelManagement.FormUI/icon/\345\221\230\345\267\245\344\273\273\345\221\275.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\345\221\230\345\267\245\347\256\241\347\220\206.ico" => "EOM.TSHotelManagement.FormUI/icon/\345\221\230\345\267\245\347\256\241\347\220\206.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\345\225\206\345\223\201\347\256\241\347\220\206.ico" => "EOM.TSHotelManagement.FormUI/icon/\345\225\206\345\223\201\347\256\241\347\220\206.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\345\245\226\346\203\251.ico" => "EOM.TSHotelManagement.FormUI/icon/\345\245\226\346\203\251.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\345\255\246\345\216\206.ico" => "EOM.TSHotelManagement.FormUI/icon/\345\255\246\345\216\206.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\345\256\242\346\210\267\344\277\241\346\201\257.ico" => "EOM.TSHotelManagement.FormUI/icon/\345\256\242\346\210\267\344\277\241\346\201\257.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\345\256\242\346\210\267\347\256\241\347\220\206.ico" => "EOM.TSHotelManagement.FormUI/icon/\345\256\242\346\210\267\347\256\241\347\220\206.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\346\200\247 \345\210\253.ico" => "EOM.TSHotelManagement.FormUI/icon/\346\200\247 \345\210\253.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\346\210\277\346\200\201\345\233\276.ico" => "EOM.TSHotelManagement.FormUI/icon/\346\210\277\346\200\201\345\233\276.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\346\210\277\351\227\264\344\277\256\346\224\271.ico" => "EOM.TSHotelManagement.FormUI/icon/\346\210\277\351\227\264\344\277\256\346\224\271.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\346\212\245\350\241\250.ico" => "EOM.TSHotelManagement.FormUI/icon/\346\212\245\350\241\250.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\346\223\215\344\275\234\350\256\260\345\275\225.ico" => "EOM.TSHotelManagement.FormUI/icon/\346\223\215\344\275\234\350\256\260\345\275\225.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\346\226\260\345\242\236.ico" => "EOM.TSHotelManagement.FormUI/icon/\346\226\260\345\242\236.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\346\235\203\351\231\220.ico" => "EOM.TSHotelManagement.FormUI/icon/\346\235\203\351\231\220.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\346\260\221\346\227\217.ico" => "EOM.TSHotelManagement.FormUI/icon/\346\260\221\346\227\217.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\346\260\264\347\224\265.ico" => "EOM.TSHotelManagement.FormUI/icon/\346\260\264\347\224\265.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\346\266\210\350\264\271\350\264\246\345\215\225.ico" => "EOM.TSHotelManagement.FormUI/icon/\346\266\210\350\264\271\350\264\246\345\215\225.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\346\267\273\345\212\240\345\221\230\345\267\245.ico" => "EOM.TSHotelManagement.FormUI/icon/\346\267\273\345\212\240\345\221\230\345\267\245.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\346\267\273\345\212\240\347\256\241\347\220\206\345\221\230.ico" => "EOM.TSHotelManagement.FormUI/icon/\346\267\273\345\212\240\347\256\241\347\220\206\345\221\230.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\347\233\221\347\256\241\347\273\237\350\256\241.ico" => "EOM.TSHotelManagement.FormUI/icon/\347\233\221\347\256\241\347\273\237\350\256\241.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\347\233\276\347\211\214.ico" => "EOM.TSHotelManagement.FormUI/icon/\347\233\276\347\211\214.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\347\246\201\347\224\250.ico" => "EOM.TSHotelManagement.FormUI/icon/\347\246\201\347\224\250.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\347\255\211\347\272\247.ico" => "EOM.TSHotelManagement.FormUI/icon/\347\255\211\347\272\247.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\350\201\214\344\275\215.ico" => "EOM.TSHotelManagement.FormUI/icon/\350\201\214\344\275\215.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\350\247\204\345\210\231.ico" => "EOM.TSHotelManagement.FormUI/icon/\350\247\204\345\210\231.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\350\264\242\345\212\241\350\264\246\345\215\225.ico" => "EOM.TSHotelManagement.FormUI/icon/\350\264\242\345\212\241\350\264\246\345\215\225.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\350\275\254\346\215\242.ico" => "EOM.TSHotelManagement.FormUI/icon/\350\275\254\346\215\242.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\351\203\250\351\227\250.ico" => "EOM.TSHotelManagement.FormUI/icon/\351\203\250\351\227\250.ico" (100%) rename "EOM.TSHotelManager.FormUI/icon/\351\242\204\347\272\246.ico" => "EOM.TSHotelManagement.FormUI/icon/\351\242\204\347\272\246.ico" (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/images/blue_refresh.png (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/images/lockicon.png (100%) rename "EOM.TSHotelManager.FormUI/images/\345\244\215\345\210\266.png" => "EOM.TSHotelManagement.FormUI/images/\345\244\215\345\210\266.png" (100%) rename {EOM.TSHotelManager.FormUI => EOM.TSHotelManagement.FormUI}/logo.ico (100%) delete mode 160000 topsky-hotel-manager-system-web-api diff --git a/.gitmodules b/.gitmodules index 6511dd1..968a7c2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule "topsky-hotel-manager-system-web-api"] - path = topsky-hotel-manager-system-web-api - url = https://gitee.com/java-and-net/topsky-hotel-manager-system-web-api.git +[submodule "topsky-hotel-management-system-web-api"] + path = topsky-hotel-management-system-web-api + url = https://gitee.com/java-and-net/topsky-hotel-management-system-web-api.git diff --git a/EOM.Client.TopSkyHotelManagerSystem.sln b/EOM.Client.TopSkyHotelManagementSystem.sln similarity index 78% rename from EOM.Client.TopSkyHotelManagerSystem.sln rename to EOM.Client.TopSkyHotelManagementSystem.sln index 3588116..c877a7b 100644 --- a/EOM.Client.TopSkyHotelManagerSystem.sln +++ b/EOM.Client.TopSkyHotelManagementSystem.sln @@ -6,21 +6,21 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Api", "Api", "{6A3E4936-8B9 EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Client", "Client", "{3B8902EC-CAB9-406A-AAF7-24DABD885AC0}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManager.Application", "topsky-hotel-manager-system-web-api\EOM.TSHotelManager.Application\EOM.TSHotelManager.Application.csproj", "{B55975AB-2C89-4C01-B107-D87FCA21A5E3}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManagement.Application", "topsky-hotel-management-system-web-api\EOM.TSHotelManagement.Application\EOM.TSHotelManagement.Application.csproj", "{B55975AB-2C89-4C01-B107-D87FCA21A5E3}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManager.EntityFramework", "topsky-hotel-manager-system-web-api\EOM.TSHotelManager.EntityFramework\EOM.TSHotelManager.EntityFramework.csproj", "{8F5CF88A-1111-44CC-AFFA-4637EA10E191}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManagement.EntityFramework", "topsky-hotel-management-system-web-api\EOM.TSHotelManagement.EntityFramework\EOM.TSHotelManagement.EntityFramework.csproj", "{8F5CF88A-1111-44CC-AFFA-4637EA10E191}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManager.WebApi", "topsky-hotel-manager-system-web-api\EOM.TSHotelManager.WebApi\EOM.TSHotelManager.WebApi.csproj", "{566D7064-EA90-45C1-93B7-F512BBAD7BA1}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManagement.WebApi", "topsky-hotel-management-system-web-api\EOM.TSHotelManagement.WebApi\EOM.TSHotelManagement.WebApi.csproj", "{566D7064-EA90-45C1-93B7-F512BBAD7BA1}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManager.Common.Core", "topsky-hotel-manager-system-web-api\EOM.TSHotelManager.Common.Core\EOM.TSHotelManager.Common.Core.csproj", "{48B3F864-88D2-4BD1-A766-B9EBF342AED1}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManagement.Common.Core", "topsky-hotel-management-system-web-api\EOM.TSHotelManagement.Common.Core\EOM.TSHotelManagement.Common.Core.csproj", "{48B3F864-88D2-4BD1-A766-B9EBF342AED1}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManager.Common.Util", "topsky-hotel-manager-system-web-api\EOM.TSHotelManager.Common.Util\EOM.TSHotelManager.Common.Util.csproj", "{9A62B6BE-7C26-465F-A8D1-2CEE66D6F837}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManagement.Common.Util", "topsky-hotel-management-system-web-api\EOM.TSHotelManagement.Common.Util\EOM.TSHotelManagement.Common.Util.csproj", "{9A62B6BE-7C26-465F-A8D1-2CEE66D6F837}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManager.Common", "EOM.TSHotelManager.Common\EOM.TSHotelManager.Common.csproj", "{781CEE04-DDB4-4037-8175-9A6548716871}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManagement.Common", "EOM.TSHotelManagement.Common\EOM.TSHotelManagement.Common.csproj", "{781CEE04-DDB4-4037-8175-9A6548716871}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManager.FormUI", "EOM.TSHotelManager.FormUI\EOM.TSHotelManager.FormUI.csproj", "{D89E76F5-007B-4915-91A8-265CCA6814BF}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManagement.FormUI", "EOM.TSHotelManagement.FormUI\EOM.TSHotelManagement.FormUI.csproj", "{D89E76F5-007B-4915-91A8-265CCA6814BF}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManager.Shared", "topsky-hotel-manager-system-web-api\EOM.TSHotelManager.Shared\EOM.TSHotelManager.Shared.csproj", "{1A37446C-A721-4507-89B5-7BFF6F66A004}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManagement.Shared", "topsky-hotel-management-system-web-api\EOM.TSHotelManagement.Shared\EOM.TSHotelManagement.Shared.csproj", "{1A37446C-A721-4507-89B5-7BFF6F66A004}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/EOM.TSHotelManager.Common/AppConstant/AdminConstant.cs b/EOM.TSHotelManagement.Common/AppConstant/AdminConstant.cs similarity index 96% rename from EOM.TSHotelManager.Common/AppConstant/AdminConstant.cs rename to EOM.TSHotelManagement.Common/AppConstant/AdminConstant.cs index 40c63a8..a223724 100644 --- a/EOM.TSHotelManager.Common/AppConstant/AdminConstant.cs +++ b/EOM.TSHotelManagement.Common/AppConstant/AdminConstant.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace EOM.TSHotelManager.Common +namespace EOM.TSHotelManagement.Common { public class AdminConstant : Constant { diff --git a/EOM.TSHotelManager.Common/AppConstant/Constant.cs b/EOM.TSHotelManagement.Common/AppConstant/Constant.cs similarity index 96% rename from EOM.TSHotelManager.Common/AppConstant/Constant.cs rename to EOM.TSHotelManagement.Common/AppConstant/Constant.cs index 12fe684..4e056a3 100644 --- a/EOM.TSHotelManager.Common/AppConstant/Constant.cs +++ b/EOM.TSHotelManagement.Common/AppConstant/Constant.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.Common +namespace EOM.TSHotelManagement.Common { public class Constant where T : Constant { diff --git a/EOM.TSHotelManager.Common/AppConstant/CustomTypeConstant.cs b/EOM.TSHotelManagement.Common/AppConstant/CustomTypeConstant.cs similarity index 94% rename from EOM.TSHotelManager.Common/AppConstant/CustomTypeConstant.cs rename to EOM.TSHotelManagement.Common/AppConstant/CustomTypeConstant.cs index 557a75d..f200f30 100644 --- a/EOM.TSHotelManager.Common/AppConstant/CustomTypeConstant.cs +++ b/EOM.TSHotelManagement.Common/AppConstant/CustomTypeConstant.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.Common +namespace EOM.TSHotelManagement.Common { public class CustomTypeConstant : Constant { diff --git a/EOM.TSHotelManager.Common/AppConstant/PassportConstant.cs b/EOM.TSHotelManagement.Common/AppConstant/PassportConstant.cs similarity index 96% rename from EOM.TSHotelManager.Common/AppConstant/PassportConstant.cs rename to EOM.TSHotelManagement.Common/AppConstant/PassportConstant.cs index 096fe74..ef63e9a 100644 --- a/EOM.TSHotelManager.Common/AppConstant/PassportConstant.cs +++ b/EOM.TSHotelManagement.Common/AppConstant/PassportConstant.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.Common +namespace EOM.TSHotelManagement.Common { public class PassportConstant : Constant { diff --git a/EOM.TSHotelManager.Common/AppConstant/RoomStateConstant.cs b/EOM.TSHotelManagement.Common/AppConstant/RoomStateConstant.cs similarity index 94% rename from EOM.TSHotelManager.Common/AppConstant/RoomStateConstant.cs rename to EOM.TSHotelManagement.Common/AppConstant/RoomStateConstant.cs index cd8c2a2..b986172 100644 --- a/EOM.TSHotelManager.Common/AppConstant/RoomStateConstant.cs +++ b/EOM.TSHotelManagement.Common/AppConstant/RoomStateConstant.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.Common +namespace EOM.TSHotelManagement.Common { public class RoomStateConstant : Constant { diff --git a/EOM.TSHotelManager.Common/AppConstant/SexConstant.cs b/EOM.TSHotelManagement.Common/AppConstant/SexConstant.cs similarity index 89% rename from EOM.TSHotelManager.Common/AppConstant/SexConstant.cs rename to EOM.TSHotelManagement.Common/AppConstant/SexConstant.cs index f20ade0..c75dd92 100644 --- a/EOM.TSHotelManager.Common/AppConstant/SexConstant.cs +++ b/EOM.TSHotelManagement.Common/AppConstant/SexConstant.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.Common +namespace EOM.TSHotelManagement.Common { public class SexConstant : Constant { diff --git a/EOM.TSHotelManager.Common/EOM.TSHotelManager.Common.csproj b/EOM.TSHotelManagement.Common/EOM.TSHotelManagement.Common.csproj similarity index 80% rename from EOM.TSHotelManager.Common/EOM.TSHotelManager.Common.csproj rename to EOM.TSHotelManagement.Common/EOM.TSHotelManagement.Common.csproj index 885b551..818c912 100644 --- a/EOM.TSHotelManager.Common/EOM.TSHotelManager.Common.csproj +++ b/EOM.TSHotelManagement.Common/EOM.TSHotelManagement.Common.csproj @@ -17,7 +17,7 @@ - + diff --git a/EOM.TSHotelManager.Common/Helper/HttpHelper.cs b/EOM.TSHotelManagement.Common/Helper/HttpHelper.cs similarity index 99% rename from EOM.TSHotelManager.Common/Helper/HttpHelper.cs rename to EOM.TSHotelManagement.Common/Helper/HttpHelper.cs index 1943318..b2fec7b 100644 --- a/EOM.TSHotelManager.Common/Helper/HttpHelper.cs +++ b/EOM.TSHotelManagement.Common/Helper/HttpHelper.cs @@ -8,7 +8,7 @@ using System.Text; using System.Text.RegularExpressions; using System.Web; -namespace EOM.TSHotelManager.Common +namespace EOM.TSHotelManagement.Common { /// /// 文件上传帮助类 diff --git a/EOM.TSHotelManager.Common/Helper/ResponseMsg.cs b/EOM.TSHotelManagement.Common/Helper/ResponseMsg.cs similarity index 86% rename from EOM.TSHotelManager.Common/Helper/ResponseMsg.cs rename to EOM.TSHotelManagement.Common/Helper/ResponseMsg.cs index 398fb45..21c073f 100644 --- a/EOM.TSHotelManager.Common/Helper/ResponseMsg.cs +++ b/EOM.TSHotelManagement.Common/Helper/ResponseMsg.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.Common +namespace EOM.TSHotelManagement.Common { public class ResponseMsg { diff --git a/EOM.TSHotelManager.Common/LocalInfo/AdminInfo.cs b/EOM.TSHotelManagement.Common/LocalInfo/AdminInfo.cs similarity index 98% rename from EOM.TSHotelManager.Common/LocalInfo/AdminInfo.cs rename to EOM.TSHotelManagement.Common/LocalInfo/AdminInfo.cs index e985b75..d99eaa3 100644 --- a/EOM.TSHotelManager.Common/LocalInfo/AdminInfo.cs +++ b/EOM.TSHotelManagement.Common/LocalInfo/AdminInfo.cs @@ -22,7 +22,7 @@ * *模块说明:管理员信息静态类 */ -namespace EOM.TSHotelManager.Common +namespace EOM.TSHotelManagement.Common { /// /// 管理员信息静态类(后台管理员登入后的本地信息存储) diff --git a/EOM.TSHotelManager.Common/LocalInfo/LoginInfo.cs b/EOM.TSHotelManagement.Common/LocalInfo/LoginInfo.cs similarity index 98% rename from EOM.TSHotelManager.Common/LocalInfo/LoginInfo.cs rename to EOM.TSHotelManagement.Common/LocalInfo/LoginInfo.cs index 1efb15d..114dfc2 100644 --- a/EOM.TSHotelManager.Common/LocalInfo/LoginInfo.cs +++ b/EOM.TSHotelManagement.Common/LocalInfo/LoginInfo.cs @@ -22,7 +22,7 @@ * *模块说明:登录信息静态类(前台工作人员登入后的本地信息存储) */ -namespace EOM.TSHotelManager.Common +namespace EOM.TSHotelManagement.Common { /// /// 登录信息静态类(前台工作人员登入后的本地信息存储) diff --git a/EOM.TSHotelManager.Common/Util/ApplicationUtil.cs b/EOM.TSHotelManagement.Common/Util/ApplicationUtil.cs similarity index 99% rename from EOM.TSHotelManager.Common/Util/ApplicationUtil.cs rename to EOM.TSHotelManagement.Common/Util/ApplicationUtil.cs index e21860d..eca25d8 100644 --- a/EOM.TSHotelManager.Common/Util/ApplicationUtil.cs +++ b/EOM.TSHotelManagement.Common/Util/ApplicationUtil.cs @@ -2,7 +2,7 @@ using System.Reflection; using System.Text; -namespace EOM.TSHotelManager.Common +namespace EOM.TSHotelManagement.Common { /// /// 静态工具 diff --git a/EOM.TSHotelManager.Common/Util/ExportHelper.cs b/EOM.TSHotelManagement.Common/Util/ExportHelper.cs similarity index 99% rename from EOM.TSHotelManager.Common/Util/ExportHelper.cs rename to EOM.TSHotelManagement.Common/Util/ExportHelper.cs index e6efac2..2512198 100644 --- a/EOM.TSHotelManager.Common/Util/ExportHelper.cs +++ b/EOM.TSHotelManagement.Common/Util/ExportHelper.cs @@ -3,7 +3,7 @@ using NPOI.SS.UserModel; using NPOI.XSSF.UserModel; using System.Data; -namespace EOM.TSHotelManager.Common +namespace EOM.TSHotelManagement.Common { /// /// 导出助手 diff --git a/EOM.TSHotelManager.Common/Util/RecordHelper.cs b/EOM.TSHotelManagement.Common/Util/RecordHelper.cs similarity index 93% rename from EOM.TSHotelManager.Common/Util/RecordHelper.cs rename to EOM.TSHotelManagement.Common/Util/RecordHelper.cs index 8395d81..11083e8 100644 --- a/EOM.TSHotelManager.Common/Util/RecordHelper.cs +++ b/EOM.TSHotelManagement.Common/Util/RecordHelper.cs @@ -1,6 +1,6 @@ -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common.Core; -namespace EOM.TSHotelManager.Common +namespace EOM.TSHotelManagement.Common { /// /// 日志记录助手 diff --git a/EOM.TSHotelManager.FormUI/ApiExtractor/ApiConstant.cs b/EOM.TSHotelManagement.FormUI/ApiExtractor/ApiConstant.cs similarity index 81% rename from EOM.TSHotelManager.FormUI/ApiExtractor/ApiConstant.cs rename to EOM.TSHotelManagement.FormUI/ApiExtractor/ApiConstant.cs index 3f1876b..22b1d94 100644 --- a/EOM.TSHotelManager.FormUI/ApiExtractor/ApiConstant.cs +++ b/EOM.TSHotelManagement.FormUI/ApiExtractor/ApiConstant.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public static class ApiConstant { diff --git a/EOM.TSHotelManager.FormUI/ApiExtractor/SwaggerExtractor.cs b/EOM.TSHotelManagement.FormUI/ApiExtractor/SwaggerExtractor.cs similarity index 93% rename from EOM.TSHotelManager.FormUI/ApiExtractor/SwaggerExtractor.cs rename to EOM.TSHotelManagement.FormUI/ApiExtractor/SwaggerExtractor.cs index 862000f..3290309 100644 --- a/EOM.TSHotelManager.FormUI/ApiExtractor/SwaggerExtractor.cs +++ b/EOM.TSHotelManagement.FormUI/ApiExtractor/SwaggerExtractor.cs @@ -1,8 +1,8 @@ -using EOM.TSHotelManager.Common; +using EOM.TSHotelManagement.Common; using Newtonsoft.Json; using RestSharp; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public class SwaggerExtractor { diff --git a/EOM.TSHotelManager.FormUI/App.config b/EOM.TSHotelManagement.FormUI/App.config similarity index 100% rename from EOM.TSHotelManager.FormUI/App.config rename to EOM.TSHotelManagement.FormUI/App.config diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAboutUs.Designer.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmAboutUs.Designer.cs index 44c1d6e..013268a 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAboutUs.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmAboutUs { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAboutUs.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmAboutUs.cs index f0f53d9..39f8d51 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAboutUs.cs @@ -24,7 +24,7 @@ using AntdUI; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmAboutUs : Window { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAboutUs.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmAboutUs.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmAboutUs.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.Designer.cs index 9114fcf..72eb842 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.Designer.cs @@ -1,5 +1,5 @@  -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmAddAdmin { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.cs index a492322..de3e626 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.cs @@ -22,12 +22,12 @@ * */ using AntdUI; -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; -using EOM.TSHotelManager.Common.Util; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.Common.Util; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmAddAdmin : Window { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmAddAdmin.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmAddAdmin.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAddRoom.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmAddRoom.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.Designer.cs index ea8c302..7bdf9d9 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmAddRoom.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmAddRoom { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAddRoom.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmAddRoom.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.cs index a6c4c62..b497210 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmAddRoom.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.cs @@ -22,13 +22,13 @@ * */ using AntdUI; -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; -using EOM.TSHotelManager.Common.Util; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.Common.Util; using jvncorelib.EntityLib; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmAddRoom : Window { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAddRoom.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmAddRoom.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmAddRoom.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAdminManager.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmAdminManager.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.Designer.cs index dd3d050..9b9dbc5 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmAdminManager.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.Designer.cs @@ -1,5 +1,5 @@  -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmAdminManager { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAdminManager.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.cs similarity index 96% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmAdminManager.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.cs index a378740..ac6fa7c 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmAdminManager.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.cs @@ -21,11 +21,11 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmAdminManager : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAdminManager.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmAdminManager.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmAdminManagement.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAuthority.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmAuthority.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.Designer.cs index 654e8ce..50c88bf 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmAuthority.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.Designer.cs @@ -1,5 +1,5 @@  -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmAuthority { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAuthority.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmAuthority.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.cs index 144ffe9..8d30c1c 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmAuthority.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.cs @@ -21,12 +21,12 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using jvncorelib.EntityLib; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmAuthority : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmAuthority.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmAuthority.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmAuthority.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmBaseManager.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmBaseManager.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.Designer.cs index 4fad773..975d12d 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmBaseManager.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.Designer.cs @@ -1,5 +1,5 @@  -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmBaseManager { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmBaseManager.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmBaseManager.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.cs index 1284983..e9e7c29 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmBaseManager.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.cs @@ -23,7 +23,7 @@ */ using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmBaseManager : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmBaseManager.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmBaseManager.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmBaseManagement.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCash.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCash.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.Designer.cs index f82d86d..8b9be9a 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCash.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmCash { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCash.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCash.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.cs index e42c6ae..6656415 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCash.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.cs @@ -21,12 +21,12 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; -using EOM.TSHotelManager.Common.Util; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.Common.Util; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmCash : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCash.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCash.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCash.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangeAdminPwd.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmChangeAdminPwd.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.Designer.cs index 407191b..17f8cfd 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangeAdminPwd.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.Designer.cs @@ -1,5 +1,5 @@  -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmChangeAdminPwd { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangeAdminPwd.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmChangeAdminPwd.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.cs index 5dc04e7..1fb3f98 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangeAdminPwd.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.cs @@ -21,13 +21,13 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using jvncorelib.EntityLib; using Sunny.UI; using System.Text.RegularExpressions; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmChangeAdminPwd : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangeAdminPwd.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmChangeAdminPwd.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeAdminPwd.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangePosition.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmChangePosition.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.Designer.cs index 1e611cf..fcb9f72 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangePosition.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmChangePosition { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangePosition.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmChangePosition.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.cs index 2ca3ad3..a6cfbf3 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangePosition.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.cs @@ -22,11 +22,11 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmChangePosition : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangePosition.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmChangePosition.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmChangePosition.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangeRoom.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeRoom.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmChangeRoom.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeRoom.Designer.cs index c67345f..68f6f74 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangeRoom.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeRoom.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmChangeRoom { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangeRoom.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeRoom.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmChangeRoom.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeRoom.cs index 5d23370..a7b23a4 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangeRoom.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeRoom.cs @@ -22,13 +22,13 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; using System.Transactions; -using EOM.TSHotelManager.Shared; +using EOM.TSHotelManagement.Shared; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmChangeRoom : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmChangeRoom.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeRoom.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmChangeRoom.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmChangeRoom.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmChart.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChart.Designer.cs similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmChart.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmChart.Designer.cs diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmChart.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChart.cs similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmChart.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmChart.cs diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmChart.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmChart.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmChart.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmChart.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckIn.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCheckIn.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.Designer.cs index a6e1a11..232921b 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckIn.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmCheckIn { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckIn.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCheckIn.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.cs index 954ba3f..6a10da4 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckIn.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.cs @@ -23,12 +23,12 @@ */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; using System.Transactions; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmCheckIn : UIEditForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckIn.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCheckIn.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckIn.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckList.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCheckList.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.Designer.cs index 1554396..e20fda9 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckList.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmCheckList { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckList.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.cs similarity index 93% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCheckList.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.cs index d934778..b17010d 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckList.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.cs @@ -23,11 +23,11 @@ */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmCheckList : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckList.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCheckList.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckList.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckOutForm.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCheckOutForm.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.Designer.cs index 32f5921..7e20aba 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckOutForm.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmCheckOutForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckOutForm.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCheckOutForm.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.cs index fae111c..e7bb9b0 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckOutForm.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.cs @@ -22,12 +22,12 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; using System.Transactions; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmCheckOutForm : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCheckOutForm.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCheckOutForm.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCheckOutForm.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.Designer.cs index d9d939d..38e084d 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmCustoManager { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.cs index 2735577..a0688e2 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.cs @@ -23,12 +23,12 @@ */ using AntdUI; -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using jvncorelib.EntityLib; using System.Data; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmCustoManager : Window { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCustoManager.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoManagement.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoSpend.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCustoSpend.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.Designer.cs index 7a84061..3d43d64 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoSpend.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmCustoSpend { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoSpend.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.cs similarity index 93% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCustoSpend.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.cs index 328f5cd..6c4f559 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoSpend.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.cs @@ -22,11 +22,11 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmCustoSpend : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustoSpend.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCustoSpend.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCustoSpend.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustomerManager.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCustomerManager.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.Designer.cs index 61e471d..5a52f8e 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustomerManager.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmCustomerManager { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustomerManager.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCustomerManager.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.cs index 3462c7b..eb9e0c7 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustomerManager.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.cs @@ -22,11 +22,11 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmCustomerManager : Form { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmCustomerManager.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmCustomerManager.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmCustomerManagement.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmDepartment.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmDepartment.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.Designer.cs index 5fcef8a..948ce05 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmDepartment.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.Designer.cs @@ -1,5 +1,5 @@  -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmDepartment { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmDepartment.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmDepartment.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.cs index d60bb14..5143f51 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmDepartment.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.cs @@ -22,12 +22,12 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using jvncorelib.EntityLib; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmDepartment : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmDepartment.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmDepartment.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmDepartment.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmEditInputs.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmEditInputs.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmEditInputs.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmEditInputs.Designer.cs index 800b7da..0c0217c 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmEditInputs.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmEditInputs.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmEditInputs { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmEditInputs.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmEditInputs.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmEditInputs.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmEditInputs.cs index 487834b..5506f60 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmEditInputs.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmEditInputs.cs @@ -22,11 +22,11 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmEditInputs : UIEditForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmEditInputs.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmEditInputs.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmEditInputs.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmEditInputs.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmEducation.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmEducation.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.Designer.cs index 75f7cb9..0443a22 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmEducation.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.Designer.cs @@ -1,5 +1,5 @@  -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmEducation { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmEducation.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmEducation.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.cs index 8c2c077..96af102 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmEducation.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.cs @@ -23,11 +23,11 @@ */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmEducation : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmEducation.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmEducation.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmEducation.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmGoodOrBad.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmGoodOrBad.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.Designer.cs index f34ee02..c806bb6 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmGoodOrBad.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmGoodOrBad { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmGoodOrBad.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmGoodOrBad.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.cs index 901772d..dad1d5d 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmGoodOrBad.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.cs @@ -22,11 +22,11 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmGoodOrBad : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmGoodOrBad.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmGoodOrBad.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmGoodOrBad.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmMySpace.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmMySpace.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.Designer.cs index 2a24876..493c89b 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmMySpace.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.Designer.cs @@ -1,5 +1,5 @@  -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmMySpace { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmMySpace.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmMySpace.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.cs index 580f482..65c0bdc 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmMySpace.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.cs @@ -22,15 +22,15 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using jvncorelib.EncryptorLib; using jvncorelib.EntityLib; using Sunny.UI; using System.ComponentModel; using System.Text.RegularExpressions; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmMySpace : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmMySpace.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmMySpace.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmMySpace.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmNation.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmNation.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.Designer.cs index 24d5a6d..81eb27b 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmNation.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.Designer.cs @@ -1,5 +1,5 @@  -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmNation { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmNation.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmNation.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.cs index b9285d6..98466e0 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmNation.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.cs @@ -22,12 +22,12 @@ * */ -//using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +//using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmNation : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmNation.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmNation.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmNation.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmNotice.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmNotice.Designer.cs similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmNotice.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmNotice.Designer.cs diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmNotice.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmNotice.cs similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmNotice.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmNotice.cs diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmNotice.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmNotice.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmNotice.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmNotice.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmOperation.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmOperation.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.Designer.cs index 90d9976..cb37e74 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmOperation.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmOperation { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmOperation.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.cs similarity index 96% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmOperation.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.cs index 553e6ff..e0aadd2 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmOperation.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.cs @@ -22,11 +22,11 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmOperation : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmOperation.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmOperation.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmOperation.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmPleaseWait.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.Designer.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmPleaseWait.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.Designer.cs index 4bd2ed5..3d9c812 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmPleaseWait.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.Designer.cs @@ -1,5 +1,5 @@  -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmPleaseWait { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmPleaseWait.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmPleaseWait.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.cs index 6ff2c93..d365569 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmPleaseWait.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.cs @@ -23,7 +23,7 @@ */ using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmPleaseWait : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmPleaseWait.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmPleaseWait.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmPleaseWait.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmPosition.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmPosition.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.Designer.cs index fbb27e3..1d932cd 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmPosition.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.Designer.cs @@ -1,5 +1,5 @@  -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmPosition { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmPosition.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmPosition.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.cs index 0e629af..109cc8b 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmPosition.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.cs @@ -22,11 +22,11 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmPosition : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmPosition.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmPosition.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmPosition.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmProgress.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmProgress.Designer.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmProgress.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmProgress.Designer.cs index 1c9a0eb..b8e70e1 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmProgress.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmProgress.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmProgress { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmProgress.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmProgress.cs similarity index 86% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmProgress.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmProgress.cs index cc4b1c1..beecd6b 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmProgress.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmProgress.cs @@ -1,6 +1,6 @@ using AntdUI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmProgress : Window { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmProgress.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmProgress.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmProgress.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmProgress.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmReserList.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmReserList.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.Designer.cs index 7852d1f..5e5c4b1 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmReserList.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmReserList { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmReserList.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmReserList.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.cs index 115ff53..4a1f308 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmReserList.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.cs @@ -21,12 +21,12 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; using System.Transactions; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmReserList : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmReserList.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmReserList.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmReserList.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmReserManager.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmReserManager.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.Designer.cs index ca8f698..4a16f0c 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmReserManager.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmReserManager { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmReserManager.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmReserManager.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.cs index 6b44ed1..a40a77c 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmReserManager.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.cs @@ -21,11 +21,11 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmReserManager : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmReserManager.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmReserManager.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmReserManagement.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomConfig.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmRoomConfig.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.Designer.cs index 7813dab..c5cacc9 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomConfig.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI.AppFunction +namespace EOM.TSHotelManagement.FormUI.AppFunction { partial class FrmRoomConfig { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomConfig.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmRoomConfig.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.cs index 4814990..4b5c2a7 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomConfig.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.cs @@ -21,13 +21,13 @@ *SOFTWARE. * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; -using EOM.TSHotelManager.Common.Util; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.Common.Util; using jvncorelib.EntityLib; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI.AppFunction +namespace EOM.TSHotelManagement.FormUI.AppFunction { public partial class FrmRoomConfig : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomConfig.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmRoomConfig.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomConfig.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomManager.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomManagement.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmRoomManager.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomManagement.Designer.cs index 2464455..ce9636a 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomManager.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomManagement.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmRoomManager { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomManager.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomManagement.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmRoomManager.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomManagement.cs index e026164..4ade855 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomManager.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomManagement.cs @@ -23,13 +23,13 @@ */ using AntdUI; -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; -using EOM.TSHotelManager.FormUI.AppUserControls; -using EOM.TSHotelManager.FormUI.Properties; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.FormUI.AppUserControls; +using EOM.TSHotelManagement.FormUI.Properties; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmRoomManager : Form { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomManager.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomManagement.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmRoomManager.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomManagement.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomMap.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.Designer.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmRoomMap.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.Designer.cs index c3b1112..3aa1d09 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomMap.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.Designer.cs @@ -1,5 +1,5 @@  -namespace EOM.TSHotelManager.FormUI.AppFunction +namespace EOM.TSHotelManagement.FormUI.AppFunction { partial class FrmRoomMap { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomMap.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.cs similarity index 94% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmRoomMap.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.cs index 8c629da..09fdeb0 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomMap.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.cs @@ -23,11 +23,11 @@ */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI.AppFunction +namespace EOM.TSHotelManagement.FormUI.AppFunction { public partial class FrmRoomMap : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomMap.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmRoomMap.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomMap.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomStateManager.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomStateManagement.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmRoomStateManager.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomStateManagement.Designer.cs index c7e86e6..e288cfd 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomStateManager.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomStateManagement.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmRoomStateManager { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomStateManager.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomStateManagement.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmRoomStateManager.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomStateManagement.cs index a0183fb..1a2dc31 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomStateManager.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomStateManagement.cs @@ -22,11 +22,11 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmRoomStateManager : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmRoomStateManager.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomStateManagement.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmRoomStateManager.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmRoomStateManagement.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmSelectCustoInfo.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSelectCustoInfo.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmSelectCustoInfo.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmSelectCustoInfo.Designer.cs index 57234d5..937040a 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmSelectCustoInfo.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSelectCustoInfo.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmSelectCustoInfo { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmSelectCustoInfo.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSelectCustoInfo.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmSelectCustoInfo.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmSelectCustoInfo.cs index 8244248..18aa716 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmSelectCustoInfo.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSelectCustoInfo.cs @@ -22,11 +22,11 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmSelectCustoInfo : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmSelectCustoInfo.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSelectCustoInfo.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmSelectCustoInfo.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmSelectCustoInfo.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThing.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThing.Designer.cs index e7877de..788cc59 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThing.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmSellThing { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThing.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThing.cs index 227616a..f58c57b 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThing.cs @@ -22,13 +22,13 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; -using EOM.TSHotelManager.Shared; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.Shared; using jvncorelib.EntityLib; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmSellThing : Sunny.UI.UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThing.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmSellThing.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThing.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThingManager.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmSellThingManager.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.Designer.cs index 9bd1c21..d18251f 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThingManager.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmSellThingManager { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThingManager.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmSellThingManager.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.cs index 4dde5b3..84f7110 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThingManager.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.cs @@ -22,11 +22,11 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmSellThingManager : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmSellThingManager.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmSellThingManager.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmSellThingManagement.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmSexType.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.Designer.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmSexType.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.Designer.cs index ce8475d..2d447ad 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmSexType.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.Designer.cs @@ -1,5 +1,5 @@  -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmSexType { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmSexType.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmSexType.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.cs index ffa64f7..b821115 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmSexType.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.cs @@ -24,7 +24,7 @@ using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmSexType : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmSexType.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmSexType.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmSexType.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmUnLockSystem.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.Designer.cs similarity index 96% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmUnLockSystem.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.Designer.cs index 72d2e13..285b969 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmUnLockSystem.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmUnLockSystem { @@ -85,7 +85,7 @@ // this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackgroundImage = global::EOM.TSHotelManager.FormUI.Properties.Resources.jpg_auto_04N58PICPw2s58PICaP4M8cef_PIC2018_jpg_w1024_new_small; + this.BackgroundImage = global::EOM.TSHotelManagement.FormUI.Properties.Resources.jpg_auto_04N58PICPw2s58PICaP4M8cef_PIC2018_jpg_w1024_new_small; this.ClientSize = new System.Drawing.Size(498, 179); this.Controls.Add(this.btnUnLock); this.Controls.Add(this.txtUnLockPwd); diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmUnLockSystem.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmUnLockSystem.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.cs index 2d96f7c..1e0df29 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmUnLockSystem.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.cs @@ -22,13 +22,13 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; using System.Diagnostics; using System.Runtime.InteropServices; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmUnLockSystem : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmUnLockSystem.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmUnLockSystem.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmUnLockSystem.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmUpLoadNotice.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmUpLoadNotice.Designer.cs similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmUpLoadNotice.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmUpLoadNotice.Designer.cs diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmUpLoadNotice.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmUpLoadNotice.cs similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmUpLoadNotice.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmUpLoadNotice.cs diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmUpLoadNotice.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmUpLoadNotice.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmUpLoadNotice.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmUpLoadNotice.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmVipRule.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmVipRule.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.Designer.cs index 758c211..02f8cbd 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmVipRule.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.Designer.cs @@ -1,5 +1,5 @@  -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmVipRule { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmVipRule.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmVipRule.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.cs index 4ef9f4c..6ad2406 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmVipRule.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.cs @@ -22,12 +22,12 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; -using EOM.TSHotelManager.FormUI.Properties; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.FormUI.Properties; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmVipRule : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmVipRule.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmVipRule.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmVipRule.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWoEInfo.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmWoEInfo.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.Designer.cs index 97a6d47..6039f50 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmWoEInfo.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmWoEInfo { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWoEInfo.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmWoEInfo.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.cs index b6628f0..38b71a9 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmWoEInfo.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.cs @@ -22,11 +22,11 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmWoEInfo : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWoEInfo.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmWoEInfo.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmWoEInfo.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerCheckInfo.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerCheckInfo.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.Designer.cs index 1b0bebe..7740dd5 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerCheckInfo.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmWorkerCheckInfo { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerCheckInfo.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.cs similarity index 95% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerCheckInfo.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.cs index 68fb42a..b8cd26e 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerCheckInfo.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.cs @@ -22,11 +22,11 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmWorkerCheckInfo : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerCheckInfo.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerCheckInfo.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerCheckInfo.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerInfo.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerInfo.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.Designer.cs index 8da9e48..bd898f4 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerInfo.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmWorkerInfo { @@ -486,7 +486,7 @@ // picWorkerPic // this.picWorkerPic.BackColor = System.Drawing.Color.Transparent; - this.picWorkerPic.BackgroundImage = global::EOM.TSHotelManager.FormUI.Properties.Resources.上传照片; + this.picWorkerPic.BackgroundImage = global::EOM.TSHotelManagement.FormUI.Properties.Resources.上传照片; this.picWorkerPic.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.picWorkerPic.Location = new System.Drawing.Point(614, 38); this.picWorkerPic.Name = "picWorkerPic"; diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerInfo.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerInfo.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.cs index eb308b4..b45a2de 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerInfo.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.cs @@ -22,12 +22,12 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using jvncorelib.EncryptorLib; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmWorkerInfo : UIEditForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerInfo.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerInfo.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerInfo.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerManager.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerManager.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.Designer.cs index 40ce454..8e0fd1b 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerManager.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmWorkerManager { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerManager.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerManager.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.cs index 75e0f1c..172e9f6 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerManager.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.cs @@ -22,11 +22,11 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmWorkerManager : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerManager.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerManager.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerManagement.resx diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerPanel.Designer.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.Designer.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerPanel.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.Designer.cs index 6b91256..bc3aa7b 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerPanel.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmWorkerPanel { @@ -149,7 +149,7 @@ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255))))); - this.BackgroundImage = global::EOM.TSHotelManager.FormUI.Properties.Resources.常规部门卡片; + this.BackgroundImage = global::EOM.TSHotelManagement.FormUI.Properties.Resources.常规部门卡片; this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.ClientSize = new System.Drawing.Size(375, 239); this.Controls.Add(this.btnBlockAccount); diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerPanel.cs b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerPanel.cs rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.cs index ddb6567..ff74093 100644 --- a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerPanel.cs +++ b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.cs @@ -22,12 +22,12 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; -using EOM.TSHotelManager.FormUI.Properties; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.FormUI.Properties; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { /// /// 员工操作界面 diff --git a/EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerPanel.resx b/EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppFunction/FrmWorkerPanel.resx rename to EOM.TSHotelManagement.FormUI/AppFunction/FrmWorkerPanel.resx diff --git a/EOM.TSHotelManager.FormUI/AppInterface/FrmAdminEnter.Designer.cs b/EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppInterface/FrmAdminEnter.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.Designer.cs index b39bf0a..b62e4d2 100644 --- a/EOM.TSHotelManager.FormUI/AppInterface/FrmAdminEnter.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmAdminEnter { diff --git a/EOM.TSHotelManager.FormUI/AppInterface/FrmAdminEnter.cs b/EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppInterface/FrmAdminEnter.cs rename to EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.cs index 547bf37..43abc7c 100644 --- a/EOM.TSHotelManager.FormUI/AppInterface/FrmAdminEnter.cs +++ b/EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.cs @@ -22,13 +22,13 @@ * */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using jvncorelib.EncryptorLib; using Sunny.UI; using System.Text.RegularExpressions; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmAdminEnter : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppInterface/FrmAdminEnter.resx b/EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppInterface/FrmAdminEnter.resx rename to EOM.TSHotelManagement.FormUI/AppInterface/FrmAdminEnter.resx diff --git a/EOM.TSHotelManager.FormUI/AppInterface/FrmLoading.Designer.cs b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppInterface/FrmLoading.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.Designer.cs index a972fe1..7819869 100644 --- a/EOM.TSHotelManager.FormUI/AppInterface/FrmLoading.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmLoading { diff --git a/EOM.TSHotelManager.FormUI/AppInterface/FrmLoading.cs b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppInterface/FrmLoading.cs rename to EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.cs index e2ea75d..83caedf 100644 --- a/EOM.TSHotelManager.FormUI/AppInterface/FrmLoading.cs +++ b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.cs @@ -22,14 +22,14 @@ * */ using AntdUI; -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; using Newtonsoft.Json; using Sunny.UI; using System.Diagnostics; using System.Reflection; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmLoading : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppInterface/FrmLoading.resx b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppInterface/FrmLoading.resx rename to EOM.TSHotelManagement.FormUI/AppInterface/FrmLoading.resx diff --git a/EOM.TSHotelManager.FormUI/AppInterface/FrmLogin.Designer.cs b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppInterface/FrmLogin.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.Designer.cs index 8cb726d..ea5b085 100644 --- a/EOM.TSHotelManager.FormUI/AppInterface/FrmLogin.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmLogin { diff --git a/EOM.TSHotelManager.FormUI/AppInterface/FrmLogin.cs b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppInterface/FrmLogin.cs rename to EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.cs index 6ddadef..0ea1796 100644 --- a/EOM.TSHotelManager.FormUI/AppInterface/FrmLogin.cs +++ b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.cs @@ -23,14 +23,14 @@ */ using AntdUI; -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; -using EOM.TSHotelManager.FormUI.Properties; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.FormUI.Properties; using jvncorelib.EntityLib; using Sunny.UI; using System.Windows.Forms; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmLogin : Window { diff --git a/EOM.TSHotelManager.FormUI/AppInterface/FrmLogin.resx b/EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppInterface/FrmLogin.resx rename to EOM.TSHotelManagement.FormUI/AppInterface/FrmLogin.resx diff --git a/EOM.TSHotelManager.FormUI/AppInterface/FrmNewLogin.Designer.cs b/EOM.TSHotelManagement.FormUI/AppInterface/FrmNewLogin.Designer.cs similarity index 100% rename from EOM.TSHotelManager.FormUI/AppInterface/FrmNewLogin.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppInterface/FrmNewLogin.Designer.cs diff --git a/EOM.TSHotelManager.FormUI/AppInterface/FrmNewLogin.cs b/EOM.TSHotelManagement.FormUI/AppInterface/FrmNewLogin.cs similarity index 100% rename from EOM.TSHotelManager.FormUI/AppInterface/FrmNewLogin.cs rename to EOM.TSHotelManagement.FormUI/AppInterface/FrmNewLogin.cs diff --git a/EOM.TSHotelManager.FormUI/AppInterface/FrmNewLogin.resx b/EOM.TSHotelManagement.FormUI/AppInterface/FrmNewLogin.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppInterface/FrmNewLogin.resx rename to EOM.TSHotelManagement.FormUI/AppInterface/FrmNewLogin.resx diff --git a/EOM.TSHotelManager.FormUI/AppMain/FrmBackgroundSystem.Designer.cs b/EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppMain/FrmBackgroundSystem.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.Designer.cs index edb5a87..dcc05b2 100644 --- a/EOM.TSHotelManager.FormUI/AppMain/FrmBackgroundSystem.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.Designer.cs @@ -1,5 +1,5 @@  -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmBackgroundSystem { diff --git a/EOM.TSHotelManager.FormUI/AppMain/FrmBackgroundSystem.cs b/EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppMain/FrmBackgroundSystem.cs rename to EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.cs index 70b85f7..f36161f 100644 --- a/EOM.TSHotelManager.FormUI/AppMain/FrmBackgroundSystem.cs +++ b/EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.cs @@ -23,12 +23,12 @@ */ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; -using EOM.TSHotelManager.FormUI.AppFunction; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.FormUI.AppFunction; using Sunny.UI; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmBackgroundSystem : UIForm { diff --git a/EOM.TSHotelManager.FormUI/AppMain/FrmBackgroundSystem.resx b/EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppMain/FrmBackgroundSystem.resx rename to EOM.TSHotelManagement.FormUI/AppMain/FrmBackgroundSystem.resx diff --git a/EOM.TSHotelManager.FormUI/AppMain/FrmMain.Designer.cs b/EOM.TSHotelManagement.FormUI/AppMain/FrmMain.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppMain/FrmMain.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppMain/FrmMain.Designer.cs index 0c38544..485920d 100644 --- a/EOM.TSHotelManager.FormUI/AppMain/FrmMain.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppMain/FrmMain.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class FrmMain { diff --git a/EOM.TSHotelManager.FormUI/AppMain/FrmMain.cs b/EOM.TSHotelManagement.FormUI/AppMain/FrmMain.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppMain/FrmMain.cs rename to EOM.TSHotelManagement.FormUI/AppMain/FrmMain.cs index 002588d..c0f1d09 100644 --- a/EOM.TSHotelManager.FormUI/AppMain/FrmMain.cs +++ b/EOM.TSHotelManagement.FormUI/AppMain/FrmMain.cs @@ -23,10 +23,10 @@ */ using AntdUI; -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; -using EOM.TSHotelManager.FormUI.AppUserControls; -using EOM.TSHotelManager.FormUI.Properties; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.FormUI.AppUserControls; +using EOM.TSHotelManagement.FormUI.Properties; using Sunny.UI; using System.Diagnostics; using System.Reflection; @@ -34,7 +34,7 @@ using System.Resources; using System.Runtime.InteropServices; using System.Windows.Forms; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class FrmMain : Window { diff --git a/EOM.TSHotelManager.FormUI/AppMain/FrmMain.resx b/EOM.TSHotelManagement.FormUI/AppMain/FrmMain.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppMain/FrmMain.resx rename to EOM.TSHotelManagement.FormUI/AppMain/FrmMain.resx diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucHistory.Designer.cs b/EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppUserControls/ucHistory.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.Designer.cs index 9111e76..bd1c728 100644 --- a/EOM.TSHotelManager.FormUI/AppUserControls/ucHistory.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class ucHistory { diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucHistory.cs b/EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppUserControls/ucHistory.cs rename to EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.cs index 345d3c5..45a42ac 100644 --- a/EOM.TSHotelManager.FormUI/AppUserControls/ucHistory.cs +++ b/EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.cs @@ -22,7 +22,7 @@ * */ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class ucHistory : UserControl { diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucHistory.resx b/EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppUserControls/ucHistory.resx rename to EOM.TSHotelManagement.FormUI/AppUserControls/ucHistory.resx diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucNavBar.Designer.cs b/EOM.TSHotelManagement.FormUI/AppUserControls/ucNavBar.Designer.cs similarity index 96% rename from EOM.TSHotelManager.FormUI/AppUserControls/ucNavBar.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppUserControls/ucNavBar.Designer.cs index 589dd72..e6eee04 100644 --- a/EOM.TSHotelManager.FormUI/AppUserControls/ucNavBar.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppUserControls/ucNavBar.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI.AppUserControls +namespace EOM.TSHotelManagement.FormUI.AppUserControls { partial class ucNavBar { diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucNavBar.cs b/EOM.TSHotelManagement.FormUI/AppUserControls/ucNavBar.cs similarity index 95% rename from EOM.TSHotelManager.FormUI/AppUserControls/ucNavBar.cs rename to EOM.TSHotelManagement.FormUI/AppUserControls/ucNavBar.cs index eb8ffe4..ca8cc1d 100644 --- a/EOM.TSHotelManager.FormUI/AppUserControls/ucNavBar.cs +++ b/EOM.TSHotelManagement.FormUI/AppUserControls/ucNavBar.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -namespace EOM.TSHotelManager.FormUI.AppUserControls +namespace EOM.TSHotelManagement.FormUI.AppUserControls { public partial class ucNavBar : UserControl { diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucNavBar.resx b/EOM.TSHotelManagement.FormUI/AppUserControls/ucNavBar.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppUserControls/ucNavBar.resx rename to EOM.TSHotelManagement.FormUI/AppUserControls/ucNavBar.resx diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.Designer.cs b/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.Designer.cs similarity index 99% rename from EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.Designer.cs index f5981af..b56267c 100644 --- a/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class ucRoom { diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.cs b/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.cs similarity index 98% rename from EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.cs rename to EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.cs index f0edee5..0692909 100644 --- a/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.cs +++ b/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.cs @@ -1,13 +1,13 @@ -using EOM.TSHotelManager.Common; -using EOM.TSHotelManager.Common.Core; -using EOM.TSHotelManager.FormUI.Properties; +using EOM.TSHotelManagement.Common; +using EOM.TSHotelManagement.Common.Core; +using EOM.TSHotelManagement.FormUI.Properties; using jvncorelib.EntityLib; using Sunny.UI; using System.ComponentModel; using System.Drawing.Drawing2D; using System.Runtime.InteropServices; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class ucRoom : UserControl { diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.resx b/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppUserControls/ucRoom.resx rename to EOM.TSHotelManagement.FormUI/AppUserControls/ucRoom.resx diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucRoomType.Designer.cs b/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoomType.Designer.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppUserControls/ucRoomType.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppUserControls/ucRoomType.Designer.cs index a045bdd..a7679ab 100644 --- a/EOM.TSHotelManager.FormUI/AppUserControls/ucRoomType.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoomType.Designer.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI.AppUserControls +namespace EOM.TSHotelManagement.FormUI.AppUserControls { partial class ucRoomType { diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucRoomType.cs b/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoomType.cs similarity index 71% rename from EOM.TSHotelManager.FormUI/AppUserControls/ucRoomType.cs rename to EOM.TSHotelManagement.FormUI/AppUserControls/ucRoomType.cs index 3ce333d..45d8a40 100644 --- a/EOM.TSHotelManager.FormUI/AppUserControls/ucRoomType.cs +++ b/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoomType.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI.AppUserControls +namespace EOM.TSHotelManagement.FormUI.AppUserControls { public partial class ucRoomType : UserControl { diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucRoomType.resx b/EOM.TSHotelManagement.FormUI/AppUserControls/ucRoomType.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppUserControls/ucRoomType.resx rename to EOM.TSHotelManagement.FormUI/AppUserControls/ucRoomType.resx diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucVipType.Designer.cs b/EOM.TSHotelManagement.FormUI/AppUserControls/ucVipType.Designer.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppUserControls/ucVipType.Designer.cs rename to EOM.TSHotelManagement.FormUI/AppUserControls/ucVipType.Designer.cs index 7733342..5651538 100644 --- a/EOM.TSHotelManager.FormUI/AppUserControls/ucVipType.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/AppUserControls/ucVipType.Designer.cs @@ -1,5 +1,5 @@  -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { partial class ucVipType { @@ -37,7 +37,7 @@ namespace EOM.TSHotelManager.FormUI // picVip // this.picVip.BackColor = System.Drawing.Color.Transparent; - this.picVip.BackgroundImage = global::EOM.TSHotelManager.FormUI.Properties.Resources.普通会员; + this.picVip.BackgroundImage = global::EOM.TSHotelManagement.FormUI.Properties.Resources.普通会员; this.picVip.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; this.picVip.Location = new System.Drawing.Point(0, 0); this.picVip.Name = "picVip"; diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucVipType.cs b/EOM.TSHotelManagement.FormUI/AppUserControls/ucVipType.cs similarity index 97% rename from EOM.TSHotelManager.FormUI/AppUserControls/ucVipType.cs rename to EOM.TSHotelManagement.FormUI/AppUserControls/ucVipType.cs index 428cc64..0cad9ce 100644 --- a/EOM.TSHotelManager.FormUI/AppUserControls/ucVipType.cs +++ b/EOM.TSHotelManagement.FormUI/AppUserControls/ucVipType.cs @@ -21,7 +21,7 @@ *SOFTWARE. * */ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public partial class ucVipType : UserControl { diff --git a/EOM.TSHotelManager.FormUI/AppUserControls/ucVipType.resx b/EOM.TSHotelManagement.FormUI/AppUserControls/ucVipType.resx similarity index 100% rename from EOM.TSHotelManager.FormUI/AppUserControls/ucVipType.resx rename to EOM.TSHotelManagement.FormUI/AppUserControls/ucVipType.resx diff --git a/EOM.TSHotelManager.FormUI/EOM.TSHotelManager.FormUI.csproj b/EOM.TSHotelManagement.FormUI/EOM.TSHotelManagement.FormUI.csproj similarity index 93% rename from EOM.TSHotelManager.FormUI/EOM.TSHotelManager.FormUI.csproj rename to EOM.TSHotelManagement.FormUI/EOM.TSHotelManagement.FormUI.csproj index 030fd3c..bd8a847 100644 --- a/EOM.TSHotelManager.FormUI/EOM.TSHotelManager.FormUI.csproj +++ b/EOM.TSHotelManagement.FormUI/EOM.TSHotelManagement.FormUI.csproj @@ -8,7 +8,7 @@ enable true 2.8.1.0 - EOM.TSHotelManager.FormUI.Program + EOM.TSHotelManagement.FormUI.Program x64 TS酒店管理系统 logo.ico @@ -185,22 +185,22 @@ - + True True True - + True True True - + True True True - + diff --git a/EOM.TSHotelManager.FormUI/FodyWeavers.xml b/EOM.TSHotelManagement.FormUI/FodyWeavers.xml similarity index 100% rename from EOM.TSHotelManager.FormUI/FodyWeavers.xml rename to EOM.TSHotelManagement.FormUI/FodyWeavers.xml diff --git a/EOM.TSHotelManager.FormUI/InitConfig/Initialize.cs b/EOM.TSHotelManagement.FormUI/InitConfig/Initialize.cs similarity index 96% rename from EOM.TSHotelManager.FormUI/InitConfig/Initialize.cs rename to EOM.TSHotelManagement.FormUI/InitConfig/Initialize.cs index eff58be..1edd0a1 100644 --- a/EOM.TSHotelManager.FormUI/InitConfig/Initialize.cs +++ b/EOM.TSHotelManagement.FormUI/InitConfig/Initialize.cs @@ -1,7 +1,7 @@ -using EOM.TSHotelManager.Common; +using EOM.TSHotelManagement.Common; using System.Reflection; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public static class Initialize { diff --git a/EOM.TSHotelManager.FormUI/Logo/bitbug_favicon (1).ico b/EOM.TSHotelManagement.FormUI/Logo/bitbug_favicon (1).ico similarity index 100% rename from EOM.TSHotelManager.FormUI/Logo/bitbug_favicon (1).ico rename to EOM.TSHotelManagement.FormUI/Logo/bitbug_favicon (1).ico diff --git a/EOM.TSHotelManager.FormUI/Program.cs b/EOM.TSHotelManagement.FormUI/Program.cs similarity index 93% rename from EOM.TSHotelManager.FormUI/Program.cs rename to EOM.TSHotelManagement.FormUI/Program.cs index 5f8c6d3..25280b0 100644 --- a/EOM.TSHotelManager.FormUI/Program.cs +++ b/EOM.TSHotelManagement.FormUI/Program.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { internal static class Program { diff --git a/EOM.TSHotelManager.FormUI/Properties/Resources.Designer.cs b/EOM.TSHotelManagement.FormUI/Properties/Resources.Designer.cs similarity index 95% rename from EOM.TSHotelManager.FormUI/Properties/Resources.Designer.cs rename to EOM.TSHotelManagement.FormUI/Properties/Resources.Designer.cs index d06748f..7ea610e 100644 --- a/EOM.TSHotelManager.FormUI/Properties/Resources.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/Properties/Resources.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace EOM.TSHotelManager.FormUI.Properties { +namespace EOM.TSHotelManagement.FormUI.Properties { using System; @@ -39,7 +39,7 @@ namespace EOM.TSHotelManager.FormUI.Properties { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EOM.TSHotelManager.FormUI.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("EOM.TSHotelManagement.FormUI.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; @@ -101,27 +101,12 @@ namespace EOM.TSHotelManager.FormUI.Properties { } /// - /// 查找类似 <?xml version="1.0"?> - ///<doc> - /// <assembly> - /// <name>EOM.TSHotelManager.Common.Core</name> - /// </assembly> - /// <members> - /// <member name="P:EOM.TSHotelManager.Common.Core.BaseDTO.datains_usr"> - /// <summary> - /// 资料创建人 - /// </summary> - /// </member> - /// <member name="P:EOM.TSHotelManager.Common.Core.BaseDTO.datains_date"> - /// <summary> - /// 资料创建时间 - /// </summary> - /// </member> - /// <member name="P:EOM.TSHotelManager.Common.Cor [字符串的其余部分被截断]"; 的本地化字符串。 + /// 查找 System.Byte[] 类型的本地化资源。 /// - internal static string EOM_TSHotelManager_Common_Core { + internal static byte[] EOM_TSHotelManagement_Common_Core { get { - return ResourceManager.GetString("EOM.TSHotelManager.Common.Core", resourceCulture); + object obj = ResourceManager.GetObject("EOM.TSHotelManagement.Common.Core", resourceCulture); + return ((byte[])(obj)); } } @@ -235,6 +220,16 @@ namespace EOM.TSHotelManager.FormUI.Properties { } } + /// + /// 查找 System.Byte[] 类型的本地化资源。 + /// + internal static byte[] TableColumns { + get { + object obj = ResourceManager.GetObject("TableColumns", resourceCulture); + return ((byte[])(obj)); + } + } + /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// diff --git a/EOM.TSHotelManager.FormUI/Properties/Resources.resx b/EOM.TSHotelManagement.FormUI/Properties/Resources.resx similarity index 97% rename from EOM.TSHotelManager.FormUI/Properties/Resources.resx rename to EOM.TSHotelManagement.FormUI/Properties/Resources.resx index f67e9c3..ff6a31f 100644 --- a/EOM.TSHotelManager.FormUI/Properties/Resources.resx +++ b/EOM.TSHotelManagement.FormUI/Properties/Resources.resx @@ -127,6 +127,9 @@ ..\Resources\close.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\EOM.TSHotelManagement.Common.Core.xml;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + ..\Resources\jpg_auto_04N58PICPw2s58PICaP4M8cef_PIC2018.jpg!w1024_new_small.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -163,6 +166,9 @@ ..\Resources\settings2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\EOM.TSHotelManagement.Common.Core.xml;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + ..\Resources\上传照片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -310,7 +316,4 @@ ..\Resources\黄金会员.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\EOM.TSHotelManager.Common.Core.xml;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 - \ No newline at end of file diff --git a/EOM.TSHotelManager.FormUI/Properties/Settings.Designer.cs b/EOM.TSHotelManagement.FormUI/Properties/Settings.Designer.cs similarity index 84% rename from EOM.TSHotelManager.FormUI/Properties/Settings.Designer.cs rename to EOM.TSHotelManagement.FormUI/Properties/Settings.Designer.cs index 25b386f..4abd93d 100644 --- a/EOM.TSHotelManager.FormUI/Properties/Settings.Designer.cs +++ b/EOM.TSHotelManagement.FormUI/Properties/Settings.Designer.cs @@ -8,12 +8,12 @@ // //------------------------------------------------------------------------------ -namespace EOM.TSHotelManager.FormUI.Properties { +namespace EOM.TSHotelManagement.FormUI.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.10.0.0")] - internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.12.0.0")] + public sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); diff --git a/EOM.TSHotelManager.FormUI/Properties/Settings.settings b/EOM.TSHotelManagement.FormUI/Properties/Settings.settings similarity index 100% rename from EOM.TSHotelManager.FormUI/Properties/Settings.settings rename to EOM.TSHotelManagement.FormUI/Properties/Settings.settings diff --git a/EOM.TSHotelManager.FormUI/Resources/EOM.TSHotelManager.Common.Core.xml b/EOM.TSHotelManagement.FormUI/Resources/EOM.TSHotelManagement.Common.Core.xml similarity index 51% rename from EOM.TSHotelManager.FormUI/Resources/EOM.TSHotelManager.Common.Core.xml rename to EOM.TSHotelManagement.FormUI/Resources/EOM.TSHotelManagement.Common.Core.xml index dfbb6e9..2dcd4f7 100644 --- a/EOM.TSHotelManager.FormUI/Resources/EOM.TSHotelManager.Common.Core.xml +++ b/EOM.TSHotelManagement.FormUI/Resources/EOM.TSHotelManagement.Common.Core.xml @@ -1,1501 +1,1552 @@ - EOM.TSHotelManager.Common.Core + EOM.TSHotelManagement.Common.Core - + 资料创建人 - + 资料创建时间 - + 资料更新人 - + 资料更新时间 - + Token - + 资产管理 - + 资产编号 - + 资产名称 - + 资产总值 - + 资产总值描述 - + 所属部门 - + 所属部门描述 - + 入库时间 - + 资产来源 - + 资产经办人 - + 资产经办人 - + 删除标记 - + 客户信息 - + 客户编号 - + 客户名称 - + 客户性别 - + 证件类型 - + 性别 - + 客户电话 - + 出生日期 - + 客户类型 - + 证件类型 - + 证件号码 - + 居住地址 - + 客户类型 - + 删除标记 - + 酒店盈利情况 - + - + 总金额 - + 客户类型 - + 客户类型 - + 类型名字 - + 删除标记 - + 证件类型 - + 证件类型 - + 证件名称 - + 删除标记 - + 性别 - + 性别ID - + 性别名称 - + 删除标记 - + 酒店宣传联动内容 - + 宣传内容编号 - + 宣传内容 - + 水电信息 - + 信息编号 - + 房间编号 - + 开始使用时间 - + 结束使用时间 - + 水费 - + 电费 - + 记录员 - + 客户编号 - + 删除标记 - + 预约列表 - + 预约编号 - + 客户名称 - + 预约电话 - + 预约渠道 - + 预约房号 - + 预约起始 - + 预约止日 - + 删除标记 - + 房间实体类 - + 房间编号 - + 房间类型 - + 客户编号 - + 客户姓名 - + 最后一次入住时间 - + 最后一次退房时间 - + 房间状态ID - + 房间状态 - + 房间单价 - + 房间押金 - + 房间位置 - + 客户类型名称 - + 房间名称 - + 最后一次入住时间 - + 删除标记 - + 房间状态 - + 房间状态编号 - + 房间状态 - + 删除标记 - + 房间类型 - + 类型编号 - + 房间类型 - + 房间租金 - + 房间押金 - + 删除标记 - + 删除标记描述 - + 商品信息 - + 商品编号 - + 商品名称 - + 商品价格 - + 商品价格描述 - + 规格型号 - + 库存 - + 删除标记 - + 消费信息 - + 房间编号 - + 客户编号 - + 商品名称 - + 消费数量 - + 商品单价 - + 商品单价描述 - + 消费金额 - + 消费金额描述 - + 消费时间 - + 结算状态 - + 删除标记 - + 结算状态描述 - - - 结算状态常量 - - - - - 已结算状态常量 - - - - - 未结算状态常量 - - - + 查询所有客户信息 输出DTO - + 数据源 - + 总数 - + 导航控件实体类 - + 导航控件ID - + 导航控件名称 - + 导航控件排序 - + 导航控件图片 - + 导航控件事件 - + 导航控件事件 - + 删除标记 - + 应用版本 - + 流水号 - + 版本号 - + 卡片代码 - + 卡片代码 - + 编号 - + 省份 - + 城市 - + 地区 - + 地区识别码 - + 日志等级 - + 普通警告 - + 严重警告 - + 危险警告 - + 操作日志 - + 日志ID - + 操作时间 - + 操作信息 - + 操作账号 - + 日志等级 - + 删除标记 - + 软件版本 - + 登录IP - + 日志等级 - + 奖惩类型实体类 - + 奖惩编号 - + 奖惩名称 - + 删除标记 - + 员工信息 - + 员工账号/工号 - + 员工姓名 - + 出生日期 - + 员工性别 - + 员工性别(名称描述) - + 民族类型 - + 民族名称 - + 员工电话 - + 所属部门 - + 部门名称 - + 居住地址 - + 员工职位 - + 职位名称 - + 证件号码 - + 员工密码 - + 员工入职时间 - + 员工面貌 - + 群众面貌描述 - + 教育程度 - + 教育程度名称 - + 删除标记 - + 员工打卡考勤 - + 编号 - + 工号 - + 打卡时间 - + 打卡方式 - + 打卡状态 - + 打卡状态 - + 删除标记 - + 员工奖罚 - + 编号 - + 工号 - + 奖惩信息 - + 奖惩类型 - + 奖惩操作人 - + 奖惩操作人 - + 奖惩时间 - + 类型名称 - + 删除标记 - + 员工履历 - + 编号 - + 工号 - + 开始时间 - + 结束时间 - + 职位 - + 公司 - + 删除标记 - + 员工照片 - + 自增长流水号 - + 工号 - + 照片路径 - + 管理员实体类 - + 构造函数 - + 编号 - + 管理员账号 - + 管理员密码 - + 管理员类型 - + 管理员名称 - + 是否为超级管理员 - + 删除标记 - + 管理员类型描述 - + 管理员类型 - + 删除标记描述 - + 管理员类型 - + 编号 - + 管理员类型 - + 类型名称 - + 删除标记 - + 系统信息 - + 地址编号 - + 地址 - + 监管统计 - + 监管统计编号 - + 监管部门 - + 监管进度 - + - + - + - + - + 删除标记 - + 部门表 - + 部门编号 - + 部门名称 - + 部门描述 - + 创建时间(部门) - + 部门主管 - + 部门主管 - + 上级部门 - + 上级部门 - + 删除标记 - + 学历 - + 学历编号 - + 学历名称 - + 删除标记 - + + + 菜单表 + + + + + 备 注:自增长ID + 默认值: + + + + + 备 注:菜单键 + 默认值: + + + + + 备 注:菜单标题 + 默认值: + + + + + 备 注:菜单路径 + 默认值: + + + + + 备 注:父级ID + 默认值: + + + + + 备 注:删除标记 + 默认值: + + + + + 菜单视图模型 + + + + + 菜单主键 + + + + + 菜单标题 + + + + + 菜单路径 + + + + + 子菜单 + + + 模块实体 - + 模块ID - + 模块名称 - + 模块描述 - + 删除标记 - + 系统模块常量类 - + 基础信息 - + 财务信息 - + 水电管理 - + 监管统计 - + 客房管理 - + 客户管理 - + 人事管理 - + 物资管理 - + 员工操作日志 - + 系统管理 - + 模块权限表 - + 模块ID - + 管理员账号 - + 模块名称 - + 是否开启 - + 民族 - + 民族编号 - + 民族名称 - + 删除标记 - + 任命公告 - + 公告编号 - + 公告主题 - + 公告类型 - + 公告类型(描述) - + 公告时间 - + 公告正文 - + 发文部门 - + 删除标记 - + 职位 - + 职位编号 - + 职位名称 - + 删除标记 - + 会员等级规则类 - + 索引ID - + 会员规则流水号 - + 会员规则名称 - + 预设数值(历史消费总额) - + 会员等级 - + 删除标识 - + 会员等级描述 diff --git a/EOM.TSHotelManager.FormUI/Resources/arrow-down-b.png b/EOM.TSHotelManagement.FormUI/Resources/arrow-down-b.png similarity index 100% rename from EOM.TSHotelManager.FormUI/Resources/arrow-down-b.png rename to EOM.TSHotelManagement.FormUI/Resources/arrow-down-b.png diff --git a/EOM.TSHotelManager.FormUI/Resources/blue_refresh.png b/EOM.TSHotelManagement.FormUI/Resources/blue_refresh.png similarity index 100% rename from EOM.TSHotelManager.FormUI/Resources/blue_refresh.png rename to EOM.TSHotelManagement.FormUI/Resources/blue_refresh.png diff --git a/EOM.TSHotelManager.FormUI/Resources/close.png b/EOM.TSHotelManagement.FormUI/Resources/close.png similarity index 100% rename from EOM.TSHotelManager.FormUI/Resources/close.png rename to EOM.TSHotelManagement.FormUI/Resources/close.png diff --git a/EOM.TSHotelManager.FormUI/Resources/jpg_auto_04N58PICPw2s58PICaP4M8cef_PIC2018.jpg!w1024_new_small.png b/EOM.TSHotelManagement.FormUI/Resources/jpg_auto_04N58PICPw2s58PICaP4M8cef_PIC2018.jpg!w1024_new_small.png similarity index 100% rename from EOM.TSHotelManager.FormUI/Resources/jpg_auto_04N58PICPw2s58PICaP4M8cef_PIC2018.jpg!w1024_new_small.png rename to EOM.TSHotelManagement.FormUI/Resources/jpg_auto_04N58PICPw2s58PICaP4M8cef_PIC2018.jpg!w1024_new_small.png diff --git a/EOM.TSHotelManager.FormUI/Resources/lockicon.png b/EOM.TSHotelManagement.FormUI/Resources/lockicon.png similarity index 100% rename from EOM.TSHotelManager.FormUI/Resources/lockicon.png rename to EOM.TSHotelManagement.FormUI/Resources/lockicon.png diff --git a/EOM.TSHotelManager.FormUI/Resources/picCommodity.Image.png b/EOM.TSHotelManagement.FormUI/Resources/picCommodity.Image.png similarity index 100% rename from EOM.TSHotelManager.FormUI/Resources/picCommodity.Image.png rename to EOM.TSHotelManagement.FormUI/Resources/picCommodity.Image.png diff --git a/EOM.TSHotelManager.FormUI/Resources/picCommodity.ImageHover.png b/EOM.TSHotelManagement.FormUI/Resources/picCommodity.ImageHover.png similarity index 100% rename from EOM.TSHotelManager.FormUI/Resources/picCommodity.ImageHover.png rename to EOM.TSHotelManagement.FormUI/Resources/picCommodity.ImageHover.png diff --git a/EOM.TSHotelManager.FormUI/Resources/picCustomer.Image.png b/EOM.TSHotelManagement.FormUI/Resources/picCustomer.Image.png similarity index 100% rename from EOM.TSHotelManager.FormUI/Resources/picCustomer.Image.png rename to EOM.TSHotelManagement.FormUI/Resources/picCustomer.Image.png diff --git a/EOM.TSHotelManager.FormUI/Resources/picCustomer.ImageHover.png b/EOM.TSHotelManagement.FormUI/Resources/picCustomer.ImageHover.png similarity index 100% rename from EOM.TSHotelManager.FormUI/Resources/picCustomer.ImageHover.png rename to EOM.TSHotelManagement.FormUI/Resources/picCustomer.ImageHover.png diff --git a/EOM.TSHotelManager.FormUI/Resources/picExtend.Image.png b/EOM.TSHotelManagement.FormUI/Resources/picExtend.Image.png similarity index 100% rename from EOM.TSHotelManager.FormUI/Resources/picExtend.Image.png rename to EOM.TSHotelManagement.FormUI/Resources/picExtend.Image.png diff --git a/EOM.TSHotelManager.FormUI/Resources/picExtend.ImageHover.png b/EOM.TSHotelManagement.FormUI/Resources/picExtend.ImageHover.png similarity index 100% rename from EOM.TSHotelManager.FormUI/Resources/picExtend.ImageHover.png rename to EOM.TSHotelManagement.FormUI/Resources/picExtend.ImageHover.png diff --git a/EOM.TSHotelManager.FormUI/Resources/picLogo.BackgroundImage.png b/EOM.TSHotelManagement.FormUI/Resources/picLogo.BackgroundImage.png similarity index 100% rename from EOM.TSHotelManager.FormUI/Resources/picLogo.BackgroundImage.png rename to EOM.TSHotelManagement.FormUI/Resources/picLogo.BackgroundImage.png diff --git a/EOM.TSHotelManager.FormUI/Resources/picRoom.Image.png b/EOM.TSHotelManagement.FormUI/Resources/picRoom.Image.png similarity index 100% rename from EOM.TSHotelManager.FormUI/Resources/picRoom.Image.png rename to EOM.TSHotelManagement.FormUI/Resources/picRoom.Image.png diff --git a/EOM.TSHotelManager.FormUI/Resources/picRoom.ImageHover.png b/EOM.TSHotelManagement.FormUI/Resources/picRoom.ImageHover.png similarity index 100% rename from EOM.TSHotelManager.FormUI/Resources/picRoom.ImageHover.png rename to EOM.TSHotelManagement.FormUI/Resources/picRoom.ImageHover.png diff --git a/EOM.TSHotelManager.FormUI/Resources/settings2.png b/EOM.TSHotelManagement.FormUI/Resources/settings2.png similarity index 100% rename from EOM.TSHotelManager.FormUI/Resources/settings2.png rename to EOM.TSHotelManagement.FormUI/Resources/settings2.png diff --git "a/EOM.TSHotelManager.FormUI/Resources/\344\270\212\344\274\240\347\205\247\347\211\207.png" "b/EOM.TSHotelManagement.FormUI/Resources/\344\270\212\344\274\240\347\205\247\347\211\207.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\344\270\212\344\274\240\347\205\247\347\211\207.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\344\270\212\344\274\240\347\205\247\347\211\207.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\344\270\252\344\272\272\344\270\255\345\277\203.png" "b/EOM.TSHotelManagement.FormUI/Resources/\344\270\252\344\272\272\344\270\255\345\277\203.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\344\270\252\344\272\272\344\270\255\345\277\203.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\344\270\252\344\272\272\344\270\255\345\277\203.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\344\272\272\345\212\233\350\265\204\346\272\220\351\203\250\345\215\241\347\211\207.png" "b/EOM.TSHotelManagement.FormUI/Resources/\344\272\272\345\212\233\350\265\204\346\272\220\351\203\250\345\215\241\347\211\207.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\344\272\272\345\212\233\350\265\204\346\272\220\351\203\250\345\215\241\347\211\207.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\344\272\272\345\212\233\350\265\204\346\272\220\351\203\250\345\215\241\347\211\207.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\344\277\256\346\224\271.png" "b/EOM.TSHotelManagement.FormUI/Resources/\344\277\256\346\224\271.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\344\277\256\346\224\271.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\344\277\256\346\224\271.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\345\205\263\344\272\216\346\210\221\344\273\254.png" "b/EOM.TSHotelManagement.FormUI/Resources/\345\205\263\344\272\216\346\210\221\344\273\254.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\345\205\263\344\272\216\346\210\221\344\273\254.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\345\205\263\344\272\216\346\210\221\344\273\254.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\345\206\205\346\216\247\351\203\250\345\215\241\347\211\207.png" "b/EOM.TSHotelManagement.FormUI/Resources/\345\206\205\346\216\247\351\203\250\345\215\241\347\211\207.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\345\206\205\346\216\247\351\203\250\345\215\241\347\211\207.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\345\206\205\346\216\247\351\203\250\345\215\241\347\211\207.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\345\210\207\346\215\242\350\264\246\345\217\267.png" "b/EOM.TSHotelManagement.FormUI/Resources/\345\210\207\346\215\242\350\264\246\345\217\267.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\345\210\207\346\215\242\350\264\246\345\217\267.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\345\210\207\346\215\242\350\264\246\345\217\267.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\345\217\257\344\275\217\346\210\277(hover)icon.png" "b/EOM.TSHotelManagement.FormUI/Resources/\345\217\257\344\275\217\346\210\277(hover)icon.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\345\217\257\344\275\217\346\210\277(hover)icon.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\345\217\257\344\275\217\346\210\277(hover)icon.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\345\217\257\344\275\217\346\210\277icon.png" "b/EOM.TSHotelManagement.FormUI/Resources/\345\217\257\344\275\217\346\210\277icon.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\345\217\257\344\275\217\346\210\277icon.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\345\217\257\344\275\217\346\210\277icon.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\345\217\257\344\275\217\347\212\266\346\200\201.png" "b/EOM.TSHotelManagement.FormUI/Resources/\345\217\257\344\275\217\347\212\266\346\200\201.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\345\217\257\344\275\217\347\212\266\346\200\201.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\345\217\257\344\275\217\347\212\266\346\200\201.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\345\220\216\345\213\244\351\203\250\345\215\241\347\211\207.png" "b/EOM.TSHotelManagement.FormUI/Resources/\345\220\216\345\213\244\351\203\250\345\215\241\347\211\207.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\345\220\216\345\213\244\351\203\250\345\215\241\347\211\207.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\345\220\216\345\213\244\351\203\250\345\215\241\347\211\207.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\345\222\226\345\225\241.png" "b/EOM.TSHotelManagement.FormUI/Resources/\345\222\226\345\225\241.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\345\222\226\345\225\241.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\345\222\226\345\225\241.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\345\225\206\345\223\201\351\203\250\345\215\241\347\211\207.png" "b/EOM.TSHotelManagement.FormUI/Resources/\345\225\206\345\223\201\351\203\250\345\215\241\347\211\207.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\345\225\206\345\223\201\351\203\250\345\215\241\347\211\207.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\345\225\206\345\223\201\351\203\250\345\215\241\347\211\207.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\345\244\215\345\210\266.png" "b/EOM.TSHotelManagement.FormUI/Resources/\345\244\215\345\210\266.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\345\244\215\345\210\266.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\345\244\215\345\210\266.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\345\257\206\347\240\201.png" "b/EOM.TSHotelManagement.FormUI/Resources/\345\257\206\347\240\201.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\345\257\206\347\240\201.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\345\257\206\347\240\201.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\345\267\262\344\275\217\346\210\277(hover)icon.png" "b/EOM.TSHotelManagement.FormUI/Resources/\345\267\262\344\275\217\346\210\277(hover)icon.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\345\267\262\344\275\217\346\210\277(hover)icon.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\345\267\262\344\275\217\346\210\277(hover)icon.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\345\267\262\344\275\217\346\210\277icon.png" "b/EOM.TSHotelManagement.FormUI/Resources/\345\267\262\344\275\217\346\210\277icon.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\345\267\262\344\275\217\346\210\277icon.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\345\267\262\344\275\217\346\210\277icon.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\345\267\262\344\275\217\347\212\266\346\200\201.png" "b/EOM.TSHotelManagement.FormUI/Resources/\345\267\262\344\275\217\347\212\266\346\200\201.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\345\267\262\344\275\217\347\212\266\346\200\201.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\345\267\262\344\275\217\347\212\266\346\200\201.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\345\270\270\350\247\204\351\203\250\351\227\250\345\215\241\347\211\207.png" "b/EOM.TSHotelManagement.FormUI/Resources/\345\270\270\350\247\204\351\203\250\351\227\250\345\215\241\347\211\207.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\345\270\270\350\247\204\351\203\250\351\227\250\345\215\241\347\211\207.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\345\270\270\350\247\204\351\203\250\351\227\250\345\215\241\347\211\207.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\346\200\273\347\273\217\345\212\236\345\215\241\347\211\207.png" "b/EOM.TSHotelManagement.FormUI/Resources/\346\200\273\347\273\217\345\212\236\345\215\241\347\211\207.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\346\200\273\347\273\217\345\212\236\345\215\241\347\211\207.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\346\200\273\347\273\217\345\212\236\345\215\241\347\211\207.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\346\211\223\345\215\241.png" "b/EOM.TSHotelManagement.FormUI/Resources/\346\211\223\345\215\241.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\346\211\223\345\215\241.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\346\211\223\345\215\241.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\346\227\251\344\270\212.png" "b/EOM.TSHotelManagement.FormUI/Resources/\346\227\251\344\270\212.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\346\227\251\344\270\212.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\346\227\251\344\270\212.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\346\231\256\351\200\232\344\274\232\345\221\230.png" "b/EOM.TSHotelManagement.FormUI/Resources/\346\231\256\351\200\232\344\274\232\345\221\230.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\346\231\256\351\200\232\344\274\232\345\221\230.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\346\231\256\351\200\232\344\274\232\345\221\230.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\346\234\210\344\272\256.png" "b/EOM.TSHotelManagement.FormUI/Resources/\346\234\210\344\272\256.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\346\234\210\344\272\256.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\346\234\210\344\272\256.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\346\243\200\346\237\245\346\233\264\346\226\260 (1).png" "b/EOM.TSHotelManagement.FormUI/Resources/\346\243\200\346\237\245\346\233\264\346\226\260 (1).png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\346\243\200\346\237\245\346\233\264\346\226\260 (1).png" rename to "EOM.TSHotelManagement.FormUI/Resources/\346\243\200\346\237\245\346\233\264\346\226\260 (1).png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\346\263\250\351\224\200.png" "b/EOM.TSHotelManagement.FormUI/Resources/\346\263\250\351\224\200.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\346\263\250\351\224\200.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\346\263\250\351\224\200.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\347\224\250\346\210\267\347\231\273\345\275\225.png" "b/EOM.TSHotelManagement.FormUI/Resources/\347\224\250\346\210\267\347\231\273\345\275\225.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\347\224\250\346\210\267\347\231\273\345\275\225.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\347\224\250\346\210\267\347\231\273\345\275\225.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\347\231\275\351\207\221\344\274\232\345\221\230.png" "b/EOM.TSHotelManagement.FormUI/Resources/\347\231\275\351\207\221\344\274\232\345\221\230.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\347\231\275\351\207\221\344\274\232\345\221\230.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\347\231\275\351\207\221\344\274\232\345\221\230.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\347\233\221\347\256\241\345\260\217\347\273\204\345\215\241\347\211\207.png" "b/EOM.TSHotelManagement.FormUI/Resources/\347\233\221\347\256\241\345\260\217\347\273\204\345\215\241\347\211\207.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\347\233\221\347\256\241\345\260\217\347\273\204\345\215\241\347\211\207.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\347\233\221\347\256\241\345\260\217\347\273\204\345\215\241\347\211\207.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\347\263\273\347\273\237\347\256\241\347\220\206\345\221\230.png" "b/EOM.TSHotelManagement.FormUI/Resources/\347\263\273\347\273\237\347\256\241\347\220\206\345\221\230.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\347\263\273\347\273\237\347\256\241\347\220\206\345\221\230.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\347\263\273\347\273\237\347\256\241\347\220\206\345\221\230.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\347\273\217\347\220\206\351\203\250\345\215\241\347\211\207.png" "b/EOM.TSHotelManagement.FormUI/Resources/\347\273\217\347\220\206\351\203\250\345\215\241\347\211\207.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\347\273\217\347\220\206\351\203\250\345\215\241\347\211\207.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\347\273\217\347\220\206\351\203\250\345\215\241\347\211\207.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\347\273\264\344\277\256\346\210\277(hover)icon.png" "b/EOM.TSHotelManagement.FormUI/Resources/\347\273\264\344\277\256\346\210\277(hover)icon.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\347\273\264\344\277\256\346\210\277(hover)icon.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\347\273\264\344\277\256\346\210\277(hover)icon.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\347\273\264\344\277\256\346\210\277icon.png" "b/EOM.TSHotelManagement.FormUI/Resources/\347\273\264\344\277\256\346\210\277icon.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\347\273\264\344\277\256\346\210\277icon.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\347\273\264\344\277\256\346\210\277icon.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\347\273\264\344\277\256\347\212\266\346\200\201.png" "b/EOM.TSHotelManagement.FormUI/Resources/\347\273\264\344\277\256\347\212\266\346\200\201.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\347\273\264\344\277\256\347\212\266\346\200\201.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\347\273\264\344\277\256\347\212\266\346\200\201.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\347\273\264\344\277\256\351\203\250\345\215\241\347\211\207.png" "b/EOM.TSHotelManagement.FormUI/Resources/\347\273\264\344\277\256\351\203\250\345\215\241\347\211\207.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\347\273\264\344\277\256\351\203\250\345\215\241\347\211\207.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\347\273\264\344\277\256\351\203\250\345\215\241\347\211\207.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\350\204\217\346\210\277(hover)icon.png" "b/EOM.TSHotelManagement.FormUI/Resources/\350\204\217\346\210\277(hover)icon.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\350\204\217\346\210\277(hover)icon.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\350\204\217\346\210\277(hover)icon.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\350\204\217\346\210\277icon1.png" "b/EOM.TSHotelManagement.FormUI/Resources/\350\204\217\346\210\277icon1.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\350\204\217\346\210\277icon1.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\350\204\217\346\210\277icon1.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\350\204\217\346\210\277\347\212\266\346\200\201.png" "b/EOM.TSHotelManagement.FormUI/Resources/\350\204\217\346\210\277\347\212\266\346\200\201.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\350\204\217\346\210\277\347\212\266\346\200\201.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\350\204\217\346\210\277\347\212\266\346\200\201.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\350\264\242\345\212\241\351\203\250\345\215\241\347\211\207.png" "b/EOM.TSHotelManagement.FormUI/Resources/\350\264\242\345\212\241\351\203\250\345\215\241\347\211\207.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\350\264\242\345\212\241\351\203\250\345\215\241\347\211\207.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\350\264\242\345\212\241\351\203\250\345\215\241\347\211\207.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\350\264\246\345\217\267.png" "b/EOM.TSHotelManagement.FormUI/Resources/\350\264\246\345\217\267.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\350\264\246\345\217\267.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\350\264\246\345\217\267.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\350\275\254\346\215\242.ico" "b/EOM.TSHotelManagement.FormUI/Resources/\350\275\254\346\215\242.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\350\275\254\346\215\242.ico" rename to "EOM.TSHotelManagement.FormUI/Resources/\350\275\254\346\215\242.ico" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\351\205\222\345\272\227\351\203\250\345\215\241\347\211\207.png" "b/EOM.TSHotelManagement.FormUI/Resources/\351\205\222\345\272\227\351\203\250\345\215\241\347\211\207.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\351\205\222\345\272\227\351\203\250\345\215\241\347\211\207.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\351\205\222\345\272\227\351\203\250\345\215\241\347\211\207.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\351\222\273\347\237\263\344\274\232\345\221\230.png" "b/EOM.TSHotelManagement.FormUI/Resources/\351\222\273\347\237\263\344\274\232\345\221\230.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\351\222\273\347\237\263\344\274\232\345\221\230.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\351\222\273\347\237\263\344\274\232\345\221\230.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\351\224\201\345\261\217.png" "b/EOM.TSHotelManagement.FormUI/Resources/\351\224\201\345\261\217.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\351\224\201\345\261\217.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\351\224\201\345\261\217.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\351\242\204\347\272\246\346\210\277(hover)icon.png" "b/EOM.TSHotelManagement.FormUI/Resources/\351\242\204\347\272\246\346\210\277(hover)icon.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\351\242\204\347\272\246\346\210\277(hover)icon.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\351\242\204\347\272\246\346\210\277(hover)icon.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\351\242\204\347\272\246\346\210\277icon.png" "b/EOM.TSHotelManagement.FormUI/Resources/\351\242\204\347\272\246\346\210\277icon.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\351\242\204\347\272\246\346\210\277icon.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\351\242\204\347\272\246\346\210\277icon.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\351\242\204\347\272\246\347\212\266\346\200\201.png" "b/EOM.TSHotelManagement.FormUI/Resources/\351\242\204\347\272\246\347\212\266\346\200\201.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\351\242\204\347\272\246\347\212\266\346\200\201.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\351\242\204\347\272\246\347\212\266\346\200\201.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\351\244\220\351\245\256\351\203\250\345\215\241\347\211\207.png" "b/EOM.TSHotelManagement.FormUI/Resources/\351\244\220\351\245\256\351\203\250\345\215\241\347\211\207.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\351\244\220\351\245\256\351\203\250\345\215\241\347\211\207.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\351\244\220\351\245\256\351\203\250\345\215\241\347\211\207.png" diff --git "a/EOM.TSHotelManager.FormUI/Resources/\351\273\204\351\207\221\344\274\232\345\221\230.png" "b/EOM.TSHotelManagement.FormUI/Resources/\351\273\204\351\207\221\344\274\232\345\221\230.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/Resources/\351\273\204\351\207\221\344\274\232\345\221\230.png" rename to "EOM.TSHotelManagement.FormUI/Resources/\351\273\204\351\207\221\344\274\232\345\221\230.png" diff --git a/EOM.TSHotelManager.FormUI/TableComponent/LoadingProgress.cs b/EOM.TSHotelManagement.FormUI/TableComponent/LoadingProgress.cs similarity index 93% rename from EOM.TSHotelManager.FormUI/TableComponent/LoadingProgress.cs rename to EOM.TSHotelManagement.FormUI/TableComponent/LoadingProgress.cs index c94ac6c..a551c83 100644 --- a/EOM.TSHotelManager.FormUI/TableComponent/LoadingProgress.cs +++ b/EOM.TSHotelManagement.FormUI/TableComponent/LoadingProgress.cs @@ -1,4 +1,4 @@ -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public class LoadingProgress { diff --git a/EOM.TSHotelManager.FormUI/TableComponent/TableComHelper.cs b/EOM.TSHotelManagement.FormUI/TableComponent/TableComHelper.cs similarity index 95% rename from EOM.TSHotelManager.FormUI/TableComponent/TableComHelper.cs rename to EOM.TSHotelManagement.FormUI/TableComponent/TableComHelper.cs index a20b90c..c978fd9 100644 --- a/EOM.TSHotelManager.FormUI/TableComponent/TableComHelper.cs +++ b/EOM.TSHotelManagement.FormUI/TableComponent/TableComHelper.cs @@ -1,9 +1,9 @@ using AntdUI; -using EOM.TSHotelManager.Common.Util; +using EOM.TSHotelManagement.Common.Util; using System.Reflection; using System.Xml.Linq; -namespace EOM.TSHotelManager.FormUI +namespace EOM.TSHotelManagement.FormUI { public class TableComHelper { @@ -13,8 +13,9 @@ namespace EOM.TSHotelManager.FormUI { try { - var xmlContent = Properties.Resources.EOM_TSHotelManager_Common_Core; - using (StringReader stringReader = new StringReader(xmlContent)) + var xmlContent = Properties.Resources.TableColumns; + using (var memoryStream = new MemoryStream(xmlContent)) + using (var stringReader = new StreamReader(memoryStream)) { _xmlDoc = XDocument.Load(stringReader); } @@ -23,6 +24,7 @@ namespace EOM.TSHotelManager.FormUI { throw new InvalidOperationException("无法加载嵌入的XML内容", ex); } + } /// diff --git a/EOM.TSHotelManager.FormUI/app.manifest b/EOM.TSHotelManagement.FormUI/app.manifest similarity index 100% rename from EOM.TSHotelManager.FormUI/app.manifest rename to EOM.TSHotelManagement.FormUI/app.manifest diff --git a/EOM.TSHotelManager.FormUI/icon/add to card.ico b/EOM.TSHotelManagement.FormUI/icon/add to card.ico similarity index 100% rename from EOM.TSHotelManager.FormUI/icon/add to card.ico rename to EOM.TSHotelManagement.FormUI/icon/add to card.ico diff --git a/EOM.TSHotelManager.FormUI/icon/add_person.ico b/EOM.TSHotelManagement.FormUI/icon/add_person.ico similarity index 100% rename from EOM.TSHotelManager.FormUI/icon/add_person.ico rename to EOM.TSHotelManagement.FormUI/icon/add_person.ico diff --git a/EOM.TSHotelManager.FormUI/icon/check-out2.ico b/EOM.TSHotelManagement.FormUI/icon/check-out2.ico similarity index 100% rename from EOM.TSHotelManager.FormUI/icon/check-out2.ico rename to EOM.TSHotelManagement.FormUI/icon/check-out2.ico diff --git a/EOM.TSHotelManager.FormUI/icon/checkin.ico b/EOM.TSHotelManagement.FormUI/icon/checkin.ico similarity index 100% rename from EOM.TSHotelManager.FormUI/icon/checkin.ico rename to EOM.TSHotelManagement.FormUI/icon/checkin.ico diff --git a/EOM.TSHotelManager.FormUI/icon/customers.ico b/EOM.TSHotelManagement.FormUI/icon/customers.ico similarity index 100% rename from EOM.TSHotelManager.FormUI/icon/customers.ico rename to EOM.TSHotelManagement.FormUI/icon/customers.ico diff --git a/EOM.TSHotelManager.FormUI/icon/time.ico b/EOM.TSHotelManagement.FormUI/icon/time.ico similarity index 100% rename from EOM.TSHotelManager.FormUI/icon/time.ico rename to EOM.TSHotelManagement.FormUI/icon/time.ico diff --git "a/EOM.TSHotelManager.FormUI/icon/\344\274\240\350\276\223_\344\270\212\344\274\240.ico" "b/EOM.TSHotelManagement.FormUI/icon/\344\274\240\350\276\223_\344\270\212\344\274\240.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\344\274\240\350\276\223_\344\270\212\344\274\240.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\344\274\240\350\276\223_\344\270\212\344\274\240.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\345\205\263\344\272\216\346\210\221\344\273\254.ico" "b/EOM.TSHotelManagement.FormUI/icon/\345\205\263\344\272\216\346\210\221\344\273\254.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\345\205\263\344\272\216\346\210\221\344\273\254.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\345\205\263\344\272\216\346\210\221\344\273\254.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\345\216\206\345\217\262\345\205\254\345\221\212.ico" "b/EOM.TSHotelManagement.FormUI/icon/\345\216\206\345\217\262\345\205\254\345\221\212.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\345\216\206\345\217\262\345\205\254\345\221\212.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\345\216\206\345\217\262\345\205\254\345\221\212.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\345\221\230\345\267\245\344\273\273\345\221\275.ico" "b/EOM.TSHotelManagement.FormUI/icon/\345\221\230\345\267\245\344\273\273\345\221\275.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\345\221\230\345\267\245\344\273\273\345\221\275.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\345\221\230\345\267\245\344\273\273\345\221\275.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\345\221\230\345\267\245\347\256\241\347\220\206.ico" "b/EOM.TSHotelManagement.FormUI/icon/\345\221\230\345\267\245\347\256\241\347\220\206.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\345\221\230\345\267\245\347\256\241\347\220\206.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\345\221\230\345\267\245\347\256\241\347\220\206.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\345\225\206\345\223\201\347\256\241\347\220\206.ico" "b/EOM.TSHotelManagement.FormUI/icon/\345\225\206\345\223\201\347\256\241\347\220\206.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\345\225\206\345\223\201\347\256\241\347\220\206.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\345\225\206\345\223\201\347\256\241\347\220\206.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\345\245\226\346\203\251.ico" "b/EOM.TSHotelManagement.FormUI/icon/\345\245\226\346\203\251.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\345\245\226\346\203\251.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\345\245\226\346\203\251.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\345\255\246\345\216\206.ico" "b/EOM.TSHotelManagement.FormUI/icon/\345\255\246\345\216\206.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\345\255\246\345\216\206.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\345\255\246\345\216\206.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\345\256\242\346\210\267\344\277\241\346\201\257.ico" "b/EOM.TSHotelManagement.FormUI/icon/\345\256\242\346\210\267\344\277\241\346\201\257.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\345\256\242\346\210\267\344\277\241\346\201\257.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\345\256\242\346\210\267\344\277\241\346\201\257.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\345\256\242\346\210\267\347\256\241\347\220\206.ico" "b/EOM.TSHotelManagement.FormUI/icon/\345\256\242\346\210\267\347\256\241\347\220\206.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\345\256\242\346\210\267\347\256\241\347\220\206.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\345\256\242\346\210\267\347\256\241\347\220\206.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\346\200\247 \345\210\253.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\200\247 \345\210\253.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\346\200\247 \345\210\253.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\346\200\247 \345\210\253.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\346\210\277\346\200\201\345\233\276.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\210\277\346\200\201\345\233\276.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\346\210\277\346\200\201\345\233\276.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\346\210\277\346\200\201\345\233\276.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\346\210\277\351\227\264\344\277\256\346\224\271.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\210\277\351\227\264\344\277\256\346\224\271.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\346\210\277\351\227\264\344\277\256\346\224\271.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\346\210\277\351\227\264\344\277\256\346\224\271.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\346\212\245\350\241\250.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\212\245\350\241\250.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\346\212\245\350\241\250.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\346\212\245\350\241\250.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\346\223\215\344\275\234\350\256\260\345\275\225.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\223\215\344\275\234\350\256\260\345\275\225.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\346\223\215\344\275\234\350\256\260\345\275\225.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\346\223\215\344\275\234\350\256\260\345\275\225.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\346\226\260\345\242\236.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\226\260\345\242\236.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\346\226\260\345\242\236.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\346\226\260\345\242\236.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\346\235\203\351\231\220.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\235\203\351\231\220.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\346\235\203\351\231\220.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\346\235\203\351\231\220.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\346\260\221\346\227\217.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\260\221\346\227\217.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\346\260\221\346\227\217.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\346\260\221\346\227\217.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\346\260\264\347\224\265.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\260\264\347\224\265.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\346\260\264\347\224\265.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\346\260\264\347\224\265.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\346\266\210\350\264\271\350\264\246\345\215\225.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\266\210\350\264\271\350\264\246\345\215\225.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\346\266\210\350\264\271\350\264\246\345\215\225.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\346\266\210\350\264\271\350\264\246\345\215\225.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\346\267\273\345\212\240\345\221\230\345\267\245.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\267\273\345\212\240\345\221\230\345\267\245.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\346\267\273\345\212\240\345\221\230\345\267\245.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\346\267\273\345\212\240\345\221\230\345\267\245.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\346\267\273\345\212\240\347\256\241\347\220\206\345\221\230.ico" "b/EOM.TSHotelManagement.FormUI/icon/\346\267\273\345\212\240\347\256\241\347\220\206\345\221\230.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\346\267\273\345\212\240\347\256\241\347\220\206\345\221\230.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\346\267\273\345\212\240\347\256\241\347\220\206\345\221\230.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\347\233\221\347\256\241\347\273\237\350\256\241.ico" "b/EOM.TSHotelManagement.FormUI/icon/\347\233\221\347\256\241\347\273\237\350\256\241.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\347\233\221\347\256\241\347\273\237\350\256\241.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\347\233\221\347\256\241\347\273\237\350\256\241.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\347\233\276\347\211\214.ico" "b/EOM.TSHotelManagement.FormUI/icon/\347\233\276\347\211\214.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\347\233\276\347\211\214.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\347\233\276\347\211\214.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\347\246\201\347\224\250.ico" "b/EOM.TSHotelManagement.FormUI/icon/\347\246\201\347\224\250.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\347\246\201\347\224\250.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\347\246\201\347\224\250.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\347\255\211\347\272\247.ico" "b/EOM.TSHotelManagement.FormUI/icon/\347\255\211\347\272\247.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\347\255\211\347\272\247.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\347\255\211\347\272\247.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\350\201\214\344\275\215.ico" "b/EOM.TSHotelManagement.FormUI/icon/\350\201\214\344\275\215.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\350\201\214\344\275\215.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\350\201\214\344\275\215.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\350\247\204\345\210\231.ico" "b/EOM.TSHotelManagement.FormUI/icon/\350\247\204\345\210\231.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\350\247\204\345\210\231.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\350\247\204\345\210\231.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\350\264\242\345\212\241\350\264\246\345\215\225.ico" "b/EOM.TSHotelManagement.FormUI/icon/\350\264\242\345\212\241\350\264\246\345\215\225.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\350\264\242\345\212\241\350\264\246\345\215\225.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\350\264\242\345\212\241\350\264\246\345\215\225.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\350\275\254\346\215\242.ico" "b/EOM.TSHotelManagement.FormUI/icon/\350\275\254\346\215\242.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\350\275\254\346\215\242.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\350\275\254\346\215\242.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\351\203\250\351\227\250.ico" "b/EOM.TSHotelManagement.FormUI/icon/\351\203\250\351\227\250.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\351\203\250\351\227\250.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\351\203\250\351\227\250.ico" diff --git "a/EOM.TSHotelManager.FormUI/icon/\351\242\204\347\272\246.ico" "b/EOM.TSHotelManagement.FormUI/icon/\351\242\204\347\272\246.ico" similarity index 100% rename from "EOM.TSHotelManager.FormUI/icon/\351\242\204\347\272\246.ico" rename to "EOM.TSHotelManagement.FormUI/icon/\351\242\204\347\272\246.ico" diff --git a/EOM.TSHotelManager.FormUI/images/blue_refresh.png b/EOM.TSHotelManagement.FormUI/images/blue_refresh.png similarity index 100% rename from EOM.TSHotelManager.FormUI/images/blue_refresh.png rename to EOM.TSHotelManagement.FormUI/images/blue_refresh.png diff --git a/EOM.TSHotelManager.FormUI/images/lockicon.png b/EOM.TSHotelManagement.FormUI/images/lockicon.png similarity index 100% rename from EOM.TSHotelManager.FormUI/images/lockicon.png rename to EOM.TSHotelManagement.FormUI/images/lockicon.png diff --git "a/EOM.TSHotelManager.FormUI/images/\345\244\215\345\210\266.png" "b/EOM.TSHotelManagement.FormUI/images/\345\244\215\345\210\266.png" similarity index 100% rename from "EOM.TSHotelManager.FormUI/images/\345\244\215\345\210\266.png" rename to "EOM.TSHotelManagement.FormUI/images/\345\244\215\345\210\266.png" diff --git a/EOM.TSHotelManager.FormUI/logo.ico b/EOM.TSHotelManagement.FormUI/logo.ico similarity index 100% rename from EOM.TSHotelManager.FormUI/logo.ico rename to EOM.TSHotelManagement.FormUI/logo.ico diff --git a/topsky-hotel-manager-system-web-api b/topsky-hotel-manager-system-web-api deleted file mode 160000 index 72a49d4..0000000 --- a/topsky-hotel-manager-system-web-api +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 72a49d4ac8e70d1de1fc6472ada71c2a4022e1bf -- Gitee From 78d74285f9a5a618145143363a3337b5088f5346 Mon Sep 17 00:00:00 2001 From: ck_yeun9 Date: Wed, 29 Jan 2025 13:17:28 +0800 Subject: [PATCH 7/7] update md --- README.en.md | 7 ++++--- README.md | 21 +++++++++++---------- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/README.en.md b/README.en.md index 280eced..ca7e9a0 100644 --- a/README.en.md +++ b/README.en.md @@ -1,8 +1,8 @@

Organization Logo.png

-

TopskyHotelManagerSystem

+

TopskyHotelManagementSystem

- star - fork + star + fork

@@ -11,6 +11,7 @@ + # :exclamation: Important Notice: **Note: The master branch changes with the v2.x version, which significantly differs from the v1.x version. Those interested in the v1.x version can move to the v1.x branch address**: https://gitee.com/java-and-net/TopskyHotelManagerSystem/tree/v1.x/ diff --git a/README.md b/README.md index 2423204..4f64f6f 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@

Organization Logo.png

-

TopskyHotelManagerSystem

+

TopskyHotelManagementSystem

- star - fork + star + fork

@@ -12,6 +12,7 @@ + # :exclamation: 重要说明: **注意:目前master分支随v2.x版本变动而变动,v2.x版本与v1.x版本变动极大,因此想要v1.x版本的可移步至v1.x分支地址** : https://gitee.com/java-and-net/TopskyHotelManagerSystem/tree/v1.x/ @@ -42,7 +43,7 @@ 5、针对MySQL和PostgreSQL数据库的说明: - 5.1、本地数据库若为MySQL,请拉取[MySQL专用分支](https://gitee.com/java-and-net/topsky-hotel-manager-system-web-api/tree/MySQL_Version/)。 + 5.1、本地数据库若为MySQL,请拉取[MySQL专用分支](https://gitee.com/java-and-net/topsky-hotel-management-system-web-api/tree/MySQL_Version/)。 5.2、本地数据库若为PostgreSQL,则无需进行任何改动,只需要在Common层对HttpHelper里的pgsqlString常量数据库连接字符串进行配置。 @@ -70,16 +71,16 @@ # :open_file_folder: 系统结构: ```tree -EOM.Client.TopSkyHotelManagerSystem +EOM.Client.TopskyHotelManagementSystem ├─ .git ├─ .gitignore -├─ EOM.Client.TopSkyHotelManagerSystem.sln +├─ EOM.Client.TopskyHotelManagementSystem.sln ├─ FodyWeavers.xml ├─ LICENSE ├─ README.md -├─ EOM.TSHotelManager.Common -├─ EOM.TSHotelManager.Common.Core -├─ EOM.TSHotelManager.FormUI +├─ EOM.TopskyHotelManagementSystem.Common +├─ EOM.TopskyHotelManagementSystem.Common.Core +├─ EOM.TopskyHotelManagementSystem.FormUI │ ├─ .gitignore │ ├─ App.config │ ├─ AppFunction @@ -141,4 +142,4 @@ EOM.Client.TopSkyHotelManagerSystem **2、通过可视化管理工具打开:数据库脚本\PostgreSQL版本文件\db_file.sql进行数据表建立和数据导入。** -[![java-and-net/TopskyHotelManagerSystem](https://gitee.com/java-and-net/TopskyHotelManagerSystem/widgets/widget_card.svg?colors=4183c4,ffffff,ffffff,e3e9ed,666666,9b9b9b)](https://gitee.com/java-and-net/TopskyHotelManagerSystem) \ No newline at end of file +[![java-and-net/TopskyHotelManagementSystem](https://gitee.com/java-and-net/TopskyHotelManagementSystem/widgets/widget_card.svg?colors=4183c4,ffffff,ffffff,e3e9ed,666666,9b9b9b)](https://gitee.com/java-and-net/TopskyHotelManagerSystem) \ No newline at end of file -- Gitee