2025-05-12 19:05:13 +08:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Model
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 管线预制散件
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class PipelinePrefabricatedComponentsItem
|
|
|
|
|
{
|
|
|
|
|
public string Id { get; set; }
|
2025-12-01 11:14:50 +08:00
|
|
|
public string TwOutputDetailId { get; set; }
|
2025-05-12 19:05:13 +08:00
|
|
|
public string MaterialCode { get; set; }
|
|
|
|
|
public string MaterialName { get; set; }
|
|
|
|
|
public string MaterialUnit { get; set; }
|
|
|
|
|
public string MaterialSpec { get; set; }
|
|
|
|
|
public string MaterialMade { get; set; }
|
|
|
|
|
public string MaterialDef { get; set; }
|
|
|
|
|
public decimal? Number { get; set; }
|
|
|
|
|
public string PrefabricatedComponents { get; set; }
|
|
|
|
|
public string PipelineId { get; set; }
|
|
|
|
|
public string PipelineCode { get; set; }
|
|
|
|
|
public string UnitWorkId { get; set; }
|
|
|
|
|
public string ProjectId { get; set; }
|
2025-07-23 13:27:58 +08:00
|
|
|
public string FlowingSection { get; set; }
|
2025-09-24 17:31:28 +08:00
|
|
|
public string CusBillCode { get; set; }
|
2025-05-12 19:05:13 +08:00
|
|
|
}
|
|
|
|
|
}
|