using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LeaRun.Application.Entity.InstallManage { public class InstallDudgetEntity { public int Dudget_ID {get;set;} public int Apply_ID {get;set;} public int Depot_ID {get;set;} public String name { get; set; } public String Version {get;set;} public String Type {get;set;} public int MoneyType {get;set;} public String unit {get;set;} public int number {get;set;} public decimal price {get;set;} public DateTime Creater {get;set;} public DateTime CreateDt {get;set;} public decimal PaymentMoney {get;set;} public decimal LabourCost {get;set;} public int VerifyType {get;set;} public String VerfiyName {get;set;} public String InvoiceCode {get;set;} public String PaymentName {get;set;} public DateTime PaymentTime {get;set;} public int PrintType {get;set;} } }