using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.ProductionMgr.Entities;
///
/// 外包装喷码贴标验证表
///
[SugarTable("prd_out_pack_mark_label")]
public partial class PrdOutPackMarkLabel : BaseEntity
{
public PrdOutPackMarkLabel()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 是否喷码 0 否 1 是
///
public int? is_mark { get; set; }
///
/// 是否贴标 0 否 1 是
///
public int? is_label { get; set; }
///
/// 任务单号
///
public string mo_task_code { get; set; } = string.Empty;
///
/// 物料号
///
public string material_code { get; set; } = string.Empty;
///
/// 工位id
///
public string station_id { get; set; } = string.Empty;
///
/// 创建时间
///
public DateTime create_time { get; set; } = DateTime.Now;
///
/// 状态 0 未提报 1 已提报 2 已发起入库申请
///
public string status { get; set; } = string.Empty;
///
/// 提报记录id
///
public string report_id { get; set; } = string.Empty;
}