using Yw.DAL;
namespace HStation.DAL
{
///
///
///
public interface IXhsProject : IBaseDAL, IUpdateParas, IUpdateFlags, IUpdateTagName, IUpdateTreeSorter
{
///
/// 插入拓展
///
long InsertEx(Entity.XhsProject entityProject, List entityProjectSiteList);
///
/// 编辑拓展
///
bool UpdateEx(Entity.XhsProject entityProject, List entityProjectSiteList);
///
/// 更新开始时间
///
bool UpdateStartTime(long ID, DateTime StartTime);
///
/// 更新结束时间
///
bool UpdateEndTime(long ID, DateTime EndTime);
///
/// 通过 ID 删除拓展
///
bool DeleteExByID(long ID);
}
}