This commit is contained in:
alex
2023-08-04 17:17:31 +08:00
parent ae76e93130
commit 31a1f8a149
4 changed files with 174 additions and 4 deletions

View File

@@ -0,0 +1,26 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities;
/// <summary>
/// 库存报表
/// </summary>
public partial class WmsStockReportH
{
/// <summary>
/// 物料名称
/// </summary>
[SugarColumn(IsIgnore = true)]
public string mater_name { get; set; }
/// <summary>
/// 明细列表
/// </summary>
[SugarColumn(IsIgnore =true)]
public List<WmsStockReportCode> Details { get; set; }
[SugarColumn(IsIgnore = true)]
public decimal codeqty { get; set; }
}