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 { /// /// ID /// [global::ProtoBuf.ProtoMember(1)] public string Id { get; set; } /// /// 上次时间 /// [global::ProtoBuf.ProtoMember(2)] public DateTime LastDateTime { get; set; } } }