using System; using System.Collections.Generic; using System.Reflection; using System.Text; namespace JiShe.CollectBus.Analyzers.Shared { public interface ISourceEntityAccessor { /// /// 实体类名称 /// string EntityName { get; } /// /// 获取属性值 /// /// /// /// object GetPropertyValue(T entity, string propertyName); /// /// 设置属性值 /// /// /// /// void SetPropertyValue(T entity, string propertyName, object value); /// /// 属性名称集合 /// List PropertyNameList { get; } /// /// 属性信息集合 /// List MemberList { get; } } }