52 lines
1.1 KiB
C#
52 lines
1.1 KiB
C#
using JNPF.Common.Contracts;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.ProductionMgr.Entities;
|
|
|
|
/// <summary>
|
|
/// mes申请入库子表
|
|
/// </summary>
|
|
[SugarTable("prd_instock_d")]
|
|
public partial class PrdInstockD : BaseEntity<string>
|
|
{
|
|
public PrdInstockD()
|
|
{
|
|
id = SnowflakeIdHelper.NextId();
|
|
}
|
|
/// <summary>
|
|
/// 入库申请主表id
|
|
/// </summary>
|
|
public string instock_id { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 物料id
|
|
/// </summary>
|
|
public string material_id { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 物料编号
|
|
/// </summary>
|
|
public string material_code { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 单位
|
|
/// </summary>
|
|
public string unit_id { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 数量
|
|
/// </summary>
|
|
public string quantity { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 批次
|
|
/// </summary>
|
|
public string code_batch { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 条码编号
|
|
/// </summary>
|
|
public string barcode { get; set; } = string.Empty;
|
|
|
|
} |