66 lines
1.7 KiB
C#
66 lines
1.7 KiB
C#
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);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 常规订单更新时间
|
|
/// </summary>
|
|
[global::ProtoBuf.ProtoMember(1)]
|
|
public DateTime UpdateTime1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 渠道订单更新时间
|
|
/// </summary>
|
|
[global::ProtoBuf.ProtoMember(2)]
|
|
public DateTime UpdateTime2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 会员运营ID更新时间
|
|
/// </summary>
|
|
[global::ProtoBuf.ProtoMember(3)]
|
|
public DateTime UpdateTime3 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 渠道退款时间更新时间
|
|
/// </summary>
|
|
[global::ProtoBuf.ProtoMember(4)]
|
|
public DateTime UpdateTime4 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 会员运营更新时间
|
|
/// </summary>
|
|
[global::ProtoBuf.ProtoMember(5)]
|
|
public DateTime UpdateTime5 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新处罚订单时间
|
|
/// </summary>
|
|
[global::ProtoBuf.ProtoMember(6)]
|
|
public DateTime UpdateTime6 { get; set;}
|
|
|
|
/// <summary>
|
|
/// 最后一次更新时间
|
|
/// </summary>
|
|
[global::ProtoBuf.ProtoMember(7)]
|
|
public DateTime UpdateTimer7 { get; set; }
|
|
|
|
|
|
[global::ProtoBuf.ProtoMember(8)]
|
|
public int LianmengId { get; set; }
|
|
}
|
|
}
|