| 123456789101112131415161718192021222324252627282930313233343536 |
- namespace molilian.core
- {
- public class DyDataDTO
- {
- public TkChannelEnum channel { get; set; }
- public LinkTypeEnum link_type { get; set; }
- public ChannelTypeEnum channel_type { get; set; } = ChannelTypeEnum.none;
- public string title { get; set; } = string.Empty;
- public int accountId { get; set; } = 0;
- public string accountName { get; set; } = string.Empty;
- public bool success { get; set; } = true;
- public bool commercial { get; set; } = false;
- public string message { get; set; } = string.Empty;
- public string reason { get; set; } = string.Empty;
- public string content { get; set; } = string.Empty;
- public string taoToken { get; set; } = string.Empty;
- public string rawContent { get; set; } = string.Empty;
- public string ip { get; set; } = string.Empty;
- public string oaid { get; set; } = string.Empty;
- public string itemId { get; set; } = string.Empty;
- public string itemName { get; set; } = string.Empty;
- public decimal couponAmount { get; set; } = 0;
- public decimal promotionPrice { get; set; } = 0;
- public string pic { get; set; } = string.Empty;
- public string shortLinkurl { get; set; } = string.Empty;
- public string deeplink_url { get; set; } = string.Empty;
- public int elapsedTime { get; set; } = 0;
- public int elapsedTime2 { get; set; } = 0;
- public int elapsedTime3 { get; set; } = 0;
- public DateTime create_time { get; set; } = DateTime.Now;
- public string end_point { get; set; } = string.Empty;
- public int subCode { get; set; } = 0;
- }
- }
|