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
27
28
namespace Yw.DAL
{
    /// <summary>
    /// 
    /// </summary>
    public interface IBimfaceFileRelation : IBaseDAL<Entity.BimfaceFileRelation>, IUpdateSorter
    {
 
 
        /// <summary>
        /// 更新 Purpose
        /// </summary>
        bool UpdatePurpose(long ID, string Purpose);
 
        /// <summary>
        /// 更新 Content
        /// </summary>
        bool UpdateContent(long ID, string Content);
 
        /// <summary>
        /// 通过 ID 删除(同时删除标签)
        /// </summary>
        bool DeleteExByID(long ID);
 
 
 
    }
}