7b5b060ffc
同步管线组件、材料和焊口关联数据,优化预制组件打印及焊接相关查询,减少业务台账与实际关联信息不一致。
21 lines
715 B
C#
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; }
|
|
}
|
|
|
|
}
|