c23d113eae
更新了多个服务和页面,增加了导入管道颜色标识数据的功能,并实现了包装管理、车次管理、管道组件和焊口信息的API控制器。修正了文件路径错误,优化了分页和排序逻辑,删除了不再使用的API方法。
24 lines
858 B
C#
24 lines
858 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 string QRCode { get; set; }
|
|
public int? State { get; set; }
|
|
public string PlanStartDate { get; set; }
|
|
public string PipelineCode { get; set; }
|
|
public string FlowingSection { get; set; }
|
|
public string QRCode2 { get; set; }
|
|
public string MaterialCode { get; set; }
|
|
public bool? IsPrint { get; set; }
|
|
}
|
|
|
|
}
|