1.相关业务增加source_id和source_code
2.入库申请查询明细单增加仓库名称回传字段
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user