using MiniExcelLibs.Attributes;
namespace Model
{
public class PHTGL_ContractTrackDtoIn
{
///
/// 序号
///
[ExcelColumnIndex("A")] public string SerialNumber { get; set; }
///
/// 主项号
///
[ExcelColumnIndex("B")] public string MainItemCode { get; set; }
///
/// 主项名称
///
[ExcelColumnIndex("C")] public string MainItemName { get; set; }
///
/// 专业代码
///
[ExcelColumnIndex("D")] public string MajorCode { get; set; }
///
/// 专业工程名称
///
[ExcelColumnIndex("E")] public string MajorName { get; set; }
///
/// 分部工程
///
[ExcelColumnIndex("F")] public string SubProject { get; set; }
///
/// 分项工程
///
[ExcelColumnIndex("G")] public string SubItemProject { get; set; }
///
/// 项目编码
///
[ExcelColumnIndex("H")] public string ProjectCode { get; set; }
///
/// 项目名称
///
[ExcelColumnIndex("I")] public string ProjectName { get; set; }
///
/// 项目特征描述
///
[ExcelColumnIndex("J")] public string ProjectDescription { get; set; }
///
/// 计量单位
///
[ExcelColumnIndex("K")] public string UnitOfMeasurement { get; set; }
///
/// 工程量
///
[ExcelColumnIndex("L")] public string Quantity { get; set; }
///
/// 全费用固定综合单价
///
[ExcelColumnIndex("M")] public decimal TotalCostFixedComprehensiveUnitPrice { get; set; }
///
/// 其中:主材费
///
[ExcelColumnIndex("N")] public decimal MainMaterialCost { get; set; }
///
/// 合价/元
///
[ExcelColumnIndex("O")] public decimal TotalPrice { get; set; }
///
/// 计算规则
///
[ExcelColumnIndex("P")] public string CalculationRule { get; set; }
///
/// 工作内容
///
[ExcelColumnIndex("Q")] public string WorkContent { get; set; }
///
/// 备注
///
[ExcelColumnIndex("R")] public string Remarks { get; set; }
///
/// 施工分包商
///
[ExcelColumnIndex("S")] public string ConstructionSubcontractor { get; set; }
///
/// 主材供应方
///
[ExcelColumnIndex("T")] public string MaterialSupplier { get; set; }
///
/// 是否总包合同范围内
///
[ExcelColumnIndex("U")]
public string IsWithinGeneralContractScope { get; set; }
///
/// 概算工程量
///
[ExcelColumnIndex("V")] public string EstimatedQuantity { get; set; }
///
/// 概算金额
///
[ExcelColumnIndex("W")] public decimal EstimatedAmount { get; set; }
///
/// 预算工程量
///
[ExcelColumnIndex("X")] public string SettledQuantity { get; set; }
///
/// 预算金额
///
[ExcelColumnIndex("Y")] public decimal SettledAmount { get; set; }
}
}