using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.ProductionMgr.Entities;
///
/// mes申请入库子表
///
[SugarTable("prd_instock_d")]
public partial class PrdInstockD : BaseEntity
{
public PrdInstockD()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 入库申请主表id
///
public string instock_id { get; set; } = string.Empty;
///
/// 物料id
///
public string material_id { get; set; } = string.Empty;
///
/// 物料编号
///
public string material_code { get; set; } = string.Empty;
///
/// 单位
///
public string unit_id { get; set; } = string.Empty;
///
/// 数量
///
public int quantity { get; set; }
///
/// 批次
///
public string code_batch { get; set; } = string.Empty;
///
/// 条码编号
///
public string barcode { get; set; } = string.Empty;
///
/// 生产提报id
///
public string report_id { get; set; } = string.Empty;
///
/// 生产任务单号
///
public string mo_task_code { get; set; } = string.Empty;
}