2022-10-11 焊接修改及接口新增

This commit is contained in:
2022-10-11 17:12:13 +08:00
parent e4052c419f
commit 6b0db8cd74
15 changed files with 1209 additions and 27 deletions
@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class PipelineComponentItem
{
public string PipelineComponentId { get; set; }
public string PipelineComponentCode { get; set; }
public string PreUnit { get; set; }
public string DrawingName { get; set; }
public string BoxNumber { get; set; }
public int? State { get; set; }
public DateTime? PlanStartDate { get; set; }
public string QRCode { get; set; }
}
public class PipelineComponentDetail
{
public PipelineComponentItem pipelineComponentItem { get; set; }
public bool isPower { get; set; }
}
}