平安校园
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.

ImportResultInput.cs 285 B

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