lixiaojun
2024-07-18 644a8b70b8ca49f6dc08d922ff18bf7509af9b07
Service/HStation.Service.Xhs.Core/04-dal/01-interface/IXhsProject.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,36 @@
using 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);
    }
}