Murphy před 3 roky
rodič
revize
7255c44ea3

+ 2 - 0
MicroServices/Business/Bussiness.Model/MES/IC/ic_item_stockoccupy.cs

@@ -8,6 +8,7 @@ using System.Text;
 using System.Threading.Tasks;
 using Business.Core.Attributes;
 using Microsoft.EntityFrameworkCore;
+using System.ComponentModel.DataAnnotations.Schema;
 
 namespace Bussiness.Model.MES.IC
 {
@@ -22,6 +23,7 @@ namespace Bussiness.Model.MES.IC
         /// bangid
         /// </summary>
         [Comment("bangid")]
+        [NotMapped]
         public long bang_id { get; set; }
 
         /// <summary>

+ 2 - 0
MicroServices/Business/Bussiness.Model/Production/mes_moentry.cs

@@ -5,6 +5,7 @@ using System;
 using System.Collections.Generic;
 using System.ComponentModel;
 using System.ComponentModel.DataAnnotations;
+using System.ComponentModel.DataAnnotations.Schema;
 using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
@@ -79,6 +80,7 @@ namespace Bussiness.Model.Production
         /// 计算ID
         /// </summary>
         [Comment("计算id")]
+        [NotMapped]
         public long? bang_id { get; set; }
 
     }

+ 2 - 0
MicroServices/Business/Bussiness.Model/Production/mes_mooccupy.cs

@@ -5,6 +5,7 @@ using System;
 using System.Collections.Generic;
 using System.ComponentModel;
 using System.ComponentModel.DataAnnotations;
+using System.ComponentModel.DataAnnotations.Schema;
 using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
@@ -136,6 +137,7 @@ namespace Bussiness.Model.Production
         /// 计算ID
         /// </summary>
         [Comment("计算id")]
+        [NotMapped]
         public long? bang_id { get; set; }
 
     }

+ 2 - 0
MicroServices/Business/Bussiness.Model/Production/mes_morder.cs

@@ -5,6 +5,7 @@ using System;
 using System.Collections.Generic;
 using System.ComponentModel;
 using System.ComponentModel.DataAnnotations;
+using System.ComponentModel.DataAnnotations.Schema;
 using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
@@ -320,6 +321,7 @@ namespace Bussiness.Model.Production
         /// 计算ID
         /// </summary>
         [Comment("计算id")]
+        [NotMapped]
         public long? bang_id { get; set; }
     }
 }