private static IEnumerable<PropertyInfo> GetPropertyInfos(IReflect type)
{
return type.GetProperties(BindingFlags.Public | BindingFlags.Instance);
}
private static void AutoMapping<S, T>(S s, T t)
{
var pps = GetPropertyInfos(s.GetType());
var target = t.GetType();
foreach (var pp in pps)
{
var targetPP = target.GetProperty(pp.Name);
var value = pp.GetValue(s, null);
if (targetPP == null || value == null) continue;
targetPP.SetValue(t, pp.PropertyType == typeof (string) ? value.ToString().Trim() : value, null);
}
}
去掉实体类string所有空格
最新推荐文章于 2024-02-07 10:58:49 发布