| 1234567891011121314151617181920212223242526272829303132333435 |
- namespace molilian.core
- {
- public class AlimamaWarningDTO
- {
- public int id { get; set; }
- public string accountName { get; set; } = string.Empty;
- public int filterRuleId { get; set; }
- public long gmtCreate { get; set; }
- public long ali_id { get; set; }
- public string idStr { get; set; } = string.Empty;
- public int mediaDimension { get; set; }
- public long mediaId { get; set; }
- public string abn_cnt { get; set; } = string.Empty;
- public int violation_commission { get; set; }
- public string warning_cnt { get; set; } = string.Empty;
- public string mediaName { get; set; } = string.Empty;
- public long memberId { get; set; }
- public string noticeCategory { get; set; } = string.Empty;
- public int noticeTemplateId { get; set; }
- public string noticeTemplateName { get; set; } = string.Empty;
- public string orderFile { get; set; } = string.Empty;
- public string pid { get; set; } = string.Empty;
- public int punishRuleId { get; set; }
- public string riskType { get; set; } = string.Empty;
- public string roleName { get; set; } = string.Empty;
- public string ruleLink { get; set; } = string.Empty;
- public bool showOrderDetail { get; set; }
- public int ali_status { get; set; }
- public int status { get; set; }
- public string warningText { get; set; } = string.Empty;
- public DateTime create_time { get; set; } = DateTime.Now;
- public DateTime last_time { get; set; } = DateTime.Now;
- }
- }
|