using ProtoBuf; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Server.Configs { [ProtoContract] public class TaobaoUpdateCacheInfo { public TaobaoUpdateCacheInfo() { this.UpdateTime1 = DateTime.Now.AddMonths(-3); this.UpdateTime3 = DateTime.Now.AddMonths(-3); } /// /// 常规订单更新时间 /// [global::ProtoBuf.ProtoMember(1)] public DateTime UpdateTime1 { get; set; } /// /// 渠道订单更新时间 /// [global::ProtoBuf.ProtoMember(2)] public DateTime UpdateTime2 { get; set; } /// /// 会员运营ID更新时间 /// [global::ProtoBuf.ProtoMember(3)] public DateTime UpdateTime3 { get; set; } /// /// 渠道退款时间更新时间 /// [global::ProtoBuf.ProtoMember(4)] public DateTime UpdateTime4 { get; set; } /// /// 会员运营更新时间 /// [global::ProtoBuf.ProtoMember(5)] public DateTime UpdateTime5 { get; set; } /// /// 更新处罚订单时间 /// [global::ProtoBuf.ProtoMember(6)] public DateTime UpdateTime6 { get; set;} /// /// 最后一次更新时间 /// [global::ProtoBuf.ProtoMember(7)] public DateTime UpdateTimer7 { get; set; } [global::ProtoBuf.ProtoMember(8)] public int LianmengId { get; set; } } }