1.相关业务增加source_id和source_code

2.入库申请查询明细单增加仓库名称回传字段
This commit is contained in:
FanLian
2023-08-03 15:23:28 +08:00
parent 981662037e
commit 5defa98b47
15 changed files with 115 additions and 20 deletions

View File

@@ -0,0 +1,19 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities;
/// <summary>
/// 入库申请明细表
/// </summary>
public partial class WmsInstockD : BaseEntity<string>
{
/// <summary>
/// 仓库名称
/// </summary>
[SugarColumn(IsIgnore = true)]
public string warehouse_name { get; set; }
}