ningshuxia
昨天 71c12ff40d58c3dbdde6867396dd99224e57fc32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
 
 
    }
}