物料签收

This commit is contained in:
2023-06-16 11:42:54 +08:00
parent f527a02d75
commit 1a0df13ec4
8 changed files with 364 additions and 1 deletions

View File

@@ -0,0 +1,42 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.ProductionMgr.Entities;
/// <summary>
/// 物料签收子表
/// </summary>
[SugarTable("prd_material_receipt_d")]
public partial class PrdMaterialReceiptD : BaseEntity<string>
{
public PrdMaterialReceiptD()
{
id = SnowflakeIdHelper.NextId();
}
/// <summary>
/// 物料签收id
/// </summary>
public string material_receipt_id { get; set; } = string.Empty;
/// <summary>
/// 物料id
/// </summary>
public string material_id { get; set; } = string.Empty;
/// <summary>
/// 数量
/// </summary>
public int num { get; set; }
/// <summary>
/// 批次
/// </summary>
public string? batch { get; set; }
/// <summary>
/// 单位id
/// </summary>
public string? unit_id { get; set; }
}