diff --git a/EOM.TSHotelManager.Application/EOM.TSHotelManager.Application.csproj b/EOM.TSHotelManager.Application/EOM.TSHotelManager.Application.csproj
index eafac8e0973a8f2aa52c79954b56c9f4fabf4298..044ad9c25b27ca3ce1151ab1190d11f2d7128097 100644
--- a/EOM.TSHotelManager.Application/EOM.TSHotelManager.Application.csproj
+++ b/EOM.TSHotelManager.Application/EOM.TSHotelManager.Application.csproj
@@ -22,7 +22,7 @@
-
+
diff --git a/EOM.TSHotelManager.Core/BaseDTO.cs b/EOM.TSHotelManager.Core/BaseDTO.cs
deleted file mode 100644
index f886090242af5cb20a805f8eed34fa8715895f66..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/BaseDTO.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- public class BaseDTO
- {
- ///
- /// 资料创建人
- ///
- [SqlSugar.SugarColumn(IsOnlyIgnoreUpdate = true)]
- public string datains_usr { get; set; }
- ///
- /// 资料创建时间
- ///
- [SqlSugar.SugarColumn(InsertServerTime = true, IsOnlyIgnoreUpdate = true)]
- public DateTime? datains_date { get; set; }
- ///
- /// 资料更新人
- ///
- [SqlSugar.SugarColumn(IsOnlyIgnoreInsert = true)]
- public string datachg_usr { get; set; }
- ///
- /// 资料更新时间
- ///
- [SqlSugar.SugarColumn(UpdateServerTime = true,IsOnlyIgnoreInsert = true)]
- public DateTime? datachg_date { get; set; }
-
- }
-}
diff --git a/EOM.TSHotelManager.Core/Business/Cash/Cash.cs b/EOM.TSHotelManager.Core/Business/Cash/Cash.cs
deleted file mode 100644
index cc98423fec1cb87d8a7ad90cf840aea2fec9319a..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Business/Cash/Cash.cs
+++ /dev/null
@@ -1,83 +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.
- *
- *模块说明:资产类
- */
-using System;
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 资产管理
- ///
- [SqlSugar.SugarTable("cashinfo")]
- public class Cash : BaseDTO
- {
- ///
- /// 资产编号
- ///
- public string CashNo { get; set; }
- ///
- /// 资产名称
- ///
- public string CashName { get; set; }
- ///
- /// 资产总值
- ///
- public decimal CashPrice { get; set; }
- ///
- /// 资产总值描述
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string CashPriceStr { get; set; }
- ///
- /// 所属部门
- ///
- public string CashClub { get; set; }
- ///
- /// 所属部门描述
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string DeptName { get; set; }
- ///
- /// 入库时间
- ///
- public DateTime CashTime { get; set; }
- ///
- /// 资产来源
- ///
- public string CashSource { get; set; }
- ///
- /// 资产经办人
- ///
- public string CashPerson { get; set; }
- ///
- /// 资产经办人
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string PersonName { get; set; }
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
-
- }
-}
diff --git a/EOM.TSHotelManager.Core/Business/Customer/Custo.cs b/EOM.TSHotelManager.Core/Business/Customer/Custo.cs
deleted file mode 100644
index 61044c12c790e8269c72244ee329fddf4bceac7a..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Business/Customer/Custo.cs
+++ /dev/null
@@ -1,106 +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.
- *
- *模块说明:客户信息类
- */
-using System;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 客户信息
- ///
- [SqlSugar.SugarTable("customer")]
- public class Custo : BaseDTO
- {
- ///
- /// 自增ID
- ///
- //[SqlSugar.SugarColumn(ColumnName = "id", IsPrimaryKey = true,IsIdentity = true)]
- //public int Id { get; set; }
- ///
- /// 客户编号
- ///
- [SqlSugar.SugarColumn(ColumnName = "custo_no", IsPrimaryKey = true)]
- public string CustoNo { get; set; }
- ///
- /// 客户名称
- ///
- [SqlSugar.SugarColumn(ColumnName = "custo_name", IsNullable = false)]
- public string CustoName { get; set; }
- ///
- /// 客户性别
- ///
- [SqlSugar.SugarColumn(ColumnName = "custo_sex", IsNullable = true)]
- public int CustoSex { get; set; }
- ///
- /// 客户电话
- ///
- [SqlSugar.SugarColumn(ColumnName = "custo_tel", IsNullable = false)]
- public string CustoTel { get; set; }
- ///
- /// 证件类型
- ///
- [SqlSugar.SugarColumn(ColumnName = "passport_type", IsNullable = false)]
- public int PassportType { get; set; }
- ///
- /// 证件号码
- ///
- [SqlSugar.SugarColumn(ColumnName = "passport_id", IsNullable = false)]
- public string CustoID { get; set; }
- ///
- /// 居住地址
- ///
- [SqlSugar.SugarColumn(ColumnName = "custo_address", IsNullable = true)]
- public string CustoAdress { get; set; }
- ///
- /// 出生日期
- ///
- [SqlSugar.SugarColumn(ColumnName = "custo_birth", IsNullable = true)]
- public DateTime CustoBirth { get; set; }
- ///
- /// 客户类型
- ///
- [SqlSugar.SugarColumn(ColumnName = "custo_type", IsNullable = false)]
- public int CustoType { get; set; }
- ///
- /// 客户类型
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string typeName { get; set; }
- ///
- /// 证件类型
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string PassportName { get; set; }
- ///
- /// 性别
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string SexName { get; set; }
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
-
- }
-}
diff --git a/EOM.TSHotelManager.Core/Business/Customer/CustoSpend.cs b/EOM.TSHotelManager.Core/Business/Customer/CustoSpend.cs
deleted file mode 100644
index 4ab87e0c3d9d6daf75ce9f6d9c56d23f5941c3b4..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Business/Customer/CustoSpend.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.Core
-{
- ///
- /// 酒店盈利情况
- ///
- public class CustoSpend
- {
- ///
- /// 年
- ///
- public string Years { get; set; }
- ///
- /// 总金额
- ///
- public decimal Money { get; set; }
-
- }
-}
diff --git a/EOM.TSHotelManager.Core/Business/Customer/CustoType.cs b/EOM.TSHotelManager.Core/Business/Customer/CustoType.cs
deleted file mode 100644
index 64443a9477b638de95f195ed6dfcd3355086095e..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Business/Customer/CustoType.cs
+++ /dev/null
@@ -1,48 +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.
- *
- *模块说明:客户类型类
- */
-using System;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 客户类型
- ///
- [SqlSugar.SugarTable("usertype")]
- public class CustoType : BaseDTO
- {
- ///
- /// 客户类型
- ///
- public int UserType { get; set; }
- ///
- /// 类型名字
- ///
- public string TypeName { get; set; }
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Business/Customer/PassPortType.cs b/EOM.TSHotelManager.Core/Business/Customer/PassPortType.cs
deleted file mode 100644
index 7a68688c0bbc17bd447821b93acf98dbc50be821..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Business/Customer/PassPortType.cs
+++ /dev/null
@@ -1,53 +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.
- *
- *模块说明:证件类型类
- */
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 证件类型
- ///
- [SqlSugar.SugarTable("passporttype")]
- public class PassPortType : BaseDTO
- {
- ///
- /// 证件类型
- ///
- public int PassportId { get; set; }
-
- ///
- /// 证件名称
- ///
- public string PassportName { get; set; }
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Business/Customer/SexType.cs b/EOM.TSHotelManager.Core/Business/Customer/SexType.cs
deleted file mode 100644
index c27597c76e08372b486671d73f41652bdcf0198f..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Business/Customer/SexType.cs
+++ /dev/null
@@ -1,54 +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.
- *
- *模块说明:性别类
- */
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 性别
- ///
- [SqlSugar.SugarTable("sextype")]
- public class SexType : BaseDTO
- {
- ///
- /// 性别ID
- ///
- public int sexId { get; set; }
-
- ///
- /// 性别名称
- ///
- public string sexName { get; set; }
-
- ///
- /// 删除标记
- ///
- public int? delete_mk { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Business/Fonts/Fonts.cs b/EOM.TSHotelManager.Core/Business/Fonts/Fonts.cs
deleted file mode 100644
index 055c616a16d237d872ac14d31a79809978f211e1..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Business/Fonts/Fonts.cs
+++ /dev/null
@@ -1,43 +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.Core
-{
- ///
- /// 酒店宣传联动内容
- ///
- [SqlSugar.SugarTable("fonts")]
- public class Fonts
- {
- ///
- /// 宣传内容编号
- ///
- public int FontsId { get; set; }
-
- ///
- /// 宣传内容
- ///
- public string FontsMess { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Business/Reser/Reser.cs b/EOM.TSHotelManager.Core/Business/Reser/Reser.cs
deleted file mode 100644
index 490bef870b9db1674c082b0d951415eff7cbb151..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Business/Reser/Reser.cs
+++ /dev/null
@@ -1,69 +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.
- *
- *模块说明:预约类
- */
-using System;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 预约列表
- ///
- [SqlSugar.SugarTable("reser")]
- public class Reser : BaseDTO
- {
- ///
- /// 预约编号
- ///
- public string ReserId { get; set; }
- ///
- /// 客户名称
- ///
- public string CustoName { get; set; }
- ///
- /// 预约电话
- ///
- public string CustoTel { get; set; }
- ///
- /// 预约渠道
- ///
- public string ReserWay { get; set; }
- ///
- /// 预约房号
- ///
- public string ReserRoom { get; set; }
- ///
- /// 预约起始
- ///
- public DateTime ReserDate { get; set; }
- ///
- /// 预约止日
- ///
- public DateTime ReserEndDay { get; set; }
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
-
- }
-}
diff --git a/EOM.TSHotelManager.Core/Business/Room/Room.cs b/EOM.TSHotelManager.Core/Business/Room/Room.cs
deleted file mode 100644
index 9d3866f11aee46e7842cc0a66b54f1ba58ef0cd4..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Business/Room/Room.cs
+++ /dev/null
@@ -1,112 +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.
- *
- *模块说明:房间类
- */
-using System;
-using System.ComponentModel.DataAnnotations.Schema;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 房间实体类
- ///
- [SqlSugar.SugarTable("room")]
- public class Room : BaseDTO
- {
- ///
- /// 房间编号
- ///
- [SqlSugar.SugarColumn(ColumnName = "room_no", IsPrimaryKey = true)]
- public string RoomNo { get; set; }
- ///
- /// 房间类型
- ///
- [SqlSugar.SugarColumn(ColumnName = "room_type")]
- public int RoomType { get; set; }
- ///
- /// 客户编号
- ///
- [SqlSugar.SugarColumn(ColumnName = "custo_no")]
- public string CustoNo { get; set; }
- ///
- /// 客户姓名
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string CustoName { get; set; }
- ///
- /// 最后一次入住时间
- ///
- [SqlSugar.SugarColumn(ColumnName = "check_in_time")]
- public DateTime? CheckTime { get; set; }
- ///
- /// 最后一次退房时间
- ///
- [SqlSugar.SugarColumn(ColumnName = "check_out_time")]
- public DateTime CheckOutTime { get; set; }
- ///
- /// 房间状态ID
- ///
- [SqlSugar.SugarColumn(ColumnName = "room_state_id")]
- public int RoomStateId { get; set; }
- ///
- /// 房间状态
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string RoomState { get; set; }
- ///
- /// 房间单价
- ///
- [SqlSugar.SugarColumn(ColumnName = "room_rent")]
- public decimal RoomMoney { get; set; }
- ///
- /// 房间押金
- ///
- [SqlSugar.SugarColumn(ColumnName = "room_deposit")]
- public decimal RoomDeposit { get; set; }
- ///
- /// 房间位置
- ///
- [SqlSugar.SugarColumn(ColumnName = "room_position")]
- public string RoomPosition { get; set; }
- ///
- /// 客户类型名称
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string typeName { get; set; }
- ///
- /// 房间名称
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string RoomName { get; set; }
- ///
- /// 最后一次入住时间
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string CheckTimeFormat { get; set; }
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
-
- }
-}
diff --git a/EOM.TSHotelManager.Core/Business/Room/RoomState.cs b/EOM.TSHotelManager.Core/Business/Room/RoomState.cs
deleted file mode 100644
index 5e4974f875e500dd85b2528555c498b64ae71c47..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Business/Room/RoomState.cs
+++ /dev/null
@@ -1,49 +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.
- *
- *模块说明:房间状态类
- */
-using System;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 房间状态
- ///
- [SqlSugar.SugarTable("roomstate")]
- public class RoomState : BaseDTO
- {
- ///
- /// 房间状态编号
- ///
- public int RoomStateId { get; set; }
- ///
- /// 房间状态
- ///
- [SqlSugar.SugarColumn(ColumnName = "RoomState")]
- public string RoomStateName { get; set; }
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Business/Room/RoomType.cs b/EOM.TSHotelManager.Core/Business/Room/RoomType.cs
deleted file mode 100644
index 32055e2ee681ad73028bc611bfe68171faba1d17..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Business/Room/RoomType.cs
+++ /dev/null
@@ -1,62 +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.
- *
- *模块说明:房间类型类
- */
-using System;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 房间类型
- ///
- [SqlSugar.SugarTable("roomtype")]
- public class RoomType: BaseDTO
- {
- ///
- /// 类型编号
- ///
- [SqlSugar.SugarColumn(ColumnName = "RoomType")]
- public int Roomtype { get; set; }
- ///
- /// 房间类型
- ///
- public string RoomName { get; set; }
-
- ///
- /// 房间租金
- ///
- [SqlSugar.SugarColumn(ColumnName = "room_rent",ColumnDataType = "decimal")]
- public decimal RoomRent { get; set; }
-
- ///
- /// 房间押金
- ///
- [SqlSugar.SugarColumn(ColumnName = "room_deposit")]
- public decimal RoomDeposit { get; set; }
-
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Business/Sellthing/SellThing.cs b/EOM.TSHotelManager.Core/Business/Sellthing/SellThing.cs
deleted file mode 100644
index 4e7f71ba8ef76e91e8818a3777185e3fa4e0a196..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Business/Sellthing/SellThing.cs
+++ /dev/null
@@ -1,66 +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.
- *
- *模块说明:商品信息类
- */
-using System;
-using System.ComponentModel.DataAnnotations.Schema;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 商品信息
- ///
- [SqlSugar.SugarTable("sellthing")]
- public class SellThing : BaseDTO
- {
- ///
- /// 商品编号
- ///
- public string SellNo { get; set; }
- ///
- /// 商品名称
- ///
- public string SellName { get; set; }
- ///
- /// 商品价格
- ///
- public decimal SellPrice { get; set; }
- ///
- /// 商品价格描述
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string SellPriceStr { get; set; }
- ///
- /// 规格型号
- ///
- public string format { get; set; }
- ///
- /// 库存
- ///
- public decimal Stock { get; set; }
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Business/Spend/Spend.cs b/EOM.TSHotelManager.Core/Business/Spend/Spend.cs
deleted file mode 100644
index 59450eb1bedd76099abcd28ce338543de594d18f..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Business/Spend/Spend.cs
+++ /dev/null
@@ -1,87 +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.
- *
- *模块说明:消费信息类
- */
-using System;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 消费信息
- ///
- [SqlSugar.SugarTable("custospend")]
- public class Spend : BaseDTO
- {
- ///
- /// 房间编号
- ///
- public string RoomNo { get; set; }
- ///
- /// 客户编号
- ///
- public string CustoNo { get; set; }
- ///
- /// 商品名称
- ///
- public string SpendName { get; set; }
- ///
- /// 消费数量
- ///
- public int SpendAmount { get; set; }
- ///
- /// 商品单价
- ///
- public decimal SpendPrice { get; set; }
- ///
- /// 商品单价描述
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string SpendPriceStr { get; set; }
- ///
- /// 消费金额
- ///
- public decimal SpendMoney { get; set; }
- ///
- /// 消费金额描述
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string SpendMoneyStr { get; set; }
- ///
- /// 消费时间
- ///
- public DateTime SpendTime { get; set; }
- ///
- /// 结算状态
- ///
- public string MoneyState { get; set; }
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
- ///
- /// 结算状态描述
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string SpendStateNm { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Business/Spend/SpendConsts.cs b/EOM.TSHotelManager.Core/Business/Spend/SpendConsts.cs
deleted file mode 100644
index ea924ccb8ee36a695956e0bc89723db36b6624c4..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Business/Spend/SpendConsts.cs
+++ /dev/null
@@ -1,48 +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.
- *
- *模块说明:结算状态常量
- */
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 结算状态常量
- ///
- public class SpendConsts
- {
- ///
- /// 已结算状态常量
- ///
- public const string Settled = "Settled";
-
- ///
- /// 未结算状态常量
- ///
- public const string UnSettle = "UnSettle";
- }
-}
diff --git a/EOM.TSHotelManager.Core/Business/Wti/Wti.cs b/EOM.TSHotelManager.Core/Business/Wti/Wti.cs
deleted file mode 100644
index aa3f16e52032567aa2e4a6e98a7a618c98a1375f..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Business/Wti/Wti.cs
+++ /dev/null
@@ -1,83 +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.
- *
- *模块说明:水电信息类
- */
-using System;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 水电信息
- ///
- [SqlSugar.SugarTable("wtinfo")]
- public class Wti : BaseDTO
- {
- ///
- /// 信息编号
- ///
- [SqlSugar.SugarColumn(ColumnName = "WtiNo",IsIdentity =true,IsPrimaryKey =true)]
- public int WtiNo { get; set; }
- ///
- /// 房间编号
- ///
- [SqlSugar.SugarColumn(ColumnName = "RoomNo")]
- public string RoomNo { get; set; }
- ///
- /// 开始使用时间
- ///
- [SqlSugar.SugarColumn(ColumnName = "UseDate")]
- public DateTime UseDate { get; set; }
- ///
- /// 结束使用时间
- ///
- [SqlSugar.SugarColumn(ColumnName = "EndDate")]
- public DateTime EndDate { get; set; }
- ///
- /// 水费
- ///
- [SqlSugar.SugarColumn(ColumnName = "WaterUse")]
- public decimal WaterUse { get; set; }
- ///
- /// 电费
- ///
- [SqlSugar.SugarColumn(ColumnName = "PowerUse")]
- public decimal PowerUse { get; set; }
- ///
- /// 记录员
- ///
- [SqlSugar.SugarColumn(ColumnName = "Record",DefaultValue = "Admin")]
- public string Record { get; set; }
- ///
- /// 客户编号
- ///
- [SqlSugar.SugarColumn(ColumnName = "CustoNo")]
- public string CustoNo { get; set; }
- ///
- /// 删除标记
- ///
- [SqlSugar.SugarColumn(ColumnName = "delete_mk")]
- public int delete_mk { get; set; }
-
-
- }
-}
diff --git a/EOM.TSHotelManager.Core/EOM.TSHotelManager.Core.csproj b/EOM.TSHotelManager.Core/EOM.TSHotelManager.Core.csproj
deleted file mode 100644
index 663f63a1dd1a3dc5a8f6da9920997b847318e009..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/EOM.TSHotelManager.Core.csproj
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
- net6.0
- enable
- disable
- True
-
-
-
-
-
-
-
diff --git a/EOM.TSHotelManager.Core/Sys/NavBar/NavBar.cs b/EOM.TSHotelManager.Core/Sys/NavBar/NavBar.cs
deleted file mode 100644
index 2f8ad1fbe4e9d8db36d47bb0dc06a0c9c7feffd9..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Sys/NavBar/NavBar.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 导航控件实体类
- ///
- [SqlSugar.SugarTable("nav_bar")]
- public class NavBar : BaseDTO
- {
- ///
- /// 导航控件ID
- ///
- [SqlSugar.SugarColumn(IsIdentity =true)]
- public int nav_id { get; set; }
- ///
- /// 导航控件名称
- ///
- public string nav_name { get; set; }
- ///
- /// 导航控件排序
- ///
- public int nav_or { get; set; }
- ///
- /// 导航控件图片
- ///
- public string nav_pic { get; set; }
- ///
- /// 导航控件事件
- ///
- public string nav_event { get; set; }
- ///
- /// 导航控件事件
- ///
- public int margin_left { get; set; }
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Util/ApplicationVersion.cs b/EOM.TSHotelManager.Core/Util/ApplicationVersion.cs
deleted file mode 100644
index 7e50266d9560d343b416e423a1fa51ba4fd7023e..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Util/ApplicationVersion.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using SqlSugar;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 应用版本
- ///
- [SqlSugar.SugarTable("applicationversion")]
- public class Applicationversion
- {
- ///
- /// 流水号
- ///
- [SugarColumn(ColumnName = "base_versionId")]//数据库是自增才配自增
- public int base_versionId { get; set; }
-
- ///
- /// 版本号
- ///
- [SugarColumn(ColumnName = "base_version")]//数据库是自增才配自增
- public string base_version { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Util/Cardcodes.cs b/EOM.TSHotelManager.Core/Util/Cardcodes.cs
deleted file mode 100644
index 2b8f9bd15a57d2e5aed237f36ac847edc24193a3..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Util/Cardcodes.cs
+++ /dev/null
@@ -1,52 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 卡片代码
- ///
- [SqlSugar.SugarTable("cardcodes")]
- public class Cardcodes
- {
- ///
- /// 卡片代码
- ///
- public Cardcodes()
- {
- }
-
- private System.Int64 _id;
- ///
- /// 编号
- ///
- public System.Int64 id { get { return this._id; } set { this._id = value; } }
-
- private System.String _Province;
- ///
- /// 省份
- ///
- public System.String Province { get { return this._Province; } set { this._Province = value; } }
-
- private System.String _City;
- ///
- /// 城市
- ///
- public System.String City { get { return this._City; } set { this._City = value; } }
-
- private System.String _District;
- ///
- /// 地区
- ///
- public System.String District { get { return this._District; } set { this._District = value; } }
-
- private System.String _bm;
- ///
- /// 地区识别码
- ///
- public System.String bm { get { return this._bm; } set { this._bm = value; } }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Util/OperationLog.cs b/EOM.TSHotelManager.Core/Util/OperationLog.cs
deleted file mode 100644
index 1b968a54a701d78b45e1f1e76c1de6333e84ec98..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Util/OperationLog.cs
+++ /dev/null
@@ -1,99 +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.
- *
- *模块说明:操作日志类
- */
-using System;
-using System.Linq;
-using System.Net;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 日志等级
- ///
- public enum RecordLevel
- {
- ///
- /// 普通警告
- ///
- Normal = 100,
- ///
- /// 严重警告
- ///
- Warning = 200,
- ///
- /// 危险警告
- ///
- Danger = 300,
- }
-
- ///
- /// 操作日志
- ///
- [SqlSugar.SugarTable("operationlog")]
- public class OperationLog : BaseDTO
- {
- ///
- /// 操作时间
- ///
- [SqlSugar.SugarColumn(ColumnName = "OperationTime")]
- public DateTime OperationTime { get; set; }
- ///
- /// 操作信息
- ///
- [SqlSugar.SugarColumn(ColumnName = "LogContent")]
- public string LogContent { get; set; }
- ///
- /// 操作账号
- ///
- [SqlSugar.SugarColumn(ColumnName = "OperationAccount")]
- public string OperationAccount { get; set; }
- ///
- /// 日志等级
- ///
- [SqlSugar.SugarColumn(ColumnName = "OperationLevel")]
- public RecordLevel OperationLevel { get; set; }
- ///
- /// 删除标记
- ///
- [SqlSugar.SugarColumn(ColumnName = "delete_mk")]
- public int delete_mk { get; set; }
- ///
- /// 软件版本
- ///
- [SqlSugar.SugarColumn(ColumnName = "SoftwareVersion")]
- public string SoftwareVersion { get; set; }
- ///
- /// 登录IP
- ///
- [SqlSugar.SugarColumn(ColumnName = "login_ip")]
- public string login_ip { get; set; }
-
- ///
- /// 日志等级
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string OperationLevelNm { get; set; }
-
- }
-}
diff --git a/EOM.TSHotelManager.Core/Worker/GBType.cs b/EOM.TSHotelManager.Core/Worker/GBType.cs
deleted file mode 100644
index 34f8a821c9271d93f3422215f5ef22ce88a15bcb..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Worker/GBType.cs
+++ /dev/null
@@ -1,51 +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.
- *
- *模块说明:奖惩类型类
- */
-using EOM.TSHotelManager.Core;
-using System;
-
-namespace EOM.TSHotelManager.Application
-{
- ///
- /// 奖惩类型实体类
- ///
- [SqlSugar.SugarTable("gbtype")]
- public class GBType : BaseDTO
- {
- ///
- /// 奖惩编号
- ///
- public int GBTypeId { get; set; }
-
- ///
- /// 奖惩名称
- ///
- public string GBName { get; set; }
-
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
- }
-}
\ No newline at end of file
diff --git a/EOM.TSHotelManager.Core/Worker/Worker.cs b/EOM.TSHotelManager.Core/Worker/Worker.cs
deleted file mode 100644
index d537b1ec265f0da4e4c702d5310ff17d4aee79cc..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Worker/Worker.cs
+++ /dev/null
@@ -1,137 +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.
- *
- *模块说明:员工信息类
- */
-using System;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 员工信息
- ///
- [SqlSugar.SugarTable("worker")]
- public class Worker : BaseDTO
- {
- ///
- /// 员工账号/工号
- ///
- [SqlSugar.SugarColumn(ColumnName = "WorkerId")]
- public string WorkerId { get; set; }
- ///
- /// 员工姓名
- ///
- [SqlSugar.SugarColumn(ColumnName = "WorkerName")]
- public string WorkerName { get; set; }
- ///
- /// 出生日期
- ///
- [SqlSugar.SugarColumn(ColumnName = "WorkerBirthday")]
- public DateTime WorkerBirthday { get; set; }
- ///
- /// 员工性别
- ///
- [SqlSugar.SugarColumn(ColumnName = "WorkerSex")]
- public int WorkerSex { get; set; }
- ///
- /// 员工性别(名称描述)
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string WorkerSexName { get; set; }
- ///
- /// 民族类型
- ///
- [SqlSugar.SugarColumn(ColumnName = "WorkerNation")]
- public string WorkerNation { get; set; }
- ///
- /// 民族名称
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string NationName { get; set; }
- ///
- /// 员工电话
- ///
- [SqlSugar.SugarColumn(ColumnName = "WorkerTel")]
- public string WorkerTel { get; set; }
- ///
- /// 所属部门
- ///
- [SqlSugar.SugarColumn(ColumnName = "WorkerClub")]
- public string WorkerClub { get; set; }
- ///
- /// 部门名称
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string ClubName { get; set; }
- ///
- /// 居住地址
- ///
- [SqlSugar.SugarColumn(ColumnName = "WorkerAddress")]
- public string WorkerAddress { get; set; }
- ///
- /// 员工职位
- ///
- [SqlSugar.SugarColumn(ColumnName = "WorkerPosition")]
- public string WorkerPosition { get; set; }
- ///
- /// 职位名称
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string PositionName { get; set; }
- ///
- /// 证件号码
- ///
- [SqlSugar.SugarColumn(ColumnName = "CardID")]
- public string CardId { get; set; }
- ///
- /// 员工密码
- ///
- [SqlSugar.SugarColumn(IsOnlyIgnoreInsert = true)]
- public string WorkerPwd { get; set; }
- ///
- /// 员工入职时间
- ///
- public DateTime WorkerTime { get; set; }
- ///
- /// 员工面貌
- ///
- public string WorkerFace { get; set; }
- ///
- /// 群众面貌描述
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string FaceName { get; set; }
- ///
- /// 教育程度
- ///
- public string WorkerEducation { get; set; }
- ///
- /// 教育程度名称
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string EducationName { get; set; }
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Worker/WorkerCheck.cs b/EOM.TSHotelManager.Core/Worker/WorkerCheck.cs
deleted file mode 100644
index 9ee77c55b86e642b7491744f4bc3b41a3670d892..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Worker/WorkerCheck.cs
+++ /dev/null
@@ -1,68 +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.
- *
- *模块说明:打卡考勤类
- */
-using System;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 员工打卡考勤
- ///
- [SqlSugar.SugarTable("workercheck")]
- public class WorkerCheck : BaseDTO
- {
- ///
- /// 编号
- ///
- [SqlSugar.SugarColumn(IsOnlyIgnoreInsert = true, IsOnlyIgnoreUpdate = true)]
- public int Id { get; set; }
- ///
- /// 工号
- ///
- public string WorkerNo { get; set; }
- ///
- /// 打卡时间
- ///
- public DateTime CheckTime { get; set; }
- ///
- /// 打卡方式
- ///
- public string CheckWay { get; set; }
- ///
- /// 打卡状态
- ///
- public int CheckState { get; set; }
-
- ///
- /// 打卡状态
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string CheckStateNm { get; set; }
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
-
- }
-}
diff --git a/EOM.TSHotelManager.Core/Worker/WorkerGoodBad.cs b/EOM.TSHotelManager.Core/Worker/WorkerGoodBad.cs
deleted file mode 100644
index 5b4f107d1471cc05c9e078dbcc4231c16ce882c7..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Worker/WorkerGoodBad.cs
+++ /dev/null
@@ -1,79 +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.
- *
- *模块说明:员工奖惩类
- */
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 员工奖罚
- ///
- [SqlSugar.SugarTable("workergoodbad")]
- public class WorkerGoodBad : BaseDTO
- {
- ///
- /// 编号
- ///
- [SqlSugar.SugarColumn(IsOnlyIgnoreInsert = true, IsOnlyIgnoreUpdate = true)]
- public int Id { get; set; }
- ///
- /// 工号
- ///
- public string WorkNo { get; set; }
- ///
- /// 奖惩信息
- ///
- public string GBInfo { get; set; }
- ///
- /// 奖惩类型
- ///
- public int GBType { get; set; }
- ///
- /// 奖惩操作人
- ///
- public string GBOperation { get; set; }
- ///
- /// 奖惩操作人
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string OperationName { get; set; }
- ///
- /// 奖惩时间
- ///
- public DateTime GBTime { get; set; }
- ///
- /// 类型名称
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string TypeName { get; set; }
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Worker/WorkerHistory.cs b/EOM.TSHotelManager.Core/Worker/WorkerHistory.cs
deleted file mode 100644
index 6c81bdca9792953c8db03c9061a9938b2ff8f483..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Worker/WorkerHistory.cs
+++ /dev/null
@@ -1,65 +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.
- *
- *模块说明:履历类
- */
-using System;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 员工履历
- ///
- [SqlSugar.SugarTable("workerhistory")]
- public class WorkerHistory : BaseDTO
- {
- ///
- /// 编号
- ///
- [SqlSugar.SugarColumn(IsOnlyIgnoreInsert = true,IsOnlyIgnoreUpdate = true)]
- public int Id { get; set; }
- ///
- /// 工号
- ///
- public string WorkerId { get; set; }
- ///
- /// 开始时间
- ///
- public DateTime StartDate { get; set; }
- ///
- /// 结束时间
- ///
- public DateTime EndDate { get; set; }
- ///
- /// 职位
- ///
- public string Position { get; set; }
- ///
- /// 公司
- ///
- public string Company { get; set; }
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Worker/WorkerPic.cs b/EOM.TSHotelManager.Core/Worker/WorkerPic.cs
deleted file mode 100644
index b50fcadd5b7f59ad552aabf12717de2e7c770c2f..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Worker/WorkerPic.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel.DataAnnotations.Schema;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 员工照片
- ///
- [SqlSugar.SugarTable("workerpic")]
- public class WorkerPic
- {
- ///
- /// 自增长流水号
- ///
- [SqlSugar.SugarColumn(IsIdentity = true,ColumnName = "Id",IsPrimaryKey = true)]
- public int Id { get; set; }
- ///
- /// 工号
- ///
- [SqlSugar.SugarColumn(ColumnName = "WorkerId")]
- public string WorkerId { get; set; }
-
- ///
- /// 照片路径
- ///
- [SqlSugar.SugarColumn(ColumnName = "Pic")]
- public string Pic { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Zero/Admin.cs b/EOM.TSHotelManager.Core/Zero/Admin.cs
deleted file mode 100644
index 8123e4ac990d0da8e754c9fff827be3bd9675542..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Zero/Admin.cs
+++ /dev/null
@@ -1,101 +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.Core
-{
- ///
- /// 管理员实体类
- ///
- [SqlSugar.SugarTable("admininfo")]
- public class Admin : BaseDTO
- {
- ///
- /// 构造函数
- ///
- public Admin()
- {
- }
-
- ///
- /// 编号
- ///
- public int Id { get; set; }
-
- private string _AdminAccount;
- ///
- /// 管理员账号
- ///
- [SqlSugar.SugarColumn(IsPrimaryKey = true)]
- public string AdminAccount { get { return this._AdminAccount; } set { this._AdminAccount = value; } }
-
- private string _AdminPassword;
- ///
- /// 管理员密码
- ///
- public string AdminPassword { get { return this._AdminPassword; } set { this._AdminPassword = value; } }
-
- private string _AdminType;
- ///
- /// 管理员类型
- ///
- public string AdminType { get { return this._AdminType; } set { this._AdminType = value; } }
-
- private string _AdminName;
- ///
- /// 管理员名称
- ///
- public string AdminName { get { return this._AdminName; } set { this._AdminName = value; } }
-
- private System.Int32 _IsAdmin;
- ///
- /// 是否为超级管理员
- ///
- public System.Int32 IsAdmin { get { return this._IsAdmin; } set { this._IsAdmin = value; } }
-
- private System.Int32 _DeleteMk;
- ///
- /// 删除标记
- ///
- public System.Int32 DeleteMk { get { return this._DeleteMk; } set { this._DeleteMk = value; } }
-
- ///
- /// 管理员类型描述
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string IsAdminNm { get; set; }
-
- ///
- /// 管理员类型
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string TypeName { get; set; }
-
- ///
- /// 删除标记描述
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string DeleteNm { get; set; }
-
- }
-}
diff --git a/EOM.TSHotelManager.Core/Zero/AdminType.cs b/EOM.TSHotelManager.Core/Zero/AdminType.cs
deleted file mode 100644
index 03936f132572e33d06ca81ef52cfa48787da3f51..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Zero/AdminType.cs
+++ /dev/null
@@ -1,60 +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.
- *
- *模块说明:管理员类型
- */
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 管理员类型
- ///
- [SqlSugar.SugarTable("admintype")]
- public class AdminType : BaseDTO
- {
- ///
- /// 编号
- ///
- public int Id { get; set; }
-
- ///
- /// 管理员类型
- ///
- public string type_id { get; set; }
-
- ///
- /// 类型名称
- ///
- public string type_name { get; set; }
-
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
-
- }
-}
diff --git a/EOM.TSHotelManager.Core/Zero/Base.cs b/EOM.TSHotelManager.Core/Zero/Base.cs
deleted file mode 100644
index 48ca40255fe316eac0f71d294bd0ae00c75f0306..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Zero/Base.cs
+++ /dev/null
@@ -1,49 +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.
- *
- *模块说明:系统信息静态类
- */
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 系统信息
- ///
- [SqlSugar.SugarTable("base")]
- public class Base
- {
- ///
- /// 地址编号
- ///
- public int url_no { get; set; }
-
- ///
- /// 地址
- ///
- public string url_addr { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Zero/CheckInfo.cs b/EOM.TSHotelManager.Core/Zero/CheckInfo.cs
deleted file mode 100644
index bff47c525550c0c2ec87aa3086fa69fef0289646..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Zero/CheckInfo.cs
+++ /dev/null
@@ -1,69 +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.
- *
- *模块说明:监管统计类
- */
-using System;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 监管统计
- ///
- [SqlSugar.SugarTable("checkinfo")]
- public class CheckInfo : BaseDTO
- {
- ///
- /// 监管统计编号
- ///
- public string CheckNo { get; set; }
- ///
- /// 监管部门
- ///
- public string CheckClub { get; set; }
- ///
- /// 监管进度
- ///
- public string CheckProgres { get; set; }
- ///
- ///
- ///
- public string CheckCash { get; set; }
- ///
- ///
- ///
- public int CheckScore { get; set; }
- ///
- ///
- ///
- public string CheckPerson { get; set; }
- ///
- ///
- ///
- public string CheckAdvice { get; set; }
-
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Zero/Dept.cs b/EOM.TSHotelManager.Core/Zero/Dept.cs
deleted file mode 100644
index 90157f49128a6912c469780dc7946f96300ba5ed..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Zero/Dept.cs
+++ /dev/null
@@ -1,86 +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.
- *
- *模块说明:部门实体类
- */
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 部门表
- ///
- [SqlSugar.SugarTable("dept")]
- public class Dept : BaseDTO
- {
- ///
- /// 部门编号
- ///
- [SqlSugar.SugarColumn(ColumnName = "dept_no")]
- public string dept_no { get; set; }
- ///
- /// 部门名称
- ///
- [SqlSugar.SugarColumn(ColumnName = "dept_name")]
- public string dept_name { get; set; }
- ///
- /// 部门描述
- ///
- [SqlSugar.SugarColumn(ColumnName = "dept_desc")]
- public string dept_desc { get; set; }
- ///
- /// 创建时间(部门)
- ///
- [SqlSugar.SugarColumn(ColumnName = "dept_date")]
- public DateTime dept_date { get; set; }
- ///
- /// 部门主管
- ///
- [SqlSugar.SugarColumn(ColumnName = "dept_leader")]
- public string dept_leader { get; set; }
- ///
- /// 部门主管
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string leader_name { get; set; }
- ///
- /// 上级部门
- ///
- [SqlSugar.SugarColumn(ColumnName = "dept_parent")]
- public string dept_parent { get; set; }
- ///
- /// 上级部门
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string parent_name { get; set; }
- ///
- /// 删除标记
- ///
- [SqlSugar.SugarColumn(ColumnName = "delete_mk")]
- public int delete_mk { get; set; }
-
- }
-}
diff --git a/EOM.TSHotelManager.Core/Zero/Education.cs b/EOM.TSHotelManager.Core/Zero/Education.cs
deleted file mode 100644
index bade72facc2193cd78244bc4adbd36da4c83350f..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Zero/Education.cs
+++ /dev/null
@@ -1,53 +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.
- *
- *模块说明:学历类
- */
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 学历
- ///
- [SqlSugar.SugarTable("education")]
- public class Education : BaseDTO
- {
- ///
- /// 学历编号
- ///
- public string education_no { get; set; }
- ///
- /// 学历名称
- ///
- public string education_name { get; set; }
- ///
- /// 删除标记
- ///
- public int? delete_mk { get; set; }
-
- }
-}
diff --git a/EOM.TSHotelManager.Core/Zero/Module.cs b/EOM.TSHotelManager.Core/Zero/Module.cs
deleted file mode 100644
index 5e7e8f123107ec03fadb47e979c4cac96093cd6d..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Zero/Module.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 模块实体
- ///
- [SqlSugar.SugarTable("module")]
- public class Module : BaseDTO
- {
- ///
- /// 模块ID
- ///
- public int module_id { get; set; }
-
- ///
- /// 模块名称
- ///
- public string module_name { get; set; }
-
- ///
- /// 模块描述
- ///
- public string module_desc { get; set; }
-
- ///
- /// 删除标记
- ///
- public int delete_mk { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Zero/ModuleConsts.cs b/EOM.TSHotelManager.Core/Zero/ModuleConsts.cs
deleted file mode 100644
index b4834430ba60a023ba0620a12492a98ecf7950bb..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Zero/ModuleConsts.cs
+++ /dev/null
@@ -1,79 +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.
- *
- *模块说明:系统模块常量类
- */
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 系统模块常量类
- ///
- public class ModuleConsts
- {
- ///
- /// 基础信息
- ///
- public const string BaseInfo = "BaseInfo";
- ///
- /// 财务信息
- ///
- public const string CashInfo = "CashInfo";
- ///
- /// 水电管理
- ///
- public const string WtiInfo = "WtiInfo";
- ///
- /// 监管统计
- ///
- public const string CheckInfo = "CheckInfo";
- ///
- /// 客房管理
- ///
- public const string RoomManager = "RoomManager";
- ///
- /// 客户管理
- ///
- public const string CustomerManager = "CustomerManager";
- ///
- /// 人事管理
- ///
- public const string HumanResourcesManager = "HumanResourcesManager";
- ///
- /// 物资管理
- ///
- public const string MaterialManager = "MaterialManager";
- ///
- /// 员工操作日志
- ///
- public const string OperationLogManager = "OperationLogManager";
- ///
- /// 系统管理
- ///
- public const string AdminManager = "AdminManager";
- }
-}
diff --git a/EOM.TSHotelManager.Core/Zero/ModuleZero.cs b/EOM.TSHotelManager.Core/Zero/ModuleZero.cs
deleted file mode 100644
index 00a7f5692e7837e36835bfdd57069aaf422ed793..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Zero/ModuleZero.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
-
- ///
- /// 模块权限表
- ///
- [SqlSugar.SugarTable("module_zero")]
- public class ModuleZero
- {
- ///
- /// 模块ID
- ///
- [SqlSugar.SugarColumn(IsIdentity = true,ColumnName = "module_id")]
- public int module_id { get; set; }
- ///
- /// 管理员账号
- ///
- [SqlSugar.SugarColumn(ColumnName = "admin_account")]
- public string admin_account { get; set; }
- ///
- /// 模块名称
- ///
- [SqlSugar.SugarColumn(ColumnName = "module_name")]
- public string module_name { get; set; }
- ///
- /// 是否开启
- ///
- [SqlSugar.SugarColumn(ColumnName = "module_enable")]
- public int module_enable { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Zero/Nation.cs b/EOM.TSHotelManager.Core/Zero/Nation.cs
deleted file mode 100644
index dcc83546033b1f2209b2be8099aecc7ff550b039..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Zero/Nation.cs
+++ /dev/null
@@ -1,53 +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.
- *
- *模块说明:民族类
- */
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 民族
- ///
- [SqlSugar.SugarTable("nation")]
- public class Nation : BaseDTO
- {
- ///
- /// 民族编号
- ///
- public string nation_no { get; set; }
- ///
- /// 民族名称
- ///
- public string nation_name { get; set; }
- ///
- /// 删除标记
- ///
- public int? delete_mk { get; set; }
-
- }
-}
diff --git a/EOM.TSHotelManager.Core/Zero/Notice.cs b/EOM.TSHotelManager.Core/Zero/Notice.cs
deleted file mode 100644
index 4937dd6d258aca142ef2ebeddc162b6fb82bb198..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Zero/Notice.cs
+++ /dev/null
@@ -1,77 +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.
- *
- *模块说明:任命公告类
- */
-using System;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 任命公告
- ///
- [SqlSugar.SugarTable("uploadinfo")]
- public class Notice : BaseDTO
- {
- ///
- /// 公告编号
- ///
- [SqlSugar.SugarColumn(ColumnName = "NoticeNo")]
- public string NoticeNo { get; set; }
- ///
- /// 公告主题
- ///
- [SqlSugar.SugarColumn(ColumnName = "Noticetheme")]
- public string Noticetheme { get; set; }
- ///
- /// 公告类型
- ///
- [SqlSugar.SugarColumn(ColumnName = "NoticeType")]
- public string NoticeType { get; set; }
- ///
- /// 公告类型(描述)
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string NoticeTypeName { get; set; }
- ///
- /// 公告时间
- ///
- [SqlSugar.SugarColumn(ColumnName = "NoticeTime")]
- public DateTime NoticeTime { get; set; }
- ///
- /// 公告正文
- ///
- [SqlSugar.SugarColumn(ColumnName = "NoticeContent")]
- public string NoticeContent { get; set; }
- ///
- /// 发文部门
- ///
- [SqlSugar.SugarColumn(ColumnName = "NoticeClub")]
- public string NoticeClub { get; set; }
- ///
- /// 删除标记
- ///
- [SqlSugar.SugarColumn(ColumnName = "delete_mk")]
- public int delete_mk { get; set; }
-
- }
-}
diff --git a/EOM.TSHotelManager.Core/Zero/VipRule.cs b/EOM.TSHotelManager.Core/Zero/VipRule.cs
deleted file mode 100644
index 29b4f9b5fa0468dbbc773474bedc8f136ce86c0f..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Zero/VipRule.cs
+++ /dev/null
@@ -1,75 +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.
- *
- *模块说明:会员等级规则类
- */
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 会员等级规则类
- ///
- [SqlSugar.SugarTable("vip_rule")]
- public class VipRule : BaseDTO
- {
- ///
- /// 索引ID
- ///
- public int id { get; set; }
-
- ///
- /// 会员规则流水号
- ///
- public string rule_id { get; set; }
-
- ///
- /// 会员规则名称
- ///
- public string rule_name { get; set; }
-
- ///
- /// 预设数值(历史消费总额)
- ///
- public decimal rule_value { get; set; }
-
- ///
- /// 会员等级
- ///
- public int type_id { get; set; }
-
- ///
- /// 删除标识
- ///
- public int delete_mk { get; set; }
-
- ///
- /// 会员等级描述
- ///
- [SqlSugar.SugarColumn(IsIgnore = true)]
- public string type_name { get; set; }
- }
-}
diff --git a/EOM.TSHotelManager.Core/Zero/position.cs b/EOM.TSHotelManager.Core/Zero/position.cs
deleted file mode 100644
index ed04ad3b98916f9e060aaae6d3ad6e18c0a49960..0000000000000000000000000000000000000000
--- a/EOM.TSHotelManager.Core/Zero/position.cs
+++ /dev/null
@@ -1,53 +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.
- *
- *模块说明:职务类
- */
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace EOM.TSHotelManager.Core
-{
- ///
- /// 职位
- ///
- [SqlSugar.SugarTable("position")]
- public class Position : BaseDTO
- {
- ///
- /// 职位编号
- ///
- public string position_no { get; set; }
- ///
- /// 职位名称
- ///
- public string position_name { get; set; }
- ///
- /// 删除标记
- ///
- public int? delete_mk { get; set; }
-
- }
-}
diff --git a/EOM.TSHotelManager.EntityFramework/EOM.TSHotelManager.EntityFramework.csproj b/EOM.TSHotelManager.EntityFramework/EOM.TSHotelManager.EntityFramework.csproj
index 8a8dac13ff069d6e18b43863f2f98fee3a70c80a..4dcc7d4e39a2f64cc36f082f628fb4c2befb59f0 100644
--- a/EOM.TSHotelManager.EntityFramework/EOM.TSHotelManager.EntityFramework.csproj
+++ b/EOM.TSHotelManager.EntityFramework/EOM.TSHotelManager.EntityFramework.csproj
@@ -12,8 +12,4 @@
-
-
-
-
diff --git a/EOM.TSHotelManager.Web.sln b/EOM.TSHotelManager.Web.sln
index f60bbefcce5c6699738bc866a53da93838ed2304..ad60089f602598d19a91eb27c261218974bc9e8a 100644
--- a/EOM.TSHotelManager.Web.sln
+++ b/EOM.TSHotelManager.Web.sln
@@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32922.545
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManager.Core", "EOM.TSHotelManager.Core\EOM.TSHotelManager.Core.csproj", "{FDC49899-865F-4DBB-AF9C-576D8BF68897}"
-EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManager.EntityFramework", "EOM.TSHotelManager.EntityFramework\EOM.TSHotelManager.EntityFramework.csproj", "{B0415048-E431-4FCF-9CF7-C1345C6F7750}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManager.Application", "EOM.TSHotelManager.Application\EOM.TSHotelManager.Application.csproj", "{FE75A00A-4B07-49CE-8F17-F483044A569A}"
@@ -13,7 +11,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManager.WebApi",
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Library", "Library\Library.csproj", "{F27A7D1A-6468-4689-8B83-53CE3B7B0E17}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EOM.TSHotelManager.Common.Core", "EOM.TSHotelManager.Common.Core\EOM.TSHotelManager.Common.Core.csproj", "{D99F4527-C620-4073-92B1-254A6C7FA363}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EOM.TSHotelManager.Common.Core", "EOM.TSHotelManager.Common.Core\EOM.TSHotelManager.Common.Core.csproj", "{D99F4527-C620-4073-92B1-254A6C7FA363}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -21,10 +19,6 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {FDC49899-865F-4DBB-AF9C-576D8BF68897}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {FDC49899-865F-4DBB-AF9C-576D8BF68897}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {FDC49899-865F-4DBB-AF9C-576D8BF68897}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {FDC49899-865F-4DBB-AF9C-576D8BF68897}.Release|Any CPU.Build.0 = Release|Any CPU
{B0415048-E431-4FCF-9CF7-C1345C6F7750}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B0415048-E431-4FCF-9CF7-C1345C6F7750}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B0415048-E431-4FCF-9CF7-C1345C6F7750}.Release|Any CPU.ActiveCfg = Release|Any CPU
diff --git a/EOM.TSHotelManager.WebApi/EOM.TSHotelManager.WebApi.csproj b/EOM.TSHotelManager.WebApi/EOM.TSHotelManager.WebApi.csproj
index 1c65e581e5670b36cb49eaf7ae2e64545a9bf3e9..11d58756212aaa20236b2037c08a66ff201caa26 100644
--- a/EOM.TSHotelManager.WebApi/EOM.TSHotelManager.WebApi.csproj
+++ b/EOM.TSHotelManager.WebApi/EOM.TSHotelManager.WebApi.csproj
@@ -29,7 +29,7 @@
-
+