c23d113eae
更新了多个服务和页面,增加了导入管道颜色标识数据的功能,并实现了包装管理、车次管理、管道组件和焊口信息的API控制器。修正了文件路径错误,优化了分页和排序逻辑,删除了不再使用的API方法。
30 lines
608 B
C#
30 lines
608 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
// ========= QRCodeItem.cs file =========
|
|
namespace model
|
|
{
|
|
public class Pipeline_ComponentQRCodeQRCodeItem
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string element { get; set; }
|
|
}
|
|
}
|
|
|
|
// ========= RootName.cs file =========
|
|
namespace model
|
|
{
|
|
public class Pipeline_ComponentQRCodeRootName
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public List<Pipeline_ComponentQRCodeQRCodeItem> QRCode { get; set; }
|
|
}
|
|
}
|