ChengDa_English/SGGL/Model/JDGL/WBSDetailItem.cs

138 lines
3.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace Model
{
public class WBSDetailItem
{
private string wbsDetailId;
/// <summary>
/// 主键
/// </summary>
public string WbsDetailId
{
get { return wbsDetailId; }
set { wbsDetailId = value; }
}
private string wbsDetailHistoryId;
/// <summary>
/// 明细历史主键
/// </summary>
public string WbsDetailHistoryId
{
get { return wbsDetailHistoryId; }
set { wbsDetailHistoryId = value; }
}
private string toWbs;
/// <summary>
/// 对应wbs
/// </summary>
public string ToWbs
{
get { return toWbs; }
set { toWbs = value; }
}
private int toFlag;
/// <summary>
/// 对应标记:A-(1-装置,2-专业,3-单位工程,4-分部分项)
/// </summary>
public int ToFlag
{
get { return toFlag; }
set { toFlag = value; }
}
private string way;
/// <summary>
/// 方式AB
/// </summary>
public string Way
{
get { return way; }
set { way = value; }
}
private DateTime months;
/// <summary>
/// 月份
/// </summary>
public DateTime Months
{
get { return months; }
set { months = value; }
}
private string yearsMonthsStr;
/// <summary>
/// 年月字符串
/// </summary>
public string YearsMonthsStr
{
get { return yearsMonthsStr; }
set { yearsMonthsStr = value; }
}
private decimal? weightsMoney;
/// <summary>
/// 计划总费用
/// </summary>
public decimal? WeightsMoney
{
get { return weightsMoney; }
set { weightsMoney = value; }
}
private decimal? planValue;
/// <summary>
/// 计划值
/// </summary>
public decimal? PlanValue
{
get { return planValue; }
set { planValue = value; }
}
private decimal? planValueTotal;
/// <summary>
/// 累计计划值
/// </summary>
public decimal? PlanValueTotal
{
get { return planValueTotal; }
set { planValueTotal = value; }
}
private decimal? planValueRate;
/// <summary>
/// 计划值占比
/// </summary>
public decimal? PlanValueRate
{
get { return planValueRate; }
set { planValueRate = value; }
}
private decimal? planValueRateTotal;
/// <summary>
/// 累计计划值占比
/// </summary>
public decimal? PlanValueRateTotal
{
get { return planValueRateTotal; }
set { planValueRateTotal = value; }
}
private string versionNum;
/// <summary>
/// 版本号
/// </summary>
public string VersionNum
{
get { return versionNum; }
set { versionNum = value; }
}
}
}