AlimamaWarningDTO.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. namespace molilian.core
  2. {
  3. public class AlimamaWarningDTO
  4. {
  5. public int id { get; set; }
  6. public string accountName { get; set; } = string.Empty;
  7. public string proxy_node { get; set; } = string.Empty;
  8. public int filterRuleId { get; set; }
  9. public long gmtCreate { get; set; }
  10. public long ali_id { get; set; }
  11. public string idStr { get; set; } = string.Empty;
  12. public int mediaDimension { get; set; }
  13. public long mediaId { get; set; }
  14. public string abn_cnt { get; set; } = string.Empty;
  15. public int violation_commission { get; set; }
  16. public string warning_cnt { get; set; } = string.Empty;
  17. public string mediaName { get; set; } = string.Empty;
  18. public long memberId { get; set; }
  19. public string noticeCategory { get; set; } = string.Empty;
  20. public int noticeTemplateId { get; set; }
  21. public string noticeTemplateName { get; set; } = string.Empty;
  22. public string orderFile { get; set; } = string.Empty;
  23. public string pid { get; set; } = string.Empty;
  24. public int punishRuleId { get; set; }
  25. public string riskType { get; set; } = string.Empty;
  26. public string roleName { get; set; } = string.Empty;
  27. public string ruleLink { get; set; } = string.Empty;
  28. public bool showOrderDetail { get; set; }
  29. public int ali_status { get; set; }
  30. public int status { get; set; }
  31. public string warningText { get; set; } = string.Empty;
  32. public DateTime create_time { get; set; } = DateTime.Now;
  33. public DateTime last_time { get; set; } = DateTime.Now;
  34. }
  35. }