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 Adjustment_Provider_BatchList { [Key] public long AdjustmentList_Id { get; set; } public long Adjustment_Id { get; set; } public int? Provider_Id { get; set; } [StringLength(50)] public string ProviderCode { get; set; } [StringLength(50)] public string ProviderShortName { get; set; } [Column(TypeName = "money")] public decimal? AdjustMoney { get; set; } public string Remark { get; set; } public string ExpandFields { get; set; } public virtual Adjustment_Provider_Batch Adjustment_Provider_Batch { get; set; } } }