namespace WX.CRM.Model.EntitySync { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("WSKUSER.SYNC_GENERATE")] public partial class SYNC_GENERATE { [Key] public decimal PKID { get; set; } [StringLength(100)] public string BIDATATYPE { get; set; } public decimal? PICI { get; set; } public DateTime? CTIME { get; set; } [StringLength(100)] public string DEPTCODE { get; set; } } }