平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
285 B

  1. //
  2. namespace SafeCampus.System;
  3. /// <summary>
  4. /// 批量导入结果输入
  5. /// </summary>
  6. /// <typeparam name="T"></typeparam>
  7. public class ImportResultInput<T> where T : class
  8. {
  9. /// <summary>
  10. /// 数据
  11. /// </summary>
  12. public List<T> Data { get; set; }
  13. }