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 ExpressZT_OrderRoute { [Key] public long ZTOrderRoute_Id { get; set; } public long ZTOrder_Id { get; set; } [StringLength(500)] public string status { get; set; } [StringLength(500)] public string msg { get; set; } [StringLength(500)] public string billCode { get; set; } [StringLength(500)] public string RouteDesc { get; set; } [StringLength(500)] public string dispOrRecMan { get; set; } [StringLength(500)] public string dispOrRecManCode { get; set; } [StringLength(500)] public string dispOrRecManPhone { get; set; } [StringLength(500)] public string preOrNextSite { get; set; } [StringLength(500)] public string preOrNextSiteCode { get; set; } [StringLength(500)] public string preOrNextSitePhone { get; set; } [StringLength(500)] public string Remark { get; set; } [StringLength(500)] public string scanDate { get; set; } [StringLength(500)] public string scanSite { get; set; } [StringLength(500)] public string scanSiteCode { get; set; } [StringLength(500)] public string scanSitePhone { get; set; } [StringLength(500)] public string scanType { get; set; } [StringLength(500)] public string signMan { 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; } [StringLength(500)] public string mailNo { get; set; } public int? PlatUser_Id { get; set; } [StringLength(50)] public string PlatUserCode { get; set; } [StringLength(50)] public string PlatUserName { get; set; } [StringLength(50)] public string PlatCorpName { get; set; } public int? UserProduct_Id { get; set; } [StringLength(50)] public string UserProductCode { get; set; } [StringLength(100)] public string UserProductAlias { get; set; } public string ExpandFields { get; set; } public virtual ExpressZT_Order ExpressZT_Order { get; set; } } }