生产领料

This commit is contained in:
2023-07-19 17:32:56 +08:00
parent b2354f31bb
commit 48208de173
5 changed files with 257 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.ProductionMgr.Entities;
/// <summary>
/// mes生产领料子表
/// </summary>
[SugarTable("prd_outstock_d")]
public partial class PrdOutstockD : BaseEntity<string>
{
public PrdOutstockD()
{
id = SnowflakeIdHelper.NextId();
}
/// <summary>
/// 物料id
/// </summary>
public string? material_id { get; set; }
/// <summary>
/// 物料编号
/// </summary>
public string? material_code { get; set; }
/// <summary>
/// 单位id
/// </summary>
public string? unit_id { get; set; }
/// <summary>
/// 出库需求数量
/// </summary>
public string? pr_qty { get; set; }
/// <summary>
/// 来源单据id
/// </summary>
public string? source_id { get; set; }
/// <summary>
/// 批次
/// </summary>
public string? code_batch { get; set; }
/// <summary>
/// 生产领料主表id
/// </summary>
public string? outstock_id { get; set; }
/// <summary>
/// 物料名称
/// </summary>
public string? material_name { get; set; }
}