lixiaojun
2024-07-19 2415c4eedaa96532ffc7eb1c7e5d018106115bf4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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);
 
    }
}