예제 #1
0
 public static void DeleteClientBatch(IEnumerable <int> sysNos)
 {
     if (sysNos == null || sysNos.Count() == 0)
     {
         throw new BusinessException("请传入要批量删除的数据编号");
     }
     ClientDA.DeleteClientBatch(sysNos);
 }