using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.ProductionMgr.Entities; /// /// 生产提报记录 /// [SugarTable("prd_report")] public partial class PrdReport : BaseEntity { public PrdReport() { id = SnowflakeIdHelper.NextId(); } /// /// 生产任务Id /// public string? mo_task_id { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 时间戳 /// public DateTime? timestamp { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime? create_time { get; set; } /// /// 修改用户 /// public string? modify_id { get; set; } /// /// 修改时间 /// public DateTime? modify_time { get; set; } /// /// 扩展字段 /// public string? extras { get; set; } /// /// 生产数量 /// public int? prd_qty { get; set; } /// /// 已报工数量 /// public int? reported_work_qty { get; set; } /// /// 报工数量 /// public int? reported_qty { get; set; } /// /// 生产任务编码 /// public string? mo_task_code { get; set; } /// /// 生产任务量 /// public int? icmo_qty { get; set; } }