namespace wcftest.orm { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("SapSendInfo")] public partial class SapSendInfo { public int id { get; set; } [Required] public string SendSapData { get; set; } public int moveType { get; set; } public int? sendCount { get; set; } public DateTime? creatTime { get; set; } public DateTime? modifyTime { get; set; } public int? isFinish { get; set; } [StringLength(100)] public string voucherCode { get; set; } [StringLength(500)] public string Batch { get; set; } [StringLength(100)] public string FromStorageLocation { get; set; } [StringLength(500)] public string MaterialCode { get; set; } [StringLength(500)] public string Plant { get; set; } public decimal? Quantity { get; set; } [StringLength(500)] public string SType { get; set; } [StringLength(500)] public string SalesOrder { get; set; } [StringLength(500)] public string SalesOrderItem { get; set; } [StringLength(500)] public string SerialNo { get; set; } [StringLength(100)] public string ToStorageLocation { get; set; } [StringLength(100)] public string Unit { get; set; } [StringLength(500)] public string Vendor { get; set; } [StringLength(500)] public string WorkOrder { get; set; } [StringLength(100)] public string StorageLocation { get; set; } [StringLength(500)] public string MaterialName { get; set; } public string Remark { get; set; } public string RetResult { get; set; } public string RetMsg { get; set; } } }