lixiaojun
2024-05-13 db6270616b6d1d3c640b8fc4ebc4b56d291578a0
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
namespace Yw.DAL
{
    /// <summary>
    /// 
    /// </summary>
    public interface IBimfaceFileRelationLabel : IBaseDAL<Entity.BimfaceFileRelationLabel>
    {
 
        /// <summary>
        /// 根据 RelationID 获取
        /// </summary>
        List<Entity.BimfaceFileRelationLabel> GetByRelationID(long RelationID);
 
        /// <summary>
        /// 更新 Content
        /// </summary>
        bool UpdateContent(long ID, string Content);
 
        /// <summary>
        /// 保存
        /// </summary>
        bool Save(long RelationID, List<Entity.BimfaceFileRelationLabel> entityList);
 
 
    }
}