调整载具查询返回接口,子载具编号赋值逻辑

This commit is contained in:
alex
2023-07-21 17:35:11 +08:00
parent c4ffd8e53c
commit f0624b0193
3 changed files with 23 additions and 8 deletions

View File

@@ -87,6 +87,14 @@ namespace Tnb.WarehouseMgr.Entities.Dto.Outputs
/// 上级载具ID
/// </summary>
public string carry_id { get; set; }
/// <summary>
/// 子载具id
/// </summary>
public string member_carryid { get; set; }
/// <summary>
/// 子载具code
/// </summary>
public string member_carrycode { get; set; }
/// <summary>
/// 物品ID

View File

@@ -14,4 +14,9 @@ public partial class WmsCarryCode
/// </summary>
[SugarColumn(IsIgnore = true)]
public string material_name { get; set; }
/// <summary>
/// 子载具编号
/// </summary>
[SugarColumn(IsIgnore = true)]
public string member_carrycode { get; set; }
}