AlimamaWarningDTO.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  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 int filterRuleId { get; set; }
  8. public long gmtCreate { get; set; }
  9. public long ali_id { get; set; }
  10. public string idStr { get; set; } = string.Empty;
  11. public int mediaDimension { get; set; }
  12. public long mediaId { get; set; }
  13. public string abn_cnt { get; set; } = string.Empty;
  14. public int violation_commission { get; set; }
  15. public string warning_cnt { get; set; } = string.Empty;
  16. public string mediaName { get; set; } = string.Empty;
  17. public long memberId { get; set; }
  18. public string noticeCategory { get; set; } = string.Empty;
  19. public int noticeTemplateId { get; set; }
  20. public string noticeTemplateName { get; set; } = string.Empty;
  21. public string orderFile { get; set; } = string.Empty;
  22. public string pid { get; set; } = string.Empty;
  23. public int punishRuleId { get; set; }
  24. public string riskType { get; set; } = string.Empty;
  25. public string roleName { get; set; } = string.Empty;
  26. public string ruleLink { get; set; } = string.Empty;
  27. public bool showOrderDetail { get; set; }
  28. public int ali_status { get; set; }
  29. public int status { get; set; }
  30. public string warningText { get; set; } = string.Empty;
  31. public DateTime create_time { get; set; } = DateTime.Now;
  32. public DateTime last_time { get; set; } = DateTime.Now;
  33. }
  34. }