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