namespace wcftest.orm { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class Sale_Return_StatusHistory { [Key] public long History_Id { get; set; } public long Return_Id { get; set; } [StringLength(50)] public string StatusType { get; set; } [StringLength(600)] public string OperationType { get; set; } public int? FromStatusID { get; set; } [StringLength(50)] public string FromStatus { get; set; } public int? ToStatusID { get; set; } [StringLength(50)] public string ToStatus { get; set; } public int? BillId { get; set; } [StringLength(50)] public string BillCode { get; set; } public int? CreateID { get; set; } [StringLength(50)] public string Creator { get; set; } public DateTime? CreateDate { get; set; } public int? ModifyID { get; set; } [StringLength(50)] public string Modifier { get; set; } public DateTime? ModifyDate { get; set; } public string ExpandFields { get; set; } } }