Files
SGGL_SHJ/SGGL/Model/HJGL/PreDesign/PipelineComponent/PipelineComponentPrintDto.cs
T
lpf 7b5b060ffc feat(hjgl): 完善管线预制与焊接业务
同步管线组件、材料和焊口关联数据,优化预制组件打印及焊接相关查询,减少业务台账与实际关联信息不一致。
2026-09-16 15:49:02 +08:00

21 lines
715 B
C#

namespace Model
{
public class PipelineComponentPrintDto
{
public string PipelineComponentId { get; set; }
public string PipelineComponentCode { get; set; }
public string BoxNumber { get; set; }
public string UnitWorkName { get; set; }
public string PipelineId { get; set; }
public string PreUnit { get; set; }
public string AssembleUnit { get; set; }
public string PrefabricatedComponents { get; set; }
public int? State { get; set; }
public string PlanStartDate { get; set; }
public string PipelineCode { get; set; }
public string QRCode2 { get; set; }
public bool? IsPrint { get; set; }
}
}