using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { public class WBSSetItem { private string id; /// /// 主键 /// public string Id { get { return id; } set { id = value; } } private string wbsDetailId; /// /// WBSDetail主键 /// public string WbsDetailId { get { return wbsDetailId; } set { wbsDetailId = value; } } private string code; /// /// 编码 /// public string Code { get { return code; } set { code = value; } } private string name; /// /// 名称 /// public string Name { get { return name; } set { name = value; } } private string childCode; /// /// 子级编码 /// public string ChildCode { get { return childCode; } set { childCode = value; } } private string childName; /// /// 子级名称 /// public string ChildName { get { return childName; } set { childName = value; } } private string type; /// /// 类别 /// public string Type { get { return type; } set { type = value; } } private DateTime? startDate; /// /// 开始日期 /// public DateTime? StartDate { get { return startDate; } set { startDate = value; } } private DateTime? endDate; /// /// 结束日期 /// public DateTime? EndDate { get { return endDate; } set { endDate = value; } } private string controlPoint; /// /// 等级 /// public string ControlPoint { get { return controlPoint; } set { controlPoint = value; } } private string cycle; /// /// 周期 /// public string Cycle { get { return cycle; } set { cycle = value; } } private string frequency; /// /// 频次 /// public string Frequency { get { return frequency; } set { frequency = value; } } private string controlItemDef; /// /// 内容 /// public string ControlItemDef { get { return controlItemDef; } set { controlItemDef = value; } } private decimal? weights; /// /// 权重 /// public decimal? Weights { get { return weights; } set { weights = value; } } private decimal? weightsMoney; /// /// 权重金额(万元) /// public decimal? WeightsMoney { get { return weightsMoney; } set { weightsMoney = value; } } private string weightsMoneyStr; /// /// 权重金额(万元)(保留2位小数) /// public string WeightsMoneyStr { get { return weightsMoneyStr; } set { weightsMoneyStr = value; } } private decimal? weightsMoneys; /// /// 权重金额(万元) /// public decimal? WeightsMoneys { get { return weightsMoneys; } set { weightsMoneys = value; } } private decimal? completeValue; /// /// 完成值 /// public decimal? CompleteValue { get { return completeValue; } set { completeValue = value; } } private decimal? completeValueTotal; /// /// 累计完成值 /// public decimal? CompleteValueTotal { get { return completeValueTotal; } set { completeValueTotal = value; } } private decimal? completeValueTotalPart; /// /// 累计完成值(不包含当月值) /// public decimal? CompleteValueTotalPart { get { return completeValueTotalPart; } set { completeValueTotalPart = value; } } private decimal? completeValueRate; /// /// 当月完成值占比 /// public decimal? CompleteValueRate { get { return completeValueRate; } set { completeValueRate = value; } } private decimal? completeValueRateTotal; /// /// 累计完成值占比 /// public decimal? CompleteValueRateTotal { get { return completeValueRateTotal; } set { completeValueRateTotal = value; } } private decimal? realValue; /// /// 实耗值 /// public decimal? RealValue { get { return realValue; } set { realValue = value; } } private decimal? realValueTotal; /// /// 累计实耗值 /// public decimal? RealValueTotal { get { return realValueTotal; } set { realValueTotal = value; } } private decimal? realValueTotalPart; /// /// 累计实耗值(不包含当月值) /// public decimal? RealValueTotalPart { get { return realValueTotalPart; } set { realValueTotalPart = value; } } private decimal? sVValue; /// /// 赢得值进度SV /// public decimal? SVValue { get { return sVValue; } set { sVValue = value; } } private decimal? cVValue; /// /// 赢得值费用CV /// public decimal? CVValue { get { return cVValue; } set { cVValue = value; } } private decimal? planValue; /// /// 计划值 /// public decimal? PlanValue { get { return planValue; } set { planValue = value; } } private decimal? planValueTotal; /// /// 累计计划值 /// public decimal? PlanValueTotal { get { return planValueTotal; } set { planValueTotal = value; } } private decimal? planValueRateTotal; /// /// 累计计划值占比 /// public decimal? PlanValueRateTotal { get { return planValueRateTotal; } set { planValueRateTotal = value; } } private decimal? engineerQuantity; /// /// 工程量 /// public decimal? EngineerQuantity { get { return engineerQuantity; } set { engineerQuantity = value; } } private decimal? budgetUnitPrice; /// /// 预算单价 /// public decimal? BudgetUnitPrice { get { return budgetUnitPrice; } set { budgetUnitPrice = value; } } private decimal? costUnivalent; /// /// 成本单价 /// public decimal? CostUnivalent { get { return costUnivalent; } set { costUnivalent = value; } } private string unit; /// /// 单位 /// public string Unit { get { return unit; } set { unit = value; } } private decimal? childEngineerQuantitys; /// /// 子级累计工程量 /// public decimal? ChildEngineerQuantitys { get { return childEngineerQuantitys; } set { childEngineerQuantitys = value; } } } }