Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdOutPackMarkLabel.cs
2023-11-09 16:00:05 +08:00

57 lines
1.3 KiB
C#

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