From 644a8b70b8ca49f6dc08d922ff18bf7509af9b07 Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期四, 18 七月 2024 17:04:32 +0800 Subject: [PATCH] BLL更改 --- Service/HStation.Service.Xhs.Core/04-dal/01-interface/IXhsProject.cs | 36 ++++++++++++++++++++++++++++++++++++ 1 files changed, 36 insertions(+), 0 deletions(-) diff --git a/Service/HStation.Service.Xhs.Core/04-dal/01-interface/IXhsProject.cs b/Service/HStation.Service.Xhs.Core/04-dal/01-interface/IXhsProject.cs new file mode 100644 index 0000000..be46394 --- /dev/null +++ b/Service/HStation.Service.Xhs.Core/04-dal/01-interface/IXhsProject.cs @@ -0,0 +1,36 @@ +锘縰sing Yw.DAL; + +namespace HStation.DAL +{ + /// <summary> + /// + /// </summary> + public interface IXhsProject : IBaseDAL<Entity.XhsProject>, IUpdateParas, IUpdateFlags, IUpdateTagName, IUpdateTreeSorter + { + /// <summary> + /// 鎻掑叆鎷撳睍 + /// </summary> + long InsertEx(Entity.XhsProject entityProject, List<Entity.XhsProjectSite> entityProjectSiteList); + + /// <summary> + /// 缂栬緫鎷撳睍 + /// </summary> + bool UpdateEx(Entity.XhsProject entityProject, List<Entity.XhsProjectSite> entityProjectSiteList); + + /// <summary> + /// 鏇存柊寮�濮嬫椂闂� + /// </summary> + bool UpdateStartTime(long ID, DateTime StartTime); + + /// <summary> + /// 鏇存柊缁撴潫鏃堕棿 + /// </summary> + bool UpdateEndTime(long ID, DateTime EndTime); + + /// <summary> + /// 閫氳繃 ID 鍒犻櫎鎷撳睍 + /// </summary> + bool DeleteExByID(long ID); + + } +} \ No newline at end of file -- Gitblit v1.9.3