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