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 Base_StorageLease { [Key] public int StorageLease_Id { get; set; } [StringLength(50)] public string LeaseCode { get; set; } [StringLength(50)] public string LeaseName { get; set; } [StringLength(50)] public string LeaseType { get; set; } public int? Storage_Id { get; set; } [StringLength(50)] public string StorageName { get; set; } [StringLength(50)] public string PositionName { get; set; } [StringLength(50)] public string Shelves { get; set; } public int? Consignor_Id { get; set; } [StringLength(50)] public string ConsignorCode { get; set; } [StringLength(50)] public string ConsignorName { get; set; } [StringLength(50)] public string PayState { get; set; } public int? IsInvalid { get; set; } public DateTime? StartDate { get; set; } public DateTime? EndDate { get; set; } public decimal? UnitPrice { get; set; } public decimal? TotalPrice { get; set; } public decimal? PaidPrice { get; set; } public string Remark { 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 byte? Enable { get; set; } public int? PlatUser_Id { get; set; } public int? UserProduct_Id { get; set; } public string ExpandFields { get; set; } } }