diff --git a/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdReportRecord.cs b/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdReportRecord.cs
index 4d69693c..23fcffd4 100644
--- a/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdReportRecord.cs
+++ b/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdReportRecord.cs
@@ -11,66 +11,71 @@ namespace Tnb.ProductionMgr.Entities
[SugarTable("prd_report_record")]
public partial class PrdReportRecord
{
- public PrdReportRecord(){
+ public PrdReportRecord()
+ {
- }
- ///
- /// Desc:主键
- /// Default:
- /// Nullable:False
- ///
- [SugarColumn(IsPrimaryKey=true)]
- public string id {get;set;}
+ }
+ ///
+ /// Desc:主键
+ /// Default:
+ /// Nullable:False
+ ///
+ [SugarColumn(IsPrimaryKey = true)]
+ public string id { get; set; }
- ///
- /// Desc:产品编码
- /// Default:
- /// Nullable:True
- ///
- public string item_code {get;set;}
+ ///
+ /// Desc:产品编码
+ /// Default:
+ /// Nullable:True
+ ///
+ public string item_code { get; set; }
- ///
- /// Desc:产品名称
- /// Default:
- /// Nullable:True
- ///
- public string item_name {get;set;}
+ ///
+ /// Desc:产品名称
+ /// Default:
+ /// Nullable:True
+ ///
+ public string item_name { get; set; }
- ///
- /// Desc:设备编码
- /// Default:
- /// Nullable:True
- ///
- public string eqp_code {get;set;}
+ ///
+ /// Desc:设备编码
+ /// Default:
+ /// Nullable:True
+ ///
+ public string eqp_code { get; set; }
- ///
- /// Desc:计划开始时间
- /// Default:
- /// Nullable:True
- ///
- public DateTime? plan_start_time {get;set;}
+ ///
+ /// Desc:计划开始时间
+ /// Default:
+ /// Nullable:True
+ ///
+ public DateTime? plan_start_date { get; set; }
- ///
- /// Desc:计划结束时间
- /// Default:
- /// Nullable:True
- ///
- public DateTime? plan_end_time {get;set;}
+ ///
+ /// Desc:计划结束时间
+ /// Default:
+ /// Nullable:True
+ ///
+ public DateTime? plan_end_date { get; set; }
- ///
- /// Desc:计划生产数量
- /// Default:
- /// Nullable:True
- ///
- public int? plan_qty {get;set;}
+ ///
+ /// Desc:计划生产数量
+ /// Default:
+ /// Nullable:True
+ ///
+ public int? plan_qty { get; set; }
- ///
- /// Desc:完成数量
- /// Default:
- /// Nullable:True
- ///
- public int? completed_qty {get;set;}
+ ///
+ /// Desc:完成数量
+ /// Default:
+ /// Nullable:True
+ ///
+ public int? completed_qty { get; set; }
+ ///
+ /// 任务单号
+ ///
+ public string icmo_code { get; }
}
}
diff --git a/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdSelfTestScrappedRecord.cs b/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdSelfTestScrappedRecord.cs
index ad58cb05..717f83f7 100644
--- a/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdSelfTestScrappedRecord.cs
+++ b/ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdSelfTestScrappedRecord.cs
@@ -11,94 +11,99 @@ namespace Tnb.ProductionMgr.Entities
[SugarTable("prd_self_test_scrapped_record")]
public partial class PrdSelfTestScrappedRecord
{
- public PrdSelfTestScrappedRecord(){
+ public PrdSelfTestScrappedRecord()
+ {
- }
- ///
- /// Desc:主键
- /// Default:
- /// Nullable:False
- ///
- [SugarColumn(IsPrimaryKey=true)]
- public string id {get;set;}
+ }
+ ///
+ /// Desc:主键
+ /// Default:
+ /// Nullable:False
+ ///
+ [SugarColumn(IsPrimaryKey = true)]
+ public string id { get; set; }
- ///
- /// Desc:产品编码
- /// Default:
- /// Nullable:True
- ///
- public string item_code {get;set;}
+ ///
+ /// Desc:产品编码
+ /// Default:
+ /// Nullable:True
+ ///
+ public string item_code { get; set; }
- ///
- /// Desc:产品名称
- /// Default:
- /// Nullable:True
- ///
- public string item_name {get;set;}
+ ///
+ /// Desc:产品名称
+ /// Default:
+ /// Nullable:True
+ ///
+ public string item_name { get; set; }
- ///
- /// Desc:设备编码
- /// Default:
- /// Nullable:True
- ///
- public string eqp_code {get;set;}
+ ///
+ /// Desc:设备编码
+ /// Default:
+ /// Nullable:True
+ ///
+ public string eqp_code { get; set; }
- ///
- /// Desc:模具名称
- /// Default:
- /// Nullable:True
- ///
- public string mold_name {get;set;}
+ ///
+ /// Desc:模具名称
+ /// Default:
+ /// Nullable:True
+ ///
+ public string mold_name { get; set; }
- ///
- /// Desc:预计开始时间
- /// Default:
- /// Nullable:True
- ///
- public DateTime? estimated_start_date {get;set;}
+ ///
+ /// Desc:预计开始时间
+ /// Default:
+ /// Nullable:True
+ ///
+ public DateTime? estimated_start_date { get; set; }
- ///
- /// Desc:预计结束时间
- /// Default:
- /// Nullable:True
- ///
- public DateTime? estimated_end_date {get;set;}
+ ///
+ /// Desc:预计结束时间
+ /// Default:
+ /// Nullable:True
+ ///
+ public DateTime? estimated_end_date { get; set; }
- ///
- /// Desc:计划生产数量
- /// Default:
- /// Nullable:True
- ///
- public int? plan_qty {get;set;}
+ ///
+ /// Desc:计划生产数量
+ /// Default:
+ /// Nullable:True
+ ///
+ public int? plan_qty { get; set; }
- ///
- /// Desc:报废数量
- /// Default:
- /// Nullable:True
- ///
- public int scrap_qty { get;set;}
+ ///
+ /// Desc:报废数量
+ /// Default:
+ /// Nullable:True
+ ///
+ public int scrap_qty { get; set; }
- ///
- /// Desc:生产任务单状态
- /// Default:
- /// Nullable:True
- ///
- public string status {get;set;}
+ ///
+ /// Desc:生产任务单状态
+ /// Default:
+ /// Nullable:True
+ ///
+ public string status { get; set; }
- ///
- /// Desc:创建人Id
- /// Default:
- /// Nullable:True
- ///
- public string create_id {get;set;}
+ ///
+ /// Desc:创建人Id
+ /// Default:
+ /// Nullable:True
+ ///
+ public string create_id { get; set; }
- ///
- /// Desc:创建时间
- /// Default:
- /// Nullable:True
- ///
- public DateTime? create_time {get;set;}
+ ///
+ /// Desc:创建时间
+ /// Default:
+ /// Nullable:True
+ ///
+ public DateTime? create_time { get; set; }
+ ///
+ /// 任务单号
+ ///
+ public string icmo_code { get; }
}
}