using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// 物料齐套配送记录表 /// [SugarTable("wms_materialkit_record_h")] public partial class WmsMaterialkitRecordH : BaseEntity { public WmsMaterialkitRecordH() { id = SnowflakeIdHelper.NextId(); } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 修改用户 /// public string? modify_id { get; set; } /// /// 修改时间 /// public DateTime? modify_time { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime? create_time { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 记录单号 /// public string? bill_code { get; set; } /// /// 任务单id /// public string? mo_task_id { get; set; } /// /// 任务单号 /// public string? mo_task_code { get; set; } /// /// 生产bom id /// public string? bom_id { get; set; } /// /// 物料id /// public string? material_id { get; set; } /// /// 物料编码 /// public string? material_code { get; set; } /// /// 物料名称 /// public string? material_name { get; set; } /// /// 规格型号 /// public string? material_specification { get; set; } /// /// 单位 /// public string? unit_code { get; set; } /// /// 数量 /// public decimal? qty { get; set; } /// /// 工位id /// public string? workstation_id { get; set; } /// /// 状态(开始 执行中 完成) /// public string? status { get; set; } /// /// 开始时间 /// public DateTime? start_time { get; set; } /// /// 完成时间 /// public DateTime? complete_time { get; set; } /// /// 运行次数 /// public int? times { get; set; } /// /// 运行总时长(毫秒) /// public int? total_time { get; set; } }