namespace WX.CRM.Model.EntitySync { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("WSKUSER.SYNC_SYSTEMSTATE")] public partial class SYNC_SYSTEMSTATE { [Key] [StringLength(50)] public string DEPTCODE { get; set; } public DateTime? LASTPINGTIME { get; set; } } }