using dodohold.core; namespace molilian.core { public class TkDataDTO { [Key] public int id { get; set; } public TkChannelEnum channel { get; set; } public LinkTypeEnum link_type { get; set; } public ChannelTypeEnum channel_type { get; set; } = ChannelTypeEnum.none; 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 rawContent { get; set; } = string.Empty; public string rawContent2 { 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 string ip { get; set; } = string.Empty; public string oaid { get; set; } = string.Empty; public string taoToken { get; set; } = string.Empty; public string num_iid { 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 sellerNickName { get; set; } = string.Empty; public string shopTitle { get; set; } = string.Empty; public string qrCodeUrl { get; set; } = string.Empty; public DateTime create_time { get; set; } = DateTime.Now; [IgnoreInsert, IgnoreUpdate] public string couponEffectiveStartTime { get; set; } = string.Empty; [IgnoreInsert, IgnoreUpdate] public string couponEffectiveEndTime { get; set; } = string.Empty; } }