From f8ec9073a0dc7a283d8676a4a3059341e9ff1be3 Mon Sep 17 00:00:00 2001 From: "qianhao.xu" Date: Tue, 10 Dec 2024 16:10:30 +0800 Subject: [PATCH] 1 --- DOAN.Model/MES/Product/ProReportwork01.cs | 92 +++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 DOAN.Model/MES/Product/ProReportwork01.cs diff --git a/DOAN.Model/MES/Product/ProReportwork01.cs b/DOAN.Model/MES/Product/ProReportwork01.cs new file mode 100644 index 0000000..6feb309 --- /dev/null +++ b/DOAN.Model/MES/Product/ProReportwork01.cs @@ -0,0 +1,92 @@ + +namespace DOAN.Model.MES.product +{ + /// + /// 报工 + /// + [SugarTable("pro_reportwork")] + public class ProReportwork01 + { + /// + /// 雪花 + /// + [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] + public string Id { get; set; } + + /// + /// 工单code + /// + public string Workorder { get; set; } + + /// + /// 路线code + /// + [SugarColumn(ColumnName = "route_code")] + public string RouteCode { get; set; } + + /// + /// 工序id + /// + [SugarColumn(ColumnName = "process_id")] + public int ProcessId { get; set; } + + /// + /// 计划数量 + /// + [SugarColumn(ColumnName = "plan_num")] + public int? PlanNum { get; set; } + + /// + /// 完成数量 + /// + [SugarColumn(ColumnName = "finish_num")] + public int? FinishNum { get; set; } + + /// + /// 不良数量 + /// + [SugarColumn(ColumnName = "bad_num")] + public int? BadNum { get; set; } + + /// + /// 作业员 + /// + public string Worker { get; set; } + + /// + /// 作业日期 + /// + [SugarColumn(ColumnName = "job_date")] + public DateTime? JobDate { get; set; } + + /// + /// 备注 + /// + public string Remark { get; set; } + + /// + /// 创建人 + /// + [SugarColumn(ColumnName = "cREATED_BY")] + public string CreatedBy { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(ColumnName = "cREATED_TIME")] + public DateTime? CreatedTime { get; set; } + + /// + /// 更新人 + /// + [SugarColumn(ColumnName = "uPDATED_BY")] + public string UpdatedBy { get; set; } + + /// + /// 更新时间 + /// + [SugarColumn(ColumnName = "uPDATED_TIME")] + public DateTime? UpdatedTime { get; set; } + + } +} \ No newline at end of file