31 lines
838 B
C#
Raw Normal View History

2025-04-29 10:02:10 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace JiShe.CollectBus.Analyzers.Shared
2025-04-29 10:02:10 +08:00
{
public interface ISourceEntityAccessor<T>
2025-04-29 10:02:10 +08:00
{
/// <summary>
/// 获取属性值
/// </summary>
/// <param name="entity"></param>
/// <param name="propertyName"></param>
/// <returns></returns>
object GetPropertyValue(T entity, string propertyName);
/// <summary>
/// 设置属性值
/// </summary>
/// <param name="entity"></param>
/// <param name="propertyName"></param>
/// <param name="value"></param>
void SetPropertyValue(T entity, string propertyName, object value);
/// <summary>
/// 属性名称集合
/// </summary>
List<string> PropertyList { get; }
2025-04-29 10:02:10 +08:00
}
}