新增管道颜色标识导入功能及API控制器

更新了多个服务和页面,增加了导入管道颜色标识数据的功能,并实现了包装管理、车次管理、管道组件和焊口信息的API控制器。修正了文件路径错误,优化了分页和排序逻辑,删除了不再使用的API方法。
This commit is contained in:
2025-10-24 10:04:03 +08:00
parent 55b798135c
commit c23d113eae
55 changed files with 1502 additions and 817 deletions
@@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class MaterialStockItem
{
/// <summary>
/// 材料编码
/// </summary>
public string MaterialCode { get; set; }
/// <summary>
/// 材料名称
/// </summary>
public string MaterialName { get; set; }
/// <summary>
/// 规格
/// </summary>
public string MaterialSpec { get; set; }
///// <summary>
///// 材质
///// </summary>
//public string MaterialMade { get; set; }
/// <summary>
/// 单位
/// </summary>
public string MaterialUnit { get; set; }
/// <summary>
/// 库存数量
/// </summary>
public decimal MaterialNum { get; set; }
}
}