namespace Yw.DAL { /// /// /// public interface IBimfaceFileRelationLabel : IBaseDAL { /// /// 根据 RelationID 获取 /// List GetByRelationID(long RelationID); /// /// 更新 Content /// bool UpdateContent(long ID, string Content); /// /// 保存 /// bool Save(long RelationID, List entityList); } }