using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_DTO.PLS { /// /// PLS通用实体头 /// public class PLSBaseModel { /// /// 时间戳 /// public long TimeStamp { get; set; } /// /// 签名 /// public string Sign { get; set; } /// /// 数据对象 /// public T Data { get; set; } } }