AiOpenRiskDailyDTO.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. namespace molilian.core
  2. {
  3. public class AiOpenRiskDailyDTO
  4. {
  5. public long id { get; set; }
  6. public DateTime report_date { get; set; }
  7. public int account_id { get; set; }
  8. public string account_name { get; set; } = string.Empty;
  9. public int endpoint_id { get; set; }
  10. public string endpoint_name { get; set; } = string.Empty;
  11. public string reason_code { get; set; } = string.Empty;
  12. public string reason { get; set; } = string.Empty;
  13. public int biz_error_code { get; set; }
  14. public int result_code { get; set; }
  15. public DateTime first_trigger_time { get; set; }
  16. public int request_count_at_trigger { get; set; }
  17. public int success_count_at_trigger { get; set; }
  18. public DateTime release_time { get; set; }
  19. public DateTime create_time { get; set; }
  20. }
  21. public class AiOpenRiskStatusDTO
  22. {
  23. public bool applicable { get; set; }
  24. public bool triggered { get; set; }
  25. public string reason_code { get; set; } = string.Empty;
  26. public string reason { get; set; } = string.Empty;
  27. public DateTime? first_trigger_time { get; set; }
  28. public int request_count_at_trigger { get; set; }
  29. public int success_count_at_trigger { get; set; }
  30. public DateTime? release_time { get; set; }
  31. }
  32. }