namespace Yw.DAL
{
///
///
///
public interface IBimfaceFileRelation : IBaseDAL, IUpdateSorter
{
///
/// 插入拓展
///
long InsertEx(Entity.BimfaceFileRelation entity, List entityLabelList);
///
/// 更新 Purpose
///
bool UpdatePurpose(long ID, string Purpose);
///
/// 更新 Content
///
bool UpdateContent(long ID, string Content);
///
/// 通过 ID 删除(同时删除标签)
///
bool DeleteExByID(long ID);
}
}