示例#1
0
 /// <summary>
 /// 批量新增实体
 /// </summary>
 /// <param name="entitys"></param>
 /// <returns></returns>
 public int AddListEntity(List <T> entitys)
 {
     try
     {
         return(CurrentRepository.AddListEntity(entitys));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }