namespace Yw.DAL { /// /// /// public interface IBimfaceFile : IBaseDAL, IUpdateParas, IUpdateFlags, IUpdateTagName, IUpdateSorter { /// /// 更新 FileStatus /// bool UpdateFileStatus(long ID, int FileStatus); /// /// 更新 Content /// bool UpdateContent(long ID, string Content); /// /// 通过 ID 删除(同时删除标签) /// bool DeleteExByID(long ID); } }