namespace Yw.CAL
{
///
/// 标签
///
public interface IBimfaceFileRelation : IBaseCAL, IUpdateSorter
{
///
/// 通过 ObjectType 和 ObjectID 获取
///
Task> GetByObjectTypeAndObjectID(string ObjectType, long ObjectID);
///
///
///
Task InsertObject(AddBimfaceFileRelationInput input);
///
///
///
Task InsertPage(AddBimfaceFileRelationInput input);
///
///
///
Task UpdatePurpose(long ID, string Purpose);
///
///
///
Task UpdateContent(long ID, string Content);
///
///
///
Task IsExistByBimfaceFileID(long BimfaceFileID);
///
///
///
Task DeleteExByID(long ID);
}
}