ResultEntity.cs 741 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ivf_tl_Entity.Entity.Result
  7. {
  8. public class ResultEntity<T>
  9. {
  10. public string code { get; set; }
  11. public object extend { get; set; }
  12. public T data { get; set; }
  13. public string message { get; set; }
  14. public bool success { get; set; }
  15. public string traceId { get; set; }
  16. }
  17. public class ResultEntity
  18. {
  19. public string code { get; set; }
  20. public object extend { get; set; }
  21. public string message { get; set; }
  22. public bool success { get; set; }
  23. public string traceId { get; set; }
  24. }
  25. }