载具库存报表导出加规格型号字段;bip异常信息对接接口

This commit is contained in:
2024-11-12 11:02:14 +08:00
parent bce95139a5
commit 72d8f4f40b
6 changed files with 298 additions and 3 deletions

View File

@@ -100,4 +100,12 @@ namespace Tnb.WarehouseMgr.Entities.Dto.ErpInputs
public string? warehouse_instock_id { get; set; }
}
public class TransferOrderDelInput
{
/// <summary>
/// 主表主键
/// </summary>
public string erp_pk { get; set; }
}
}

View File

@@ -1,5 +1,6 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using NPOI.OpenXmlFormats.Dml;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities;
@@ -412,7 +413,14 @@ public partial class WmsCarryStockReportExcel
/// 绑定时间
/// </summary>
public string? bind_time { get; set; }
/// <summary>
/// 物料规格
/// </summary>
public string? material_specification { get; set; }
/// <summary>
/// 物料型号
/// </summary>
public string? container_no { get;set; }
}