| 1234567891011121314151617181920212223242526272829303132333435 |
- namespace molilian.core
- {
- public class KsDataDTO
- {
- public TkChannelEnum channel { get; set; }
- public LinkTypeEnum link_type { get; set; }
- public int accountId { get; set; } = 0;
- public string accountName { get; set; } = string.Empty;
- public bool success { get; set; } = true;
- 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 rawContent2 { 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;
- }
- }
|