xcanel
xcanel
``` using System; using System.Collections.Generic; using System.ComponentModel; using System.Reflection; using System.Text; namespace SEP.Common { /// /// 对象转换 /// public class ModelMapHelper { /// /// 合并数据 把origin的数据合并到obj中 /// /// 原类型 ///...
IBaseRepository接口: ``` //使用其他Model的方法 Task Query(); Task Query(Expression whereExpression); Task QueryById(object objId); Task Add(T model) where T : class, new(); Task Add(List listEntity) where T : class, new(); Task Update(T model)...