using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.ProductionMgr.Entities;
///
/// 产线状态
///
[SugarTable("prd_workline_state")]
public partial class PrdWorklineState : BaseEntity
{
public PrdWorklineState()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 产线代码
///
public string? workline_code { get; set; }
///
/// 工单id
///
public string? mo_id { get; set; }
///
/// 工单代码
///
public string? mo_code { get; set; }
///
/// 模具id
///
public string? mold_id { get; set; }
///
/// 工艺路线id
///
public string? route_id { get; set; }
///
/// 工艺路线代码
///
public string? route_code { get; set; }
///
/// 工序id
///
public string? process_id { get; set; }
///
/// 工序代码
///
public string? process_code { get; set; }
///
/// 工位id
///
public string? station_id { get; set; }
///
/// 工位代码
///
public string? station_code { get; set; }
///
/// 当前产品序列号
///
public string? lot_no { get; set; }
///
/// 需要的物料
///
public string? require_material_id { get; set; }
///
/// 需要的物料
///
public string? require_material_code { get; set; }
///
/// 需要的物料
///
public string? require_material_name { get; set; }
///
/// 需要的物料
///
public string? require_material_spec { get; set; }
///
/// 当前产品
///
public string? product_code { get; set; }
///
/// 当前产品
///
public string? product_name { get; set; }
///
/// 当前产品
///
public string? product_spec { get; set; }
///
/// 扩展
///
public string? extras { get; set; }
///
/// 更新时间
///
public DateTime? update_time { get; set; }
}