26 lines
549 B
C#
26 lines
549 B
C#
|
using ProtoBuf;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Server.MyClass.Caches
|
|||
|
{
|
|||
|
|
|||
|
[ProtoContract]
|
|||
|
public class JDUpdateOrderItemCache
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// ID
|
|||
|
/// </summary>
|
|||
|
[global::ProtoBuf.ProtoMember(1)]
|
|||
|
public string Id { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 上次时间
|
|||
|
/// </summary>
|
|||
|
[global::ProtoBuf.ProtoMember(2)]
|
|||
|
public DateTime LastDateTime { get; set; }
|
|||
|
}
|
|||
|
}
|