ソースを参照

同步金蝶物料信息到dop

Murphy 3 年 前
コミット
8ad3ff8457
35 ファイル変更13422 行追加146 行削除
  1. 2 1
      MicroServices/Business/Buissness.UnitTest/CoreTestDataSeedContributor.cs
  2. 0 7
      MicroServices/Business/Business.Application.Contracts/WMS/ISyncKingdeeAppService.cs
  3. 2 0
      MicroServices/Business/Business.Application/Business.Application.csproj
  4. 34 0
      MicroServices/Business/Business.Application/Quartz/ExtJob.cs
  5. 706 0
      MicroServices/Business/Business.Application/Quartz/ExtJobService.cs
  6. 0 6
      MicroServices/Business/Business.Application/WMS/SyncKingdeeAppService.cs
  7. 1 0
      MicroServices/Business/Business.EntityFrameworkCore/Business.EntityFrameworkCore.csproj
  8. 2 2
      MicroServices/Business/Business.EntityFrameworkCore/EntityFrameworkCore/Bang/BussinessBangDbContextOptionsConfigurer.cs
  9. 5 0
      MicroServices/Business/Business.EntityFrameworkCore/EntityFrameworkCore/DOP/BusinessDbContext.cs
  10. 2 2
      MicroServices/Business/Business.EntityFrameworkCore/EntityFrameworkCore/DOP/BussinessDbContextOptionsConfigurer.cs
  11. 3 1
      MicroServices/Business/Business.EntityFrameworkCore/EntityFrameworkCore/Ext/BusinessExtDbContext.cs
  12. 2 2
      MicroServices/Business/Business.EntityFrameworkCore/EntityFrameworkCore/Ext/BussinessExtDbContextOptionsConfigurer.cs
  13. 12 3
      MicroServices/Business/Business.Host/BusinessHostModule.cs
  14. 8810 0
      MicroServices/Business/Business.Host/Migrations/20230324022835_RemoveRequire.Designer.cs
  15. 608 0
      MicroServices/Business/Business.Host/Migrations/20230324022835_RemoveRequire.cs
  16. 1701 0
      MicroServices/Business/Business.Host/Migrations/BusinessExtMigrationDb/20230323150446_Test.Designer.cs
  17. 85 0
      MicroServices/Business/Business.Host/Migrations/BusinessExtMigrationDb/20230323150446_Test.cs
  18. 146 0
      MicroServices/Business/Business.Host/Migrations/BusinessExtMigrationDb/BusinessExtMigrationDbContextModelSnapshot.cs
  19. 26 50
      MicroServices/Business/Business.Host/Migrations/BusinessMigrationDbContextModelSnapshot.cs
  20. 0 12
      MicroServices/Business/Business.HttpApi/Controllers/WMS/KingdeeController.cs
  21. 7 0
      MicroServices/Business/Bussiness.Model/Base/BaseEntity.cs
  22. 205 0
      MicroServices/Business/Bussiness.Model/Ext/ext_xref.cs
  23. 205 0
      MicroServices/Business/Bussiness.Model/Ext/ext_xrefTest.cs
  24. 11 0
      MicroServices/Business/Bussiness.Model/Ext/in_kd_bom.cs
  25. 1 0
      MicroServices/Business/Bussiness.Model/Ext/in_kd_material.cs
  26. 13 38
      MicroServices/Business/Bussiness.Model/MES/IC/ic_factory_details.cs
  27. 243 0
      MicroServices/Business/Bussiness.Model/MES/IC/ic_factory_detailsTest.cs
  28. 11 13
      MicroServices/Business/Bussiness.Model/MES/IC/ic_item.cs
  29. 245 0
      MicroServices/Business/Bussiness.Model/MES/IC/ic_itemTest.cs
  30. 3 0
      MicroServices/Business/Bussiness.Model/MES/IC/ic_item_ie.cs
  31. 65 0
      MicroServices/Business/Bussiness.Model/MES/IC/ic_item_ieTest.cs
  32. 5 4
      MicroServices/Business/Bussiness.Model/MES/IC/ic_item_pur.cs
  33. 98 0
      MicroServices/Business/Bussiness.Model/MES/IC/ic_item_purTest.cs
  34. 8 5
      MicroServices/Business/Bussiness.Model/MES/IC/ic_plan.cs
  35. 155 0
      MicroServices/Business/Bussiness.Model/MES/IC/ic_planTest.cs

+ 2 - 1
MicroServices/Business/Buissness.UnitTest/CoreTestDataSeedContributor.cs

@@ -1,4 +1,5 @@
 
+using Business.Core.Utilities;
 using Bussiness.Model.MES.IC;
 using Bussiness.Model.Production;
 using Bussiness.Model.Sale;
@@ -102,7 +103,7 @@ namespace Buissness.TestBase
 
         private async Task Seedic_itemAsync()
         {
-            await _mysql_ic_item.InsertAsync(new ic_item { factory_id=102, allowout=1});
+            await _mysql_ic_item.InsertAsync(new ic_item(new SnowFlake().NextId()) { factory_id=102, allowout=1});
         }
 
         private async Task Seedic_bomAsync()

+ 0 - 7
MicroServices/Business/Business.Application.Contracts/WMS/ISyncKingdeeAppService.cs

@@ -26,12 +26,5 @@ namespace Business.ResourceExamineManagement
         /// <param name="id"></param>
         /// <returns></returns>
         string SyncMaterial();
-
-        /// <summary>
-        /// 资源检查
-        /// </summary>
-        /// <param name="input"></param>
-        /// <returns></returns>
-        Task<string> ReceiveResult(SeorderentryDto input);
     }
 }

+ 2 - 0
MicroServices/Business/Business.Application/Business.Application.csproj

@@ -18,11 +18,13 @@
 	<PackageReference Include="Volo.Abp.Ddd.Application" Version="6.0.0" />
     <PackageReference Include="Volo.Abp.Identity.HttpApi.Client" Version="6.0.0" />
     <PackageReference Include="XCZ.BaseService.HttpApi.Client" Version="1.0.0" />
+    <PackageReference Include="XiaoYang.EntityFrameworkCore.Bulk.MySql" Version="6.0.29" />
   </ItemGroup>
 
   <ItemGroup>
     <ProjectReference Include="..\Business.Application.Contracts\Business.Application.Contracts.csproj" />
     <ProjectReference Include="..\Business.Domain\Business.Domain.csproj" />
+    <ProjectReference Include="..\Business.EntityFrameworkCore\Business.EntityFrameworkCore.csproj" />
     <ProjectReference Include="..\Bussiness.Model\Bussiness.Model.csproj" />
     <ProjectReference Include="..\Bussiness.MongoModel\Bussiness.MongoModel.csproj" />
   </ItemGroup>

+ 34 - 0
MicroServices/Business/Business.Application/Quartz/ExtJob.cs

@@ -0,0 +1,34 @@
+using Business.SyncDataManagement;
+using Quartz;
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Business.Quartz
+{
+    public class ExtJob : IJob
+    {
+
+        /// <summary>
+        /// Nlog日志按月分表,需要每天凌晨检查是否存在表,不存在就要新建表,程序启动的时候也要检查一次。类似初始化
+        /// </summary>
+        public readonly ExtJobService _extJobService;
+
+        /// <summary>
+        /// 构造函数
+        /// </summary>
+        public ExtJob(ExtJobService extJobService)
+        {
+            _extJobService = extJobService;
+        }
+        public Task Execute(IJobExecutionContext context)
+        {
+            _extJobService.DoExt();
+
+            return Task.CompletedTask;
+        }
+    }
+}

+ 706 - 0
MicroServices/Business/Business.Application/Quartz/ExtJobService.cs

@@ -0,0 +1,706 @@
+using Business.Core.Utilities;
+using Business.EntityFrameworkCore;
+using Bussiness.Model.Ext;
+using Bussiness.Model.MES.IC;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.Extensions.Hosting;
+using NLog;
+using SixLabors.ImageSharp;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading;
+using System.Threading.Tasks;
+using System.Xml.Linq;
+using Volo.Abp.Application.Services;
+using Volo.Abp.Domain.Repositories;
+
+namespace Business.Quartz
+{
+    //处理Ext数据库表
+    public class ExtJobService: ApplicationService
+    {
+        SnowFlake help = new SnowFlake();
+        private IRepository<in_kd_material, long> _kd_material;
+        private IRepository<ic_item, long> _ic_item;
+        private IRepository<ic_itemTest, long> _ic_itemTest;
+        private IRepository<ic_item_ie, long> _ic_item_ie;
+        private IRepository<ic_item_ieTest, long> _ic_item_ieTest;
+        private IRepository<ic_item_inventory, long> _ic_item_inventory;
+        private IRepository<ic_item_pur, long> _ic_item_pur;
+        private IRepository<ic_item_purTest, long> _ic_item_purTest;
+        private IRepository<ic_item_stock, long> _ic_item_stock;
+        private IRepository<ic_plan, long> _ic_plan;
+        private IRepository<ic_planTest, long> _ic_planTest;
+        private IRepository<ic_check, long> _ic_check;
+        private IRepository<ic_factory_details, long> _ic_factory_details;
+        private IRepository<ic_factory_detailsTest, long> _ic_factory_detailsTest;
+
+
+        private IRepository<in_kd_bom, long> _kd_bom;
+        private IRepository<ic_bom, long> _ic_bom;
+        private IRepository<ic_bom_child, long> _ic_bom_child;
+        private IRepository<ic_substitute, long> _ic_substitute;
+        private IRepository<ic_substitute_all, long> _ic_substitute_all;
+        private IRepository<ic_substitute_all_dtl, long> _ic_substitute_all_dtl;
+
+        private IRepository<ext_xref, long> _ext_xref;
+        private IRepository<ext_xrefTest, long> _ext_xrefTest;
+
+
+        private readonly BusinessDbContext _businessDbContext;
+        private readonly BusinessExtDbContext _businessExtDbContext;
+
+        public ExtJobService(
+         IRepository<in_kd_material, long> kd_material,
+         IRepository<ic_item, long> ic_item,
+         IRepository<ic_itemTest, long> ic_itemTest,
+         IRepository<ic_item_ie, long> ic_item_ie,
+         IRepository<ic_item_ieTest, long> ic_item_ieTest,
+         IRepository<ic_item_inventory, long> ic_item_inventory,
+         IRepository<ic_item_pur, long> ic_item_pur,
+         IRepository<ic_item_purTest, long> ic_item_purTest,
+         IRepository<ic_item_stock, long> ic_item_stock,
+         IRepository<ic_plan, long> ic_plan,
+         IRepository<ic_planTest, long> ic_planTest,
+         IRepository<ic_check, long> ic_check,
+         IRepository<ic_factory_details, long> ic_factory_details,
+         IRepository<ic_factory_detailsTest, long> ic_factory_detailsTest,
+         IRepository<in_kd_bom, long> kd_bom,
+         IRepository<ic_bom, long> ic_bom,
+         IRepository<ic_bom_child, long> ic_bom_child,
+         IRepository<ic_substitute, long> ic_substitute,
+         IRepository<ic_substitute_all, long> ic_substitute_all,
+         IRepository<ic_substitute_all_dtl, long> ic_substitute_all_dtl,
+         IRepository<ext_xref, long> ext_xref,
+         IRepository<ext_xrefTest, long> ext_xrefTest,
+          BusinessDbContext businessDbContext,
+          BusinessExtDbContext businessExtDbContext
+         )
+        {
+            _kd_material= kd_material;
+            _ic_item= ic_item;
+            _ic_itemTest = ic_itemTest;
+            _ic_item_ie = ic_item_ie;
+            _ic_item_ieTest = ic_item_ieTest;
+            _ic_item_inventory = ic_item_inventory;
+            _ic_item_pur= ic_item_pur;
+            _ic_item_purTest = ic_item_purTest;
+            _ic_item_stock = ic_item_stock;
+            _ic_plan= ic_plan;
+            _ic_planTest = ic_planTest;
+            _ic_check = ic_check;
+            _ic_factory_details= ic_factory_details;
+            _ic_factory_detailsTest = ic_factory_detailsTest;
+            _kd_bom = kd_bom;
+            _ic_bom= ic_bom;
+            _ic_bom_child= ic_bom_child;
+            _ic_substitute= ic_substitute;
+            _ic_substitute_all= ic_substitute_all;
+            _ic_substitute_all_dtl= ic_substitute_all_dtl;
+            _ext_xref= ext_xref;
+            _ext_xrefTest = ext_xrefTest;
+            _businessDbContext = businessDbContext;
+            _businessExtDbContext = businessExtDbContext;
+        }
+
+        /// <summary>
+        /// 处理物料
+        /// </summary>
+        public async void DoExt()
+        {
+           await DoMaterial();
+            //DoBom();
+        }
+
+        /// <summary>
+        /// 处理物料
+        /// </summary>
+        public async Task DoMaterial()
+        {
+           var extMaterials=_kd_material.GetListAsync();
+            var ic_items = _ic_itemTest.GetListAsync(p => p.factory_id == 10101 && p.org_id == 101 && p.tenant_id == 101);
+            var ic_factory_detailss = _ic_factory_detailsTest.GetListAsync(p => p.factory_id == 10101 && p.org_id == 101 && p.tenant_id == 101);
+            var ic_item_ies = _ic_item_ieTest.GetListAsync(p => p.factory_id == 10101 && p.org_id == 101 && p.tenant_id == 101);
+            var ic_item_purs = _ic_item_purTest.GetListAsync(p => p.factory_id == 10101 && p.org_id == 101 && p.tenant_id == 101);
+            var ic_plans = _ic_planTest.GetListAsync(p => p.factory_id == 10101 && p.org_id == 101 && p.tenant_id == 101);
+
+
+            List<ic_itemTest> ic_itemListAdd = new List<ic_itemTest>();
+            List<ic_itemTest> ic_itemListUpdate = new List<ic_itemTest>();
+            List<ic_factory_detailsTest> ic_factory_detailsListAdd = new List<ic_factory_detailsTest>();
+            List<ic_factory_detailsTest> ic_factory_detailsListUpdate = new List<ic_factory_detailsTest>();
+            List<ic_item_ieTest> ic_item_ieListAdd = new List<ic_item_ieTest>();
+            List<ic_item_ieTest> ic_item_ieListUpdate = new List<ic_item_ieTest>();
+            List<ic_item_purTest> ic_item_purListAdd = new List<ic_item_purTest>();
+            List<ic_item_purTest> ic_item_purListUpdate = new List<ic_item_purTest>();
+            List<ic_planTest> ic_planListAdd = new List<ic_planTest>();
+            List<ic_planTest> ic_planListUpdate = new List<ic_planTest>();
+            List<ext_xrefTest> ext_xrefList = new List<ext_xrefTest>();
+            if (extMaterials != null)
+            {
+                extMaterials.Result.ForEach(ext =>
+                {
+                    if (ic_items != null && ic_items.Result.Exists(a => a.number == ext.FNumber))
+                    {
+                        var ic_item = ic_items.Result.FirstOrDefault(a => a.number == ext.FNumber);
+                        if (ic_item != null)
+                        {
+                            ic_item.number = ext.FNumber;
+                            ic_item.name = ext.FName_2052;
+                            ic_item.model = ext.FSpecification_2052;
+                            ic_item.full_name = ext.FDescription_2052;
+                            ic_item.fms_number = ext.FOldNumber;
+                            //0.配置类 1. 2.委外加工 3.外购 4.虚拟件
+                            ic_item.erp_cls = ext.FErpClsID == "配置类" ? 0 : ext.FErpClsID == "自制" ? 1 : ext.FErpClsID == "委外" ? 2 : ext.FErpClsID == "外购" ? 3 : ext.FErpClsID == "虚拟" ? 4 : ext.FErpClsID == "费用" ? 5 : ext.FErpClsID == "服务" ? 6 : -1;
+                            ic_item.source = ext.FDataSource;
+                            ic_item.iskeyitem = ext.FIsKitting == "是" ? 1 : 0;
+                            ic_item.gross_weight = ext.FGROSSWEIGHT;
+                            ic_item.net_weight = ext.FNETWEIGHT;
+                            ic_item.maund = ext.FWEIGHTUNITID_Name;
+                            ic_item.cubic_measure = ext.FVOLUMEUNITID_Name;
+                            ic_item.length = ext.FLENGTH;
+                            ic_item.width = ext.FWIDTH;
+                            ic_item.height = ext.FHEIGHT;
+                            ic_item.size = ext.FVOLUME;
+                            ic_item.allowpur = ext.FIsPurchase == "是" ? 1 : 0;
+                            ic_item.allowsale = ext.FIsSale == "是" ? 1 : 0;
+                            ic_item.allowmanu = ext.FIsProduce == "是" ? 1 : 0;
+                            ic_item.allowout = ext.FIsSubContract == "是" ? 1 : 0;
+                            ic_item.allowbatch = ext.F_SFJLPCH == "是" ? 1 : 0;
+                            ic_itemListUpdate.Add(ic_item);
+
+                            ext_xrefList.Add(new ext_xrefTest
+                            {
+                                dop_table_name = "ic_item",
+                                dop_id = ic_item.Id,
+                                dop_col1_name = "number",
+                                dop_col1_value = ic_item.number,
+                                other_sys_name = "kd",
+                                other_table_name = "in_kd_material",
+                                other_id = ext.Id,
+                                other_col1_name = "FNumber",
+                                other_col1_value = ext.FNumber
+                            });
+
+                            var ic_factory_detail = ic_factory_detailss.Result.FirstOrDefault(a => a.icitem_id == ic_item.Id);
+                            if (ic_factory_detail != null)
+                            {
+                                ic_factory_detail.product_line = ext.F_CPX_Name;
+                                ic_factory_detail.minpackqty = ext.FIncreaseQty;
+                                ic_factory_detailsListUpdate.Add(ic_factory_detail);
+                            }
+
+
+
+                            var ic_item_ie = ic_item_ies.Result.FirstOrDefault(a => a.icitem_id == ic_item.Id);
+                            if (ic_item_ie != null)
+                            {
+                                ic_item_ie.isbackflush = ext.FIsBatchManage == "是" ? 1 : 0;
+                                ic_item_ieListUpdate.Add(ic_item_ie);
+                            }
+
+
+                            var ic_item_pur = ic_item_purs.Result.FirstOrDefault(a => a.icitem_id == ic_item.Id);
+                            if (ic_item_pur != null)
+                            {
+                                ic_item_pur.icitem_name = ic_item.name;
+                                ic_item_pur.purchgroup = ext.FPurchaseGroupId_Name;
+                                ic_item_pur.purcher = ext.FPurchaserId_Name;
+                                ic_item_pur.purchase_unit = ext.FPurchaseUnitId_Name;
+                                ic_item_purListUpdate.Add(ic_item_pur);
+                            }
+
+
+                            var ic_plan = ic_plans.Result.FirstOrDefault(a => a.icitem_id == ic_item.Id);
+                            if (ic_plan != null)
+                            {
+                                ic_plan.icitem_name = ic_item.name;
+                                ic_plan.planner_name = ext.FPurchaseGroupId_Name;
+                                ic_plan.fix_leadtime = ext.FFixLeadTime;
+                                ic_plan.plan_trategy = ext.FPlanningStrategy == "MRP" ? 1 : 0;
+                                ic_plan.order_trategy = ext.FOrderPolicy == "LFL(批对批)" ? 1 : 0;
+                                ic_plan.order_inter_val = ext.FOrderIntervalTime;
+                                ic_plan.lead_time = ext.FVarLeadTime;
+                                ic_plan.bat_change_economy = ext.FVarLeadTimeLotSize;
+                                ic_plan.order_point = ext.FReOrderGood;
+                                ic_plan.secinv = ext.FPlanSafeStockQty;
+                                ic_planListUpdate.Add(ic_plan);
+                            }
+                        }
+                    }
+                    else
+                    {
+                        ic_itemTest item = new ic_itemTest(help.NextId());
+                        item.number = ext.FNumber;
+                        item.name = ext.FName_2052;
+                        item.model = ext.FSpecification_2052;
+                        item.full_name = ext.FDescription_2052;
+                        item.fms_number = ext.FOldNumber;
+                        //0.配置类 1. 2.委外加工 3.外购 4.虚拟件
+                        item.erp_cls = ext.FErpClsID == "配置类" ? 0 : ext.FErpClsID == "自制" ? 1 : ext.FErpClsID == "委外" ? 2 : ext.FErpClsID == "外购" ? 3 : ext.FErpClsID == "虚拟" ? 4 : ext.FErpClsID == "费用" ? 5 : ext.FErpClsID == "服务" ? 6 : -1;
+                        item.source = ext.FDataSource;
+                        item.iskeyitem = ext.FIsKitting == "是" ? 1 : 0;
+                        item.gross_weight = ext.FGROSSWEIGHT;
+                        item.net_weight = ext.FNETWEIGHT;
+                        item.maund = ext.FWEIGHTUNITID_Name;
+                        item.cubic_measure = ext.FVOLUMEUNITID_Name;
+                        item.length = ext.FLENGTH;
+                        item.width = ext.FWIDTH;
+                        item.height = ext.FHEIGHT;
+                        item.size = ext.FVOLUME;
+                        item.allowpur = ext.FIsPurchase == "是" ? 1 : 0;
+                        item.allowsale = ext.FIsSale == "是" ? 1 : 0;
+                        item.allowmanu = ext.FIsProduce == "是" ? 1 : 0;
+                        item.allowout = ext.FIsSubContract == "是" ? 1 : 0;
+                        item.allowbatch = ext.F_SFJLPCH == "是" ? 1 : 0;
+                        item.tenant_id = 101;//TODO
+                        item.factory_id = 10101;//TODO
+                        item.org_id = 101;//TODO
+                        item.IsDeleted = false;//TODO
+                        item.is_equipment = 0;
+                        item.item_level = 0;
+                        item.hb_level = 0;
+                        item.matatt = 0;
+                        item.picktype = 0;
+                        item.enable_warning = 0;
+                        ic_itemListAdd.Add(item);
+
+                        ext_xrefList.Add(new ext_xrefTest
+                        {
+                            dop_table_name = "ic_item",
+                            dop_id = item.Id,
+                            dop_col1_name = "number",
+                            dop_col1_value = item.number,
+                            other_sys_name = "kd",
+                            other_table_name = "in_kd_material",
+                            other_id = ext.Id,
+                            other_col1_name = "FNumber",
+                            other_col1_value = ext.FNumber
+                        });
+
+                        ic_factory_detailsListAdd.Add(new ic_factory_detailsTest(help.NextId())
+                        {
+                            icitem_id = item.Id,
+                            icitem_name = ext.FName_2052,
+                            tenant_id = 101,//TODO
+                            factory_id = 10101,////TODO
+                            org_id = 101,//TODO
+                            IsDeleted = false,//TODO
+                            pick_type = 0,
+                            stock_time = 0,
+                            batch_manager = 0,
+                            days_per = 0,
+                            default_chkloc = 0,
+                            default_chksp = 0,
+                            default_loc = 0,
+                            default_sp = 0,
+                            product_line = ext.F_CPX_Name,
+                            production_leadtime = 0,
+                            stock_leadtime = 0,
+                            transportation_leadtime = 0,
+                            order_leadtime = 0,
+                            minpackqty = ext.FIncreaseQty,
+                            minorderqty = 0
+                        });
+
+                        ic_item_ieListAdd.Add(new ic_item_ieTest(help.NextId())
+                        {
+                            icitem_id = item.Id,
+                            isbackflush = ext.FIsBatchManage == "是" ? 1 : 0,
+                            put_integer = 0,//TODO
+                            tenant_id = 101,//TODO
+                            factory_id = 10101,////TODO
+                            org_id = 101,//TODO
+                            IsDeleted = false,//TODO
+                        });
+
+                        ic_item_purListAdd.Add(new ic_item_purTest(help.NextId())
+                        {
+                            icitem_id = item.Id,
+                            icitem_name = item.name,
+                            currency_type = ext.FCurrencyId_Name == "人民币" ? 1 : 0,//TODO
+                            tenant_id = 101,//TODO
+                            factory_id = 10101,////TODO
+                            org_id = 101,//TODO
+                            IsDeleted = false,//TODO
+                            supplier_id = 0,
+                            purchgroup = ext.FPurchaseGroupId_Name,
+                            purcher = ext.FPurchaserId_Name,
+                            purchase_unit = ext.FPurchaseUnitId_Name
+                        });
+
+                        ic_planListAdd.Add(new ic_planTest(help.NextId())
+                        {
+                            icitem_id = item.Id,
+                            icitem_name = item.name,
+                            planner_name = ext.FPurchaseGroupId_Name,
+                            fix_leadtime = ext.FFixLeadTime,
+                            plan_trategy = ext.FPlanningStrategy == "MRP" ? 1 : 0,
+                            order_trategy = ext.FOrderPolicy == "LFL(批对批)" ? 1 : 0,
+                            order_inter_val = ext.FOrderIntervalTime,
+                            lead_time = ext.FVarLeadTime,
+                            bat_change_economy = ext.FVarLeadTimeLotSize,
+                            order_point = ext.FReOrderGood,
+                            secinv = ext.FPlanSafeStockQty,
+                            tenant_id = 101,//TODO
+                            factory_id = 10101,////TODO
+                            org_id = 101,//TODO
+                            IsDeleted = false,//TODO
+                        });
+                    }
+                });
+                if (ic_itemListAdd.Count > 0)
+                {
+                    await _ic_itemTest.InsertManyAsync(ic_itemListAdd);
+                    //_businessDbContext.ic_itemTest.AddRange(ic_itemListAdd);
+                    //await _businessDbContext.ic_itemTest.BatchInsertIntoAsync(_businessDbContext.ic_itemTest);
+                }
+                if (ic_itemListUpdate.Count > 0)
+                {
+                    await _ic_itemTest.UpdateManyAsync(ic_itemListUpdate);
+                }
+
+                if (ic_factory_detailsListAdd.Count > 0)
+                {
+                    await _ic_factory_detailsTest.InsertManyAsync(ic_factory_detailsListAdd);
+                    //_businessDbContext.ic_factory_detailsTest.AddRange(ic_factory_detailsListAdd);
+                    //await _businessDbContext.ic_factory_detailsTest.BatchInsertIntoAsync(_businessDbContext.ic_factory_detailsTest);
+                }
+                if (ic_factory_detailsListUpdate.Count > 0)
+                {
+                    await _ic_factory_detailsTest.UpdateManyAsync(ic_factory_detailsListUpdate);
+                }
+
+                if (ic_item_ieListAdd.Count > 0)
+                {
+                    await _ic_item_ieTest.InsertManyAsync(ic_item_ieListAdd);
+                    //_businessDbContext.ic_item_ieTest.AddRange(ic_item_ieListAdd);
+                    //await _businessDbContext.ic_item_ieTest.BatchInsertIntoAsync(_businessDbContext.ic_item_ieTest);
+                }
+                if (ic_item_ieListUpdate.Count > 0)
+                {
+                    await _ic_item_ieTest.UpdateManyAsync(ic_item_ieListUpdate);
+                }
+
+                if (ic_item_purListAdd.Count > 0)
+                {
+                    await _ic_item_purTest.InsertManyAsync(ic_item_purListAdd);
+                    //_businessDbContext.ic_item_purTest.AddRange(ic_item_purListAdd);
+                    //await _businessDbContext.ic_item_purTest.BatchInsertIntoAsync(_businessDbContext.ic_item_purTest);
+                }
+                if (ic_item_purListUpdate.Count > 0)
+                {
+                    await _ic_item_purTest.UpdateManyAsync(ic_item_purListUpdate);
+                }
+
+                if (ic_planListAdd.Count > 0)
+                {
+                    await _ic_planTest.InsertManyAsync(ic_planListAdd);
+                    //_businessDbContext.ic_planTest.AddRange(ic_planListAdd);
+                    //await _businessDbContext.ic_planTest.BatchInsertIntoAsync(_businessDbContext.ic_planTest);
+                }
+                if (ic_planListUpdate.Count > 0)
+                {
+                    await _ic_planTest.UpdateManyAsync(ic_planListUpdate);
+                }
+
+                if (ext_xrefList.Count > 0)
+                {
+                    await _ext_xrefTest.InsertManyAsync(ext_xrefList);
+                    //_businessExtDbContext.ext_xrefTest.AddRange(ext_xrefList);
+                    //await _businessExtDbContext.ext_xrefTest.BatchInsertIntoAsync(_businessExtDbContext.ext_xrefTest);
+                }
+            }
+            //var ic_items = _ic_item.GetListAsync(p=>p.factory_id==10101&&p.org_id==101&&p.tenant_id==101);
+            //var ic_factory_detailss = _ic_factory_details.GetListAsync(p => p.factory_id == 10101 && p.org_id == 101 && p.tenant_id == 101);
+            //var ic_item_ies = _ic_item_ie.GetListAsync(p => p.factory_id == 10101 && p.org_id == 101 && p.tenant_id == 101);
+            //var ic_item_purs = _ic_item_pur.GetListAsync(p => p.factory_id == 10101 && p.org_id == 101 && p.tenant_id == 101);
+            //var ic_plans = _ic_plan.GetListAsync(p => p.factory_id == 10101 && p.org_id == 101 && p.tenant_id == 101);
+
+
+            //List<ic_item> ic_itemListAdd = new List<ic_item>();
+            //List<ic_item> ic_itemListUpdate = new List<ic_item>();
+            //List<ic_factory_details> ic_factory_detailsListAdd = new List<ic_factory_details>();
+            //List<ic_factory_details> ic_factory_detailsListUpdate = new List<ic_factory_details>();
+            //List<ic_item_ie> ic_item_ieListAdd = new List<ic_item_ie>();
+            //List<ic_item_ie> ic_item_ieListUpdate = new List<ic_item_ie>();
+            //List<ic_item_pur> ic_item_purListAdd = new List<ic_item_pur>();
+            //List<ic_item_pur> ic_item_purListUpdate = new List<ic_item_pur>();
+            //List<ic_plan> ic_planListAdd = new List<ic_plan>();
+            //List<ic_plan> ic_planListUpdate = new List<ic_plan>();
+            //List<ext_xref> ext_xrefList = new List<ext_xref>();
+            // if (extMaterials != null)
+            //{
+            //     extMaterials.Result.ForEach(ext =>
+            //     {
+            //         if(ic_items != null && ic_items.Result.Exists(a=>a.number==ext.FNumber))
+            //         {
+            //             var ic_item = ic_items.Result.FirstOrDefault(a => a.number == ext.FNumber);
+            //             if (ic_item != null)
+            //             {
+            //                 ic_item.number = ext.FNumber;
+            //                 ic_item.name = ext.FName_2052;
+            //                 ic_item.model = ext.FSpecification_2052;
+            //                 ic_item.full_name = ext.FDescription_2052;
+            //                 ic_item.fms_number = ext.FOldNumber;
+            //                 //0.配置类 1. 2.委外加工 3.外购 4.虚拟件
+            //                 ic_item.erp_cls = ext.FErpClsID == "配置类" ? 0 : ext.FErpClsID == "自制" ? 1 : ext.FErpClsID == "委外" ? 2 : ext.FErpClsID == "外购" ? 3 : ext.FErpClsID == "虚拟" ? 4 : ext.FErpClsID == "费用" ? 5 : ext.FErpClsID == "服务" ? 6 : -1;
+            //                 ic_item.source = ext.FDataSource;
+            //                 ic_item.iskeyitem = ext.FIsKitting == "是" ? 1 : 0;
+            //                 ic_item.gross_weight = ext.FGROSSWEIGHT;
+            //                 ic_item.net_weight = ext.FNETWEIGHT;
+            //                 ic_item.maund = ext.FWEIGHTUNITID_Name;
+            //                 ic_item.cubic_measure = ext.FVOLUMEUNITID_Name;
+            //                 ic_item.length = ext.FLENGTH;
+            //                 ic_item.width = ext.FWIDTH;
+            //                 ic_item.height = ext.FHEIGHT;
+            //                 ic_item.size = ext.FVOLUME;
+            //                 ic_item.allowpur = ext.FIsPurchase == "是" ? 1 : 0;
+            //                 ic_item.allowsale = ext.FIsSale == "是" ? 1 : 0;
+            //                 ic_item.allowmanu = ext.FIsProduce == "是" ? 1 : 0;
+            //                 ic_item.allowout = ext.FIsSubContract == "是" ? 1 : 0;
+            //                 ic_item.allowbatch = ext.F_SFJLPCH == "是" ? 1 : 0;
+            //                 ic_itemListUpdate.Add(ic_item);
+
+            //                 ext_xrefList.Add(new ext_xref
+            //                 {
+            //                     dop_table_name = "ic_item",
+            //                     dop_id= ic_item.Id,
+            //                     dop_col1_name= "number",
+            //                     dop_col1_value= ic_item.number,
+            //                     other_sys_name="kd",
+            //                     other_table_name= "in_kd_material",
+            //                     other_id=ext.Id,
+            //                     other_col1_name= "FNumber",
+            //                     other_col1_value=ext.FNumber
+            //                 });
+
+            //                 var ic_factory_detail = ic_factory_detailss.Result.FirstOrDefault(a => a.icitem_id == ic_item.Id);
+            //                 if (ic_factory_detail != null)
+            //                 {
+            //                     ic_factory_detail.product_line = ext.F_CPX_Name;
+            //                     ic_factory_detail.minpackqty = ext.FIncreaseQty;
+            //                     ic_factory_detailsListUpdate.Add(ic_factory_detail);
+            //                 }
+
+
+
+            //                 var ic_item_ie = ic_item_ies.Result.FirstOrDefault(a => a.icitem_id == ic_item.Id);
+            //                 if (ic_item_ie != null)
+            //                 {
+            //                     ic_item_ie.isbackflush = ext.FIsBatchManage == "是" ? 1 : 0;
+            //                     ic_item_ieListUpdate.Add(ic_item_ie);
+            //                 }
+
+
+            //                 var ic_item_pur = ic_item_purs.Result.FirstOrDefault(a => a.icitem_id == ic_item.Id);
+            //                 if (ic_item_pur != null)
+            //                 {
+            //                     ic_item_pur.icitem_name = ic_item.name;
+            //                     ic_item_pur.purchgroup = ext.FPurchaseGroupId_Name;
+            //                     ic_item_pur.purcher = ext.FPurchaserId_Name;
+            //                     ic_item_pur.purchase_unit = ext.FPurchaseUnitId_Name;
+            //                     ic_item_purListUpdate.Add(ic_item_pur);
+            //                 }
+
+
+            //                 var ic_plan = ic_plans.Result.FirstOrDefault(a => a.icitem_id == ic_item.Id);
+            //                 if (ic_plan != null)
+            //                 {
+            //                     ic_plan.icitem_name = ic_item.name;
+            //                     ic_plan.planner_name = ext.FPurchaseGroupId_Name;
+            //                     ic_plan.fix_leadtime = ext.FFixLeadTime;
+            //                     ic_plan.plan_trategy = ext.FPlanningStrategy == "MRP" ? 1 : 0;
+            //                     ic_plan.order_trategy = ext.FOrderPolicy == "LFL(批对批)" ? 1 : 0;
+            //                     ic_plan.order_inter_val = ext.FOrderIntervalTime;
+            //                     ic_plan.lead_time = ext.FVarLeadTime;
+            //                     ic_plan.bat_change_economy = ext.FVarLeadTimeLotSize;
+            //                     ic_plan.order_point = ext.FReOrderGood;
+            //                     ic_plan.secinv = ext.FPlanSafeStockQty;
+            //                     ic_planListUpdate.Add(ic_plan);
+            //                 }
+            //             }
+            //         }
+            //         else
+            //         {
+            //             ic_item item = new ic_item(help.NextId());
+            //             item.number = ext.FNumber;
+            //             item.name = ext.FName_2052;
+            //             item.model = ext.FSpecification_2052;
+            //             item.full_name = ext.FDescription_2052;
+            //             item.fms_number = ext.FOldNumber;
+            //             //0.配置类 1. 2.委外加工 3.外购 4.虚拟件
+            //             item.erp_cls = ext.FErpClsID == "配置类" ? 0 : ext.FErpClsID == "自制" ? 1 : ext.FErpClsID == "委外" ? 2 : ext.FErpClsID == "外购" ? 3 : ext.FErpClsID == "虚拟" ? 4 : ext.FErpClsID == "费用" ? 5: ext.FErpClsID == "服务" ? 6: - 1;
+            //             item.source = ext.FDataSource;
+            //             item.iskeyitem = ext.FIsKitting == "是" ? 1 : 0;
+            //             item.gross_weight = ext.FGROSSWEIGHT;
+            //             item.net_weight = ext.FNETWEIGHT;
+            //             item.maund = ext.FWEIGHTUNITID_Name;
+            //             item.cubic_measure = ext.FVOLUMEUNITID_Name;
+            //             item.length = ext.FLENGTH;
+            //             item.width = ext.FWIDTH;
+            //             item.height = ext.FHEIGHT;
+            //             item.size = ext.FVOLUME;
+            //             item.allowpur = ext.FIsPurchase == "是" ? 1 : 0;
+            //             item.allowsale = ext.FIsSale == "是" ? 1 : 0;
+            //             item.allowmanu = ext.FIsProduce == "是" ? 1 : 0;
+            //             item.allowout = ext.FIsSubContract == "是" ? 1 : 0;
+            //             item.allowbatch = ext.F_SFJLPCH == "是" ? 1 : 0;
+            //             item.tenant_id = 101;//TODO
+            //             item.factory_id = 10101;//TODO
+            //             item.org_id = 101;//TODO
+            //             item.IsDeleted = false;//TODO
+            //             item.is_equipment = 0;
+            //             item.item_level = 0;
+            //             item.hb_level = 0;
+            //             item.matatt = 0;
+            //             item.picktype = 0;
+            //             item.enable_warning = 0;
+            //             ic_itemListAdd.Add(item);
+
+            //             ext_xrefList.Add(new ext_xref
+            //             {
+            //                 dop_table_name = "ic_item",
+            //                 dop_id = item.Id,
+            //                 dop_col1_name = "number",
+            //                 dop_col1_value = item.number,
+            //                 other_sys_name = "kd",
+            //                 other_table_name = "in_kd_material",
+            //                 other_id = ext.Id,
+            //                 other_col1_name = "FNumber",
+            //                 other_col1_value = ext.FNumber
+            //             });
+
+            //             ic_factory_detailsListAdd.Add(new ic_factory_details(help.NextId())
+            //             {
+            //                 icitem_id = item.Id,
+            //                 icitem_name = ext.FName_2052,
+            //                 tenant_id = 101,//TODO
+            //                 factory_id = 10101,////TODO
+            //                 org_id = 101,//TODO
+            //                 IsDeleted = false,//TODO
+            //                 pick_type= 0,
+            //                 stock_time= 0,
+            //                 batch_manager=0,
+            //                 days_per=0,
+            //                 default_chkloc=0,
+            //                 default_chksp=0,
+            //                 default_loc=0,
+            //                 default_sp=0,
+            //                 product_line = ext.F_CPX_Name,
+            //                 production_leadtime= 0,
+            //                 stock_leadtime= 0, 
+            //                 transportation_leadtime=0,
+            //                 order_leadtime = 0,
+            //                 minpackqty = ext.FIncreaseQty,
+            //                 minorderqty =0
+            //             });
+
+            //             ic_item_ieListAdd.Add(new ic_item_ie(help.NextId())
+            //             {
+            //                 icitem_id = item.Id,
+            //                 isbackflush = ext.FIsBatchManage == "是" ? 1 : 0,
+            //                 put_integer=0,//TODO
+            //                 tenant_id = 101,//TODO
+            //                 factory_id = 10101,////TODO
+            //                 org_id = 101,//TODO
+            //                 IsDeleted = false,//TODO
+            //             });
+
+            //             ic_item_purListAdd.Add(new ic_item_pur(help.NextId())
+            //             {
+            //                 icitem_id = item.Id,
+            //                 icitem_name = item.name,
+            //                 currency_type= ext.FCurrencyId_Name == "人民币" ? 1 : 0,//TODO
+            //                 tenant_id=101,//TODO
+            //                 factory_id=10101,////TODO
+            //                 org_id =101,//TODO
+            //                 IsDeleted =false,//TODO
+            //                 supplier_id=0,
+            //                 purchgroup = ext.FPurchaseGroupId_Name,
+            //                 purcher = ext.FPurchaserId_Name,
+            //                 purchase_unit = ext.FPurchaseUnitId_Name
+            //             });
+
+            //             ic_planListAdd.Add(new ic_plan(help.NextId())
+            //             {
+            //                 icitem_id = item.Id,
+            //                 icitem_name = item.name,
+            //                 planner_name = ext.FPurchaseGroupId_Name,
+            //                 fix_leadtime = ext.FFixLeadTime,
+            //                 plan_trategy = ext.FPlanningStrategy == "MRP" ? 1 : 0,
+            //                 order_trategy = ext.FOrderPolicy == "LFL(批对批)" ? 1 : 0,
+            //                 order_inter_val = ext.FOrderIntervalTime,
+            //                 lead_time = ext.FVarLeadTime,
+            //                 bat_change_economy = ext.FVarLeadTimeLotSize,
+            //                 order_point = ext.FReOrderGood,
+            //                 secinv = ext.FPlanSafeStockQty,
+            //                 tenant_id = 101,//TODO
+            //                 factory_id = 10101,////TODO
+            //                 org_id = 101,//TODO
+            //                 IsDeleted = false,//TODO
+            //             });
+            //         }
+            //     });
+            //     if(ic_itemListAdd.Count>0)
+            //     {
+            //         await _ic_item.InsertManyAsync(ic_itemListAdd);
+            //     }
+            //     if (ic_itemListUpdate.Count > 0)
+            //     {
+            //         await _ic_item.UpdateManyAsync(ic_itemListUpdate);
+            //     }
+
+            //     if (ic_factory_detailsListAdd.Count > 0)
+            //     {
+            //         await _ic_factory_details.InsertManyAsync(ic_factory_detailsListAdd);
+            //     }
+            //     if (ic_factory_detailsListUpdate.Count > 0)
+            //     {
+            //         await _ic_factory_details.UpdateManyAsync(ic_factory_detailsListUpdate);
+            //     }
+
+            //     if (ic_item_ieListAdd.Count > 0)
+            //     {
+            //         await _ic_item_ie.InsertManyAsync(ic_item_ieListAdd);
+            //     }
+            //     if (ic_item_ieListUpdate.Count > 0)
+            //     {
+            //         await _ic_item_ie.UpdateManyAsync(ic_item_ieListUpdate);
+            //     }
+
+            //     if (ic_item_purListAdd.Count > 0)
+            //     {
+            //         await _ic_item_pur.InsertManyAsync(ic_item_purListAdd);
+            //     }
+            //     if (ic_item_purListUpdate.Count > 0)
+            //     {
+            //         await _ic_item_pur.UpdateManyAsync(ic_item_purListUpdate);
+            //     }
+
+            //     if (ic_planListAdd.Count > 0)
+            //     {
+            //         await _ic_plan.InsertManyAsync(ic_planListAdd);
+            //     }
+            //     if (ic_planListUpdate.Count > 0)
+            //     {
+            //         await _ic_plan.UpdateManyAsync(ic_planListUpdate);
+            //     }
+
+            //     if (ext_xrefList.Count > 0)
+            //     {
+            //         await _ext_xref.UpdateManyAsync(ext_xrefList);
+            //     }
+            // }
+        }
+        /// <summary>
+        /// 处理物料清单
+        /// </summary>
+        public void DoBom()
+        {
+            LogManager.Configuration.Install(new NLog.Config.InstallationContext());
+        }
+    }
+}

+ 0 - 6
MicroServices/Business/Business.Application/WMS/SyncKingdeeAppService.cs

@@ -41,11 +41,5 @@ namespace Business.ResourceExamineManagement
         {
             throw new NotImplementedException();
         }
-
-        public async Task<string> ReceiveResult(SeorderentryDto input)
-        {
-            var test = _mysql_ic_item.GetListAsync().Result;
-            return JsonConvert.SerializeObject(test);
-        }
     }
 }

+ 1 - 0
MicroServices/Business/Business.EntityFrameworkCore/Business.EntityFrameworkCore.csproj

@@ -22,6 +22,7 @@
     <PackageReference Include="Volo.Abp.PermissionManagement.EntityFrameworkCore" Version="6.0.0" />
     <PackageReference Include="Volo.Abp.SettingManagement.EntityFrameworkCore" Version="6.0.3" />
     <PackageReference Include="Volo.Abp.TenantManagement.EntityFrameworkCore" Version="6.0.0" />
+    <PackageReference Include="XiaoYang.EntityFrameworkCore.Bulk.MySql" Version="6.0.29" />
   </ItemGroup>
 
   <ItemGroup>

+ 2 - 2
MicroServices/Business/Business.EntityFrameworkCore/EntityFrameworkCore/Bang/BussinessBangDbContextOptionsConfigurer.cs

@@ -8,13 +8,13 @@ namespace Business.EntityFrameworkCore
         public static void Configure(DbContextOptionsBuilder<BusinessBangDbContext> dbContextOptions, string connectionString)
         {
             /* This is the single point to configure DbContextOptions for MultipleDbContextEfCoreDemoDbContext */
-            dbContextOptions.UseMySql(connectionString, MySqlServerVersion.LatestSupportedServerVersion);
+            dbContextOptions.UseMySql(connectionString, MySqlServerVersion.LatestSupportedServerVersion, o => o.UseBulk());
         }
 
         public static void Configure( DbContextOptionsBuilder<BusinessDbContext> dbContextOptions,DbConnection connection)
         {
             /* This is the single point to configure DbContextOptions for MultipleDbContextEfCoreDemoDbContext */
-            dbContextOptions.UseMySql(connection, MySqlServerVersion.LatestSupportedServerVersion);
+            dbContextOptions.UseMySql(connection, MySqlServerVersion.LatestSupportedServerVersion, o => o.UseBulk());
         }
     }
 }

+ 5 - 0
MicroServices/Business/Business.EntityFrameworkCore/EntityFrameworkCore/DOP/BusinessDbContext.cs

@@ -28,14 +28,19 @@ namespace Business.EntityFrameworkCore
         public DbSet<ic_bom_child> ic_bom_child { get; set; }
         public DbSet<ic_check> ic_check { get; set; }
         public DbSet<ic_factory_details> ic_factory_details { get; set; }
+        public DbSet<ic_factory_detailsTest> ic_factory_detailsTest { get; set; }
         public DbSet<ic_item> ic_item { get; set; }
+        public DbSet<ic_itemTest> ic_itemTest { get; set; }
         public DbSet<ic_item_ie> ic_item_ie { get; set; }
+        public DbSet<ic_item_ieTest> ic_item_ieTest { get; set; }
         public DbSet<ic_item_inventory> ic_item_inventory { get; set; }
         public DbSet<ic_item_pur> ic_item_pur { get; set; }
+        public DbSet<ic_item_purTest> ic_item_purTest { get; set; }
         public DbSet<ic_item_stock> ic_item_stock { get; set; }
         public DbSet<ic_item_stockoccupy> ic_item_stockoccupy { get; set; }
         public DbSet<ic_metering_unit> ic_metering_unit { get; set; }
         public DbSet<ic_plan> ic_plan { get; set; }
+        public DbSet<ic_planTest> ic_planTest { get; set; }
         public DbSet<ic_substitute> ic_substitute { get; set; }
         public DbSet<ic_substitute_all> ic_substitute_all { get; set; }
         public DbSet<ic_substitute_all_dtl> ic_substitute_all_dtl { get; set; }

+ 2 - 2
MicroServices/Business/Business.EntityFrameworkCore/EntityFrameworkCore/DOP/BussinessDbContextOptionsConfigurer.cs

@@ -8,13 +8,13 @@ namespace Business.EntityFrameworkCore
         public static void Configure(DbContextOptionsBuilder<BusinessDbContext> dbContextOptions, string connectionString)
         {
             /* This is the single point to configure DbContextOptions for MultipleDbContextEfCoreDemoDbContext */
-            dbContextOptions.UseMySql(connectionString, MySqlServerVersion.LatestSupportedServerVersion);
+            dbContextOptions.UseMySql(connectionString, MySqlServerVersion.LatestSupportedServerVersion, o => o.UseBulk());
         }
 
         public static void Configure( DbContextOptionsBuilder<BusinessDbContext> dbContextOptions,DbConnection connection)
         {
             /* This is the single point to configure DbContextOptions for MultipleDbContextEfCoreDemoDbContext */
-            dbContextOptions.UseMySql(connection, MySqlServerVersion.LatestSupportedServerVersion);
+            dbContextOptions.UseMySql(connection, MySqlServerVersion.LatestSupportedServerVersion, o => o.UseBulk());
         }
     }
 }

+ 3 - 1
MicroServices/Business/Business.EntityFrameworkCore/EntityFrameworkCore/Ext/BusinessExtDbContext.cs

@@ -13,7 +13,9 @@ namespace Business.EntityFrameworkCore
     public class BusinessExtDbContext : AbpDbContext<BusinessExtDbContext>
     {
         public DbSet<in_kd_material> material { get; set; }
-        public DbSet<in_kd_bom> bom { get; set; }      
+        public DbSet<in_kd_bom> bom { get; set; }   
+        public DbSet<ext_xref> ext_xref { get; set; }
+        public DbSet<ext_xrefTest> ext_xrefTest { get; set; }
         public BusinessExtDbContext(DbContextOptions<BusinessExtDbContext> options)
             : base(options)
         {

+ 2 - 2
MicroServices/Business/Business.EntityFrameworkCore/EntityFrameworkCore/Ext/BussinessExtDbContextOptionsConfigurer.cs

@@ -9,13 +9,13 @@ namespace Business.EntityFrameworkCore
         public static void Configure(DbContextOptionsBuilder<BusinessExtDbContext> dbContextOptions,string connectionString)
         {
             /* This is the single point to configure DbContextOptions for MultipleDbContextEfCoreDemoDbContext */
-            dbContextOptions.UseMySql(connectionString, MySqlServerVersion.LatestSupportedServerVersion);
+            dbContextOptions.UseMySql(connectionString, MySqlServerVersion.LatestSupportedServerVersion, o => o.UseBulk());
         }
 
         public static void Configure(DbContextOptionsBuilder<BusinessExtDbContext> dbContextOptions,DbConnection connection)
         {
             /* This is the single point to configure DbContextOptions for MultipleDbContextEfCoreDemoDbContext */
-            dbContextOptions.UseMySql(connection, MySqlServerVersion.LatestSupportedServerVersion);
+            dbContextOptions.UseMySql(connection, MySqlServerVersion.LatestSupportedServerVersion, o => o.UseBulk());
         }
     }
 }

+ 12 - 3
MicroServices/Business/Business.Host/BusinessHostModule.cs

@@ -112,8 +112,8 @@ namespace Business
 
                 q.AddTrigger(opts => opts
                     .ForJob(jobKey)
-                    .WithIdentity("DemoJob-trigger")
-                    .WithCronSchedule("0 45 11 * * ?")
+                    .WithIdentity("SyncDataJob-trigger")
+                    .WithCronSchedule("0 16 1 * * ?")
                     .WithDescription("定时同步MySQL基础数据到MongoDB"));
 
                 var NLogJobKey = new JobKey("NLogJob");
@@ -121,9 +121,18 @@ namespace Business
 
                 q.AddTrigger(opts => opts
                     .ForJob(NLogJobKey)
-                    .WithIdentity("DemoJob-trigger")
+                    .WithIdentity("NLogJob-trigger")
                     .WithCronSchedule("0 0 0 * * ?")
                     .WithDescription("定时创建NLog日志按月分表"));
+
+                var ExtJobKey = new JobKey("ExtJob");
+                q.AddJob<ExtJob>(opts => opts.WithIdentity(ExtJobKey));
+
+                q.AddTrigger(opts => opts
+                    .ForJob(ExtJobKey)
+                    .WithIdentity("ExtJob-trigger")
+                    .WithCronSchedule("0 50 0 * * ?")
+                    .WithDescription("定时处理金蝶同步到Ext数据库的数据"));
             });
             context.Services.AddQuartzServer(options =>
             {

+ 8810 - 0
MicroServices/Business/Business.Host/Migrations/20230324022835_RemoveRequire.Designer.cs

@@ -0,0 +1,8810 @@
+// <auto-generated />
+using System;
+using Business.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Infrastructure;
+using Microsoft.EntityFrameworkCore.Migrations;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+using Volo.Abp.EntityFrameworkCore;
+
+#nullable disable
+
+namespace Business.Migrations
+{
+    [DbContext(typeof(BusinessMigrationDbContext))]
+    [Migration("20230324022835_RemoveRequire")]
+    partial class RemoveRequire
+    {
+        protected override void BuildTargetModel(ModelBuilder modelBuilder)
+        {
+#pragma warning disable 612, 618
+            modelBuilder
+                .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.MySql)
+                .HasAnnotation("ProductVersion", "6.0.5")
+                .HasAnnotation("Relational:MaxIdentifierLength", 64);
+
+            modelBuilder.Entity("Bussiness.Model.MES.IC.ic_bom", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<DateTime?>("begin_day")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("生效日期");
+
+                    b.Property<string>("biller")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("图片");
+
+                    b.Property<int>("bom_num")
+                        .HasColumnType("int")
+                        .HasComment("序号");
+
+                    b.Property<string>("bom_number")
+                        .HasMaxLength(20)
+                        .HasColumnType("varchar(20)")
+                        .HasComment("bom单编号");
+
+                    b.Property<string>("chartnumber")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("图表编号");
+
+                    b.Property<DateTime?>("check_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("检验时间");
+
+                    b.Property<string>("checker")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("检验人");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<DateTime?>("end_day")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("失效日期");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<int>("fse_status")
+                        .HasColumnType("int")
+                        .HasComment("使用状态");
+
+                    b.Property<long>("icitem_id")
+                        .HasColumnType("bigint")
+                        .HasComment("物料id");
+
+                    b.Property<string>("item_name")
+                        .HasMaxLength(200)
+                        .HasColumnType("varchar(200)")
+                        .HasComment("物料名称");
+
+                    b.Property<string>("item_number")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料代码");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("product_designer")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("产品设计员");
+
+                    b.Property<string>("product_principal")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("生产负责人");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<string>("unit")
+                        .HasMaxLength(20)
+                        .HasColumnType("varchar(20)")
+                        .HasComment("单位");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<DateTime?>("use_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("bom创建时间");
+
+                    b.Property<string>("user")
+                        .HasMaxLength(20)
+                        .HasColumnType("varchar(20)")
+                        .HasComment("bom创建人");
+
+                    b.Property<string>("version")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("版本");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("ic_bom", (string)null);
+
+                    b.HasComment("物料BOM");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.MES.IC.ic_bom_child", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<int>("backflush")
+                        .HasColumnType("int")
+                        .HasComment("是否倒冲");
+
+                    b.Property<DateTime?>("begin_day")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("生效日期");
+
+                    b.Property<long>("bom_id")
+                        .HasColumnType("bigint")
+                        .HasComment("bom主键");
+
+                    b.Property<string>("bom_number")
+                        .HasMaxLength(20)
+                        .HasColumnType("varchar(20)")
+                        .HasComment("bom单编号");
+
+                    b.Property<int>("child_num")
+                        .HasColumnType("int")
+                        .HasComment("序号");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<DateTime?>("end_day")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("失效日期");
+
+                    b.Property<int>("entryid")
+                        .HasColumnType("int")
+                        .HasComment("顺序号");
+
+                    b.Property<int>("erp_cls")
+                        .HasColumnType("int")
+                        .HasComment("物料属性");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<int>("haveicsubs")
+                        .HasColumnType("int")
+                        .HasComment("存在替代关系");
+
+                    b.Property<long>("icitem_id")
+                        .HasColumnType("bigint")
+                        .HasComment("物料id");
+
+                    b.Property<string>("icitem_ids")
+                        .HasMaxLength(2000)
+                        .HasColumnType("varchar(2000)")
+                        .HasComment("组合模式");
+
+                    b.Property<int>("is_bom")
+                        .HasColumnType("int")
+                        .HasComment("是否是BOM");
+
+                    b.Property<int>("is_replace")
+                        .HasColumnType("int")
+                        .HasComment("是否群组替代");
+
+                    b.Property<int>("iskeyitem")
+                        .HasColumnType("int")
+                        .HasComment("是否关键件");
+
+                    b.Property<string>("item_name")
+                        .HasMaxLength(200)
+                        .HasColumnType("varchar(200)")
+                        .HasComment("物料名称");
+
+                    b.Property<string>("item_number")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料代码");
+
+                    b.Property<string>("note")
+                        .HasMaxLength(1000)
+                        .HasColumnType("varchar(1000)")
+                        .HasComment("备注");
+
+                    b.Property<DateTime?>("op_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("操作时间");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<decimal?>("qty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("用量");
+
+                    b.Property<decimal?>("scrap")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("损耗率");
+
+                    b.Property<string>("substitute_code")
+                        .HasMaxLength(20)
+                        .HasColumnType("varchar(20)")
+                        .HasComment("群组代码");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<int>("type")
+                        .HasColumnType("int")
+                        .HasComment("物料类型");
+
+                    b.Property<string>("unit")
+                        .HasMaxLength(20)
+                        .HasColumnType("varchar(20)")
+                        .HasComment("单位");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<int>("use_status")
+                        .HasColumnType("int")
+                        .HasComment("使用状态");
+
+                    b.Property<string>("version")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("版本");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("ic_bom_child", (string)null);
+
+                    b.HasComment("物料BOM明细");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.MES.IC.ic_factory_details", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<int?>("batch_manager")
+                        .HasColumnType("int")
+                        .HasComment("是否采用业务批次管理");
+
+                    b.Property<decimal?>("check_cycle")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("盘点周期");
+
+                    b.Property<string>("check_cycunit")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("盘点周期单位");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<decimal?>("daily_consume")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("日消耗量");
+
+                    b.Property<int?>("days_per")
+                        .HasColumnType("int")
+                        .HasComment("每周_月第天");
+
+                    b.Property<long?>("default_chkloc")
+                        .HasColumnType("bigint")
+                        .HasComment("默认待检仓库");
+
+                    b.Property<long?>("default_chksp")
+                        .HasColumnType("bigint")
+                        .HasComment("默认待检仓位");
+
+                    b.Property<long?>("default_loc")
+                        .HasColumnType("bigint")
+                        .HasComment("默认仓库");
+
+                    b.Property<string>("default_manager")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("默认仓管员");
+
+                    b.Property<long?>("default_sp")
+                        .HasColumnType("bigint")
+                        .HasComment("默认仓位");
+
+                    b.Property<string>("factory_fode")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("工厂编码");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<decimal?>("high_limit")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("最高存量");
+
+                    b.Property<long>("icitem_id")
+                        .HasColumnType("bigint")
+                        .HasComment("物料id");
+
+                    b.Property<string>("icitem_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料名称");
+
+                    b.Property<string>("item_shelve")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("货架信息");
+
+                    b.Property<DateTime?>("last_checkdate")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("上次盘点日期");
+
+                    b.Property<decimal?>("low_limit")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("最低存量");
+
+                    b.Property<decimal?>("mat_enter_days")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("原材料入库时间/天");
+
+                    b.Property<decimal?>("minorderqty")
+                        .IsRequired()
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("最小订单量");
+
+                    b.Property<decimal?>("minpackqty")
+                        .IsRequired()
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("最小包装量");
+
+                    b.Property<string>("note")
+                        .HasMaxLength(1000)
+                        .HasColumnType("varchar(1000)")
+                        .HasComment("特殊备注");
+
+                    b.Property<decimal?>("order_leadtime")
+                        .IsRequired()
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("下单前置期_天");
+
+                    b.Property<decimal?>("ordissu_days")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("工单发料时间/天");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long?>("pick_type")
+                        .HasColumnType("bigint")
+                        .HasComment("领料类型");
+
+                    b.Property<decimal?>("prd_out_days")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("成品发货时间/天");
+
+                    b.Property<decimal?>("prdenter_days")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("成品入库时间/天");
+
+                    b.Property<string>("product_line")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("产品线");
+
+                    b.Property<decimal?>("production_leadtime")
+                        .IsRequired()
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("生产中提前期_天");
+
+                    b.Property<decimal?>("qty_max")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("最大订货量");
+
+                    b.Property<decimal?>("raw_matreceiv_days")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("原材料收货处理时间/天");
+
+                    b.Property<decimal?>("stock_leadtime")
+                        .IsRequired()
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("仓库中提前期_天");
+
+                    b.Property<int?>("stock_time")
+                        .HasColumnType("int")
+                        .HasComment("是否需要库龄管理");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<decimal?>("transportation_leadtime")
+                        .IsRequired()
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("运输中提前期_天");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<string>("warehouse_note")
+                        .HasMaxLength(1000)
+                        .HasColumnType("varchar(1000)")
+                        .HasComment("库存备注");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("ic_factory_details", (string)null);
+
+                    b.HasComment("工厂物料明细表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.MES.IC.ic_item", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<int>("allowbatch")
+                        .HasColumnType("int")
+                        .HasComment("批号管理");
+
+                    b.Property<int>("allowmanu")
+                        .HasColumnType("int")
+                        .HasComment("允许生产");
+
+                    b.Property<int>("allowout")
+                        .HasColumnType("int")
+                        .HasComment("允许委外");
+
+                    b.Property<int>("allowpur")
+                        .HasColumnType("int")
+                        .HasComment("允许采购");
+
+                    b.Property<int>("allowsale")
+                        .HasColumnType("int")
+                        .HasComment("允许销售");
+
+                    b.Property<int?>("allowserial")
+                        .HasColumnType("int")
+                        .HasComment("序列号管理");
+
+                    b.Property<string>("box_model")
+                        .HasMaxLength(200)
+                        .HasColumnType("varchar(200)")
+                        .HasComment("盒贴规格");
+
+                    b.Property<string>("chart_number")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("图号");
+
+                    b.Property<string>("check_bybarcode")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("严格进行二维码数量校验");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<string>("cubic_measure")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("长度单位");
+
+                    b.Property<int?>("enable_warning")
+                        .HasColumnType("int")
+                        .HasComment("启用预警");
+
+                    b.Property<int>("erp_cls")
+                        .HasColumnType("int")
+                        .HasComment("物料属性");
+
+                    b.Property<string>("erp_cls_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料属性");
+
+                    b.Property<string>("erp_oldnumber")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("erp旧料号");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("fms_number")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("fms旧料号");
+
+                    b.Property<string>("full_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("全名");
+
+                    b.Property<string>("fversion")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("版本号");
+
+                    b.Property<decimal?>("gross_weight")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("毛重");
+
+                    b.Property<long?>("hb_level")
+                        .HasColumnType("bigint")
+                        .HasComment("环保等级");
+
+                    b.Property<decimal?>("height")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("高度");
+
+                    b.Property<int?>("is_equipment")
+                        .HasColumnType("int")
+                        .HasComment("是否为设备");
+
+                    b.Property<int>("iskeyitem")
+                        .HasColumnType("int")
+                        .HasComment("是否关键件");
+
+                    b.Property<long?>("item_level")
+                        .HasColumnType("bigint")
+                        .HasComment("物料等级");
+
+                    b.Property<decimal?>("length")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("长度");
+
+                    b.Property<long?>("matatt")
+                        .HasColumnType("bigint")
+                        .HasComment("物料类别");
+
+                    b.Property<string>("maund")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("重量单位");
+
+                    b.Property<string>("model")
+                        .HasMaxLength(200)
+                        .HasColumnType("varchar(200)")
+                        .HasComment("规格型号");
+
+                    b.Property<string>("name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料名称");
+
+                    b.Property<decimal?>("net_weight")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("净重");
+
+                    b.Property<string>("number")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料编码");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long?>("output_type_id")
+                        .HasColumnType("bigint")
+                        .HasComment("出库类型");
+
+                    b.Property<string>("photo")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("图片");
+
+                    b.Property<long?>("picktype")
+                        .HasColumnType("bigint")
+                        .HasComment("领料类型");
+
+                    b.Property<decimal?>("size")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("体积");
+
+                    b.Property<string>("source")
+                        .HasMaxLength(200)
+                        .HasColumnType("varchar(200)")
+                        .HasComment("来源");
+
+                    b.Property<decimal?>("standard_manhour")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("单位标准工时_小时");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<string>("unit")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("单位");
+
+                    b.Property<decimal?>("unit_qty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("单位包装数量");
+
+                    b.Property<decimal?>("unititem_amount")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("单位材料定额_元");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<decimal?>("width")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("宽度");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("ic_item", (string)null);
+
+                    b.HasComment("物料详情");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.MES.IC.ic_item_ie", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<string>("back_flush_sp")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("倒冲仓位");
+
+                    b.Property<string>("back_flush_stock")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("倒冲仓库");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long>("icitem_id")
+                        .HasColumnType("bigint")
+                        .HasComment("物料id");
+
+                    b.Property<string>("ir_note")
+                        .HasMaxLength(1000)
+                        .HasColumnType("varchar(1000)")
+                        .HasComment("ie备注");
+
+                    b.Property<int>("isbackflush")
+                        .HasColumnType("int")
+                        .HasComment("是否倒冲");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("product_principal")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("生产负责人");
+
+                    b.Property<int>("put_integer")
+                        .HasColumnType("int")
+                        .HasComment("投料自动取整");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("ic_item_ie", (string)null);
+
+                    b.HasComment("物料ie信息表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.MES.IC.ic_item_inventory", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<decimal?>("bal")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("金额");
+
+                    b.Property<string>("batch_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("批次号");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long>("icitem_stock_id")
+                        .HasColumnType("bigint")
+                        .HasComment("物料库存主键");
+
+                    b.Property<DateTime?>("kf_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("保质期时间");
+
+                    b.Property<decimal?>("kf_period")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("保质期时长");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<decimal?>("qty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("数量");
+
+                    b.Property<decimal?>("qty_lock")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("锁定库存");
+
+                    b.Property<DateTime?>("rq")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("日期");
+
+                    b.Property<decimal?>("sec_qty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("安全库存");
+
+                    b.Property<long>("stock_id")
+                        .HasColumnType("bigint")
+                        .HasComment("仓库id");
+
+                    b.Property<string>("stock_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("仓库名称");
+
+                    b.Property<string>("stock_place_code")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("库位编码");
+
+                    b.Property<long>("stock_place_id")
+                        .HasColumnType("bigint")
+                        .HasComment("库位id");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<string>("unit")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("单位");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("ic_item_inventory", (string)null);
+
+                    b.HasComment("物料库存明细表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.MES.IC.ic_item_pur", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("currency_type")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("币种");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("ic_plan_id")
+                        .HasColumnType("bigint")
+                        .HasComment("采购计划id");
+
+                    b.Property<long>("icitem_id")
+                        .HasColumnType("bigint")
+                        .HasComment("物料id");
+
+                    b.Property<string>("icitem_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料名称");
+
+                    b.Property<decimal?>("netpurchase_price")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("采购净价(不含税)");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("purchase_unit")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("采购计量单位");
+
+                    b.Property<string>("purcher")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("采购员");
+
+                    b.Property<string>("purchgroup")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("采购组");
+
+                    b.Property<long?>("supplier_id")
+                        .HasColumnType("bigint")
+                        .HasComment("供应商id");
+
+                    b.Property<string>("supplier_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应商名称");
+
+                    b.Property<string>("supplier_number")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应商编码");
+
+                    b.Property<decimal?>("taxrate")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("税率");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("ic_item_pur", (string)null);
+
+                    b.HasComment("物料采购报价单");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.MES.IC.ic_item_stock", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<string>("factory_fode")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("工厂编码");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long>("icitem_id")
+                        .HasColumnType("bigint")
+                        .HasComment("物料id");
+
+                    b.Property<string>("icitem_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料名称");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<decimal?>("quantity_in_transit")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("调拨在途数量");
+
+                    b.Property<decimal?>("sqty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("物料库存量");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("ic_item_stock", (string)null);
+
+                    b.HasComment("物料库存表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.MES.IC.ic_metering_unit", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long>("icitem_id")
+                        .HasColumnType("bigint")
+                        .HasComment("物料id");
+
+                    b.Property<string>("icitem_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料名称");
+
+                    b.Property<string>("order_unit")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("采购计量单位");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("product_unit")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("生产计量单位");
+
+                    b.Property<int>("qty_decimal")
+                        .HasColumnType("int")
+                        .HasComment("数量精度");
+
+                    b.Property<string>("sale_unit")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("销售计量单位");
+
+                    b.Property<string>("store_unit")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("库存计量单位");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<string>("unit")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("基本计量单位");
+
+                    b.Property<string>("unit_group")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("计量单位组");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("ic_metering_unit", (string)null);
+
+                    b.HasComment("物料计量表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.MES.IC.ic_plan", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<decimal?>("Shipping_date")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("发运提前期");
+
+                    b.Property<decimal?>("Warehousing_date")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("入库提前期");
+
+                    b.Property<int?>("aux_prop_plan")
+                        .HasColumnType("int")
+                        .HasComment("辅助属性参与计划运算");
+
+                    b.Property<decimal?>("bat_change_economy")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("变动提前期批量");
+
+                    b.Property<int?>("book_plan")
+                        .HasColumnType("int")
+                        .HasComment("是否需要进行订补货计划的运算");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<string>("factory_code")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("工厂编码");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<decimal?>("fix_leadtime")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("固定提前期(天)");
+
+                    b.Property<long>("icitem_id")
+                        .HasColumnType("bigint")
+                        .HasComment("物料id");
+
+                    b.Property<string>("icitem_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料名称");
+
+                    b.Property<int?>("isfixedreorder")
+                        .HasColumnType("int")
+                        .HasComment("设置为固定再订货点");
+
+                    b.Property<decimal?>("lead_time")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("变动提前期");
+
+                    b.Property<decimal?>("order_inter_val")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("订货间隔期_天");
+
+                    b.Property<decimal?>("order_point")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("再订货点");
+
+                    b.Property<int>("order_trategy")
+                        .HasColumnType("int")
+                        .HasComment("订货策略");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<int>("plan_trategy")
+                        .HasColumnType("int")
+                        .HasComment("计划策略");
+
+                    b.Property<string>("planner_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("计划员");
+
+                    b.Property<string>("planner_num")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("计划员_工号");
+
+                    b.Property<string>("plannote")
+                        .HasMaxLength(1000)
+                        .HasColumnType("varchar(1000)")
+                        .HasComment("计划备注");
+
+                    b.Property<decimal?>("secinv")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("安全库存数量");
+
+                    b.Property<decimal?>("secinv_ratio")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("安全库存触发采购比例");
+
+                    b.Property<decimal?>("self_inspection_date")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("自检提前期");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<decimal?>("total_tqq")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("累计提前期");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("ic_plan", (string)null);
+
+                    b.HasComment("物料采购计划表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.MES.IC.ic_substitute", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("substitute_code")
+                        .HasMaxLength(20)
+                        .HasColumnType("varchar(20)")
+                        .HasComment("群组代码");
+
+                    b.Property<int?>("substitute_mode")
+                        .HasColumnType("int")
+                        .HasComment("替代方式");
+
+                    b.Property<int?>("substitute_strategy")
+                        .HasColumnType("int")
+                        .HasComment("替代策略");
+
+                    b.Property<int>("substitute_type")
+                        .HasColumnType("int")
+                        .HasComment("替代类型");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("ic_substitute", (string)null);
+
+                    b.HasComment("替代群组");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.MES.IC.ic_substitute_all", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<int?>("main_material")
+                        .HasColumnType("int")
+                        .HasComment("主料/替代料");
+
+                    b.Property<int>("order_num")
+                        .HasColumnType("int")
+                        .HasComment("群组优先级");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("product_line")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("产品线");
+
+                    b.Property<string>("replace_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("替代名称");
+
+                    b.Property<string>("replace_relation")
+                        .HasMaxLength(2000)
+                        .HasColumnType("varchar(2000)")
+                        .HasComment("替代关系");
+
+                    b.Property<string>("replace_way")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("替代方式");
+
+                    b.Property<string>("substitute_code")
+                        .HasMaxLength(20)
+                        .HasColumnType("varchar(20)")
+                        .HasComment("群组代码");
+
+                    b.Property<long>("substitute_id")
+                        .HasColumnType("bigint")
+                        .HasComment("群组主键");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<string>("use_model")
+                        .HasMaxLength(5000)
+                        .HasColumnType("varchar(5000)")
+                        .HasComment("使用机型");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("ic_substitute_all", (string)null);
+
+                    b.HasComment("物料替代多群组");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.MES.IC.ic_substitute_all_dtl", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long>("icitem_id")
+                        .HasColumnType("bigint")
+                        .HasComment("物料主键");
+
+                    b.Property<int?>("ismain")
+                        .HasColumnType("int")
+                        .HasComment("主/替");
+
+                    b.Property<int?>("num")
+                        .HasColumnType("int")
+                        .HasComment("序号");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<decimal?>("replace_amount")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("替代数量");
+
+                    b.Property<long>("substitute_allid")
+                        .HasColumnType("bigint")
+                        .HasComment("替代多群组主键");
+
+                    b.Property<string>("substitute_code")
+                        .HasMaxLength(20)
+                        .HasColumnType("varchar(20)")
+                        .HasComment("群组代码");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("ic_substitute_all_dtl", (string)null);
+
+                    b.HasComment("物料替代多群组明细");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Production.mes_moentry", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("fbill_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("订单编号");
+
+                    b.Property<long?>("fentry_id")
+                        .HasColumnType("bigint")
+                        .HasComment("订单行号");
+
+                    b.Property<long?>("moentry_moid")
+                        .HasColumnType("bigint")
+                        .HasComment("工单主表id");
+
+                    b.Property<string>("moentry_mono")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("工单编号");
+
+                    b.Property<decimal?>("morder_production_number")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("工单生产数量(计划数量)");
+
+                    b.Property<decimal?>("need_number")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("需求数量");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<decimal?>("remaining_number")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("剩余可用数量");
+
+                    b.Property<long?>("soentry_id")
+                        .HasColumnType("bigint")
+                        .HasComment("订单行id");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<string>("unit")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("单位");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_moentry", (string)null);
+
+                    b.HasComment("生成工单子表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Production.mes_mooccupy", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("fbill_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("订单号");
+
+                    b.Property<long?>("fentry_id")
+                        .HasColumnType("bigint")
+                        .HasComment("行号");
+
+                    b.Property<string>("fitem_name")
+                        .IsRequired()
+                        .HasMaxLength(500)
+                        .HasColumnType("varchar(500)")
+                        .HasComment("物料名称");
+
+                    b.Property<string>("fitem_number")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("物料编码");
+
+                    b.Property<string>("fmodel")
+                        .HasMaxLength(500)
+                        .HasColumnType("varchar(500)")
+                        .HasComment("规格型号");
+
+                    b.Property<string>("moo_cbr")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("变更人");
+
+                    b.Property<string>("moo_creason")
+                        .HasMaxLength(500)
+                        .HasColumnType("varchar(500)")
+                        .HasComment("变更原因");
+
+                    b.Property<DateTime?>("moo_ctime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("变更时间");
+
+                    b.Property<DateTime?>("moo_etime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("结束时间");
+
+                    b.Property<long?>("moo_id_billid")
+                        .HasColumnType("bigint")
+                        .HasComment("订单id");
+
+                    b.Property<string>("moo_id_type")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("类型--原始,分配");
+
+                    b.Property<string>("moo_mo")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("工单号");
+
+                    b.Property<long?>("moo_moid")
+                        .HasColumnType("bigint")
+                        .HasComment("工单id");
+
+                    b.Property<decimal?>("moo_qty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("占用量");
+
+                    b.Property<int?>("moo_state")
+                        .HasColumnType("int")
+                        .HasComment("占用状态-1占用  默认0");
+
+                    b.Property<DateTime?>("moo_stime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("开始时间");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_mooccupy", (string)null);
+
+                    b.HasComment("在制工单占用记录表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Production.mes_morder", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<string>("bom_number")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("bom编码");
+
+                    b.Property<DateTime?>("convey_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("下达日期");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("fmodel")
+                        .HasMaxLength(500)
+                        .HasColumnType("varchar(500)")
+                        .HasComment("规格型号");
+
+                    b.Property<string>("fms_number")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("fms旧料号");
+
+                    b.Property<decimal?>("inspection_number")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("报检数量");
+
+                    b.Property<decimal?>("inventory_number")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("入库数量");
+
+                    b.Property<DateTime?>("mat_end_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("基于物料结束时间");
+
+                    b.Property<DateTime?>("mat_start_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("基于物料开始时间");
+
+                    b.Property<DateTime?>("moentry_etime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("生产工单结束日期");
+
+                    b.Property<long?>("moentry_prd")
+                        .HasColumnType("bigint")
+                        .HasComment("生产组织id");
+
+                    b.Property<string>("moentry_prdname")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("生产组织名称");
+
+                    b.Property<int?>("moentry_startup_status")
+                        .HasColumnType("int")
+                        .HasComment("启动状态");
+
+                    b.Property<DateTime?>("moentry_stime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("生产工单开始日期");
+
+                    b.Property<DateTime?>("moentry_sys_etime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("系统建议完工时间");
+
+                    b.Property<DateTime?>("moentry_sys_stime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("系统建议开工时间");
+
+                    b.Property<long?>("moentry_wrkc")
+                        .HasColumnType("bigint")
+                        .HasComment("工作中心id");
+
+                    b.Property<string>("moentry_wrkcname")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("工作中心名称");
+
+                    b.Property<string>("morder_batchno")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("工单批号--(批号管理的物料出入库要使用)");
+
+                    b.Property<DateTime?>("morder_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("生产工单日期");
+
+                    b.Property<string>("morder_fstate")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("前状态--计划、下达、完成、关闭");
+
+                    b.Property<string>("morder_icitem_type")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("工单所属物料类型");
+
+                    b.Property<decimal?>("morder_need_time")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("工单所需工时");
+
+                    b.Property<string>("morder_no")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("生产工单编号");
+
+                    b.Property<decimal?>("morder_production_number")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("工单生产数量(计划数量)");
+
+                    b.Property<string>("morder_progress")
+                        .HasMaxLength(1000)
+                        .HasColumnType("varchar(1000)")
+                        .HasComment("工单进度");
+
+                    b.Property<string>("morder_state")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("生产工单状态(订单状态:初始,下达,暂停、完成)");
+
+                    b.Property<string>("morder_type")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("生产工单类型(类型:计划工单、销售工单、委外工单、预测工单)");
+
+                    b.Property<decimal?>("need_number")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("需求数量");
+
+                    b.Property<decimal?>("notice_qty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("已开入库通知单数量");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("overdue_Remark")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("逾期原因备注");
+
+                    b.Property<long?>("parent_id")
+                        .HasColumnType("bigint")
+                        .HasComment("上级工单id");
+
+                    b.Property<DateTime?>("pause_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("最近暂停时间");
+
+                    b.Property<decimal?>("picking_qty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("已领料数量");
+
+                    b.Property<DateTime?>("planner_end_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("计划员设定结束时间");
+
+                    b.Property<string>("planner_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("计划员名称");
+
+                    b.Property<string>("planner_num")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("计划员工号");
+
+                    b.Property<DateTime?>("planner_start_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("计划员设定开始时间");
+
+                    b.Property<string>("product_code")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("产品代码");
+
+                    b.Property<string>("product_name")
+                        .HasMaxLength(500)
+                        .HasColumnType("varchar(500)")
+                        .HasComment("产品名称");
+
+                    b.Property<string>("project_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("项目名称");
+
+                    b.Property<decimal?>("qualified_number")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("合格数量");
+
+                    b.Property<DateTime?>("reality_end_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("实际结束时间");
+
+                    b.Property<DateTime?>("reality_start_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("实际开始时间");
+
+                    b.Property<long?>("relation_moid")
+                        .HasColumnType("bigint")
+                        .HasComment("关联工单id");
+
+                    b.Property<string>("relation_mono")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("关联编号");
+
+                    b.Property<decimal?>("remaining_number")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("剩余可用数量");
+
+                    b.Property<DateTime?>("restart_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("最近重启时间");
+
+                    b.Property<DateTime?>("start_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("开始时间");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<string>("unit")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("单位");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<decimal?>("work_number")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("报工数量");
+
+                    b.Property<string>("work_order_type")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("工单类型(类型:发货工单、试产工单、备库工单、常规工单、返工工单)");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_morder", (string)null);
+
+                    b.HasComment("工单主表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Production.mes_morder_loss_time", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<string>("card_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("用工卡号");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long>("dept_id")
+                        .HasColumnType("bigint")
+                        .HasComment("责任单位id");
+
+                    b.Property<string>("dept_name")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("责任单位名称");
+
+                    b.Property<string>("description")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("描述");
+
+                    b.Property<DateTime>("end_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("损失结束时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<int>("is_stop_production")
+                        .HasColumnType("int")
+                        .HasComment("是否停产(0未停产,1停产)");
+
+                    b.Property<decimal>("loss_work_hours")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("损失时间(用户输入)");
+
+                    b.Property<long>("morder_id")
+                        .HasColumnType("bigint")
+                        .HasComment("生产工单id");
+
+                    b.Property<string>("morder_no")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("生产工单编号");
+
+                    b.Property<int>("morder_no_row")
+                        .HasColumnType("int")
+                        .HasComment("生产工单编号");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("reason")
+                        .IsRequired()
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("损失时间原因");
+
+                    b.Property<long>("recorder_id")
+                        .HasColumnType("bigint")
+                        .HasComment("记录人id");
+
+                    b.Property<string>("recorder_name")
+                        .IsRequired()
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("记录人名称");
+
+                    b.Property<decimal>("staff_qty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("人员数量");
+
+                    b.Property<DateTime>("start_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("损失开始时间");
+
+                    b.Property<decimal>("sys_loss_time")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("系统计算损失时间");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<long>("workc_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工作中心id");
+
+                    b.Property<string>("workc_name")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("工作中心名称");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_morder_loss_time", (string)null);
+
+                    b.HasComment("工单损失时间表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Production.mes_oorder", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<string>("bom_number")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("bom编码");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("ffms_number")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("fms旧料号");
+
+                    b.Property<decimal?>("inspection_number")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("报检数量");
+
+                    b.Property<decimal?>("inventory_number")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("入库数量");
+
+                    b.Property<int?>("moentry_on")
+                        .HasColumnType("int")
+                        .HasComment("启动状态");
+
+                    b.Property<decimal?>("morder_production_number")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("工单生产数量(计划数量)");
+
+                    b.Property<string>("morder_progress")
+                        .HasMaxLength(500)
+                        .HasColumnType("varchar(500)")
+                        .HasComment("工单进度");
+
+                    b.Property<int?>("need_icitem_status")
+                        .HasColumnType("int")
+                        .HasComment("所需物料是否充足  1-充足 0-缺料");
+
+                    b.Property<decimal?>("need_number")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("需求数量");
+
+                    b.Property<decimal?>("notice_qty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("已开通知单数量");
+
+                    b.Property<DateTime?>("ooentry_etime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("计划完工日期");
+
+                    b.Property<long?>("ooentry_prd")
+                        .HasColumnType("bigint")
+                        .HasComment("生产组织");
+
+                    b.Property<string>("ooentry_prdname")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("生产组织名称");
+
+                    b.Property<DateTime?>("ooentry_stime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("计划开工日期");
+
+                    b.Property<long?>("ooentry_wrkc")
+                        .HasColumnType("bigint")
+                        .HasComment("工作中心id");
+
+                    b.Property<string>("ooentry_wrkcname")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("工作中心名称");
+
+                    b.Property<DateTime?>("oorder_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("委外订单日期");
+
+                    b.Property<string>("oorder_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("生产工单编号");
+
+                    b.Property<string>("oorder_state")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("订单状态");
+
+                    b.Property<string>("oorder_type")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("生产工单类型");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<DateTime?>("pause_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("最近暂停时间");
+
+                    b.Property<string>("planner_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("计划员名称");
+
+                    b.Property<string>("planner_num")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("计划员工号");
+
+                    b.Property<string>("product_code")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("产品代码");
+
+                    b.Property<string>("product_name")
+                        .HasMaxLength(500)
+                        .HasColumnType("varchar(500)")
+                        .HasComment("产品名称");
+
+                    b.Property<string>("production_unit")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("加工单位");
+
+                    b.Property<string>("production_unit_code")
+                        .HasMaxLength(20)
+                        .HasColumnType("varchar(20)")
+                        .HasComment("加工单位编码");
+
+                    b.Property<string>("project_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("项目名称");
+
+                    b.Property<decimal?>("qualified_number")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("合格数量");
+
+                    b.Property<decimal?>("remaining_number")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("剩余可用数量");
+
+                    b.Property<DateTime?>("restart_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("最近重启时间");
+
+                    b.Property<int?>("sent_status")
+                        .HasColumnType("int")
+                        .HasComment("发料状态 1-待发料  2-已发料");
+
+                    b.Property<string>("specification_model")
+                        .HasMaxLength(500)
+                        .HasColumnType("varchar(500)")
+                        .HasComment("规格型号");
+
+                    b.Property<DateTime?>("start_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("开始时间");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<string>("unit")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("单位");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<decimal?>("work_number")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("报工数量");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_oorder", (string)null);
+
+                    b.HasComment("委外订单表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Production.mes_schedule_occupy", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<DateTime?>("end_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("结束时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<int?>("is_Locked")
+                        .HasColumnType("int")
+                        .HasComment("是否锁定 0-正常,1-锁定");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long?>("prd_org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("生产组织id");
+
+                    b.Property<DateTime?>("start_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("开始时间");
+
+                    b.Property<int?>("status")
+                        .HasColumnType("int")
+                        .HasComment("状态 0-待使用,1-已使用");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<long?>("work_calendar_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工作日历id");
+
+                    b.Property<long?>("work_center_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工作中心id");
+
+                    b.Property<decimal?>("working_minute")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("工作时长(h)");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_schedule_occupy", (string)null);
+
+                    b.HasComment("排程时间占用记录表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Production.mes_stockoccupy", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("fbill_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("订单编号");
+
+                    b.Property<long?>("fentry_id")
+                        .HasColumnType("bigint")
+                        .HasComment("订单行号");
+
+                    b.Property<string>("fitem_name")
+                        .HasMaxLength(200)
+                        .HasColumnType("varchar(200)")
+                        .HasComment("物料名称");
+
+                    b.Property<string>("fitem_number")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("物料编码");
+
+                    b.Property<string>("fmodel")
+                        .HasMaxLength(200)
+                        .HasColumnType("varchar(200)")
+                        .HasComment("规格型号");
+
+                    b.Property<decimal?>("occupyqty")
+                        .HasPrecision(20, 2)
+                        .HasColumnType("decimal(20,2)")
+                        .HasComment("占用量");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("soccupy_cby")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("变更人");
+
+                    b.Property<string>("soccupy_creason")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("变更原因");
+
+                    b.Property<DateTime?>("soccupy_ctime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("变更时间");
+
+                    b.Property<DateTime?>("soccupy_etime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("结束时间");
+
+                    b.Property<string>("soccupy_state")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("占用状态");
+
+                    b.Property<DateTime?>("soccupy_stime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("开始时间");
+
+                    b.Property<string>("soccupy_type")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("类型");
+
+                    b.Property<long?>("soentry_id")
+                        .HasColumnType("bigint")
+                        .HasComment("订单行id");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<long>("warehouse_id")
+                        .HasColumnType("bigint")
+                        .HasComment("仓库id");
+
+                    b.Property<string>("warehouse_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("仓库名称");
+
+                    b.Property<string>("warehouse_type")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("仓库类型");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_stockoccupy", (string)null);
+
+                    b.HasComment("成品库存占用表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.ProductionProcess.mes_loss_time_record", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<string>("cause")
+                        .HasMaxLength(500)
+                        .HasColumnType("varchar(500)")
+                        .HasComment("原因");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<string>("desc")
+                        .HasMaxLength(500)
+                        .HasColumnType("varchar(500)")
+                        .HasComment("问题描述");
+
+                    b.Property<DateTime?>("end_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("损失结束时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<int>("isstop")
+                        .HasColumnType("int")
+                        .HasComment("是否停线");
+
+                    b.Property<long>("morder_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工单id");
+
+                    b.Property<string>("morder_no")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("工单编号");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long>("product_line")
+                        .HasColumnType("bigint")
+                        .HasComment("生产产线");
+
+                    b.Property<long>("product_org")
+                        .HasColumnType("bigint")
+                        .HasComment("生产车间");
+
+                    b.Property<long>("record_id")
+                        .HasColumnType("bigint")
+                        .HasComment("记录人id");
+
+                    b.Property<string>("record_no")
+                        .HasColumnType("longtext")
+                        .HasComment("记录人工号");
+
+                    b.Property<DateTime>("record_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("记录时间");
+
+                    b.Property<DateTime?>("start_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("损失开始时间");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_loss_time_record", (string)null);
+
+                    b.HasComment("损失时间记录表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.ProductionProcess.mes_meaction", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long>("morder_id")
+                        .HasColumnType("bigint")
+                        .HasComment("生产工单id");
+
+                    b.Property<string>("morder_no")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("生产工单号");
+
+                    b.Property<long?>("oprby")
+                        .HasColumnType("bigint")
+                        .HasComment("操作人id");
+
+                    b.Property<string>("oprbyname")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("操作人名称");
+
+                    b.Property<string>("oprbyno")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("操作人工号");
+
+                    b.Property<DateTime?>("oprtime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("操作时间");
+
+                    b.Property<string>("oprtype")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("操作类型");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_meaction", (string)null);
+
+                    b.HasComment("生产动作表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.ProductionProcess.mes_mebycard", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("mebycard_byno")
+                        .IsRequired()
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("刷卡人员卡号");
+
+                    b.Property<long>("mebycard_moid")
+                        .HasColumnType("bigint")
+                        .HasComment("生产工单号id");
+
+                    b.Property<string>("mebycard_mono")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("生产工单号");
+
+                    b.Property<long>("mebycard_pid")
+                        .HasColumnType("bigint")
+                        .HasComment("工序id");
+
+                    b.Property<string>("mebycard_pname")
+                        .IsRequired()
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("工序名称");
+
+                    b.Property<string>("mebycard_pno")
+                        .IsRequired()
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("工序编码");
+
+                    b.Property<DateTime>("mebycard_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("刷卡时间");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_mebycard", (string)null);
+
+                    b.HasComment("产线刷卡记录");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.ProductionProcess.mes_merecheck", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long>("morder_id")
+                        .HasColumnType("bigint")
+                        .HasComment("生产工单id");
+
+                    b.Property<string>("morder_no")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("生产工单号");
+
+                    b.Property<long>("oprby")
+                        .HasColumnType("bigint")
+                        .HasComment("报检人id");
+
+                    b.Property<DateTime>("oprtime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("报检时间");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<decimal>("qty")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("报检数量");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_merecheck", (string)null);
+
+                    b.HasComment("生产报检记录表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.ProductionProcess.mes_mereport", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<decimal>("instock_qty")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("报工数量");
+
+                    b.Property<long>("morder_id")
+                        .HasColumnType("bigint")
+                        .HasComment("生产工单id");
+
+                    b.Property<string>("morder_no")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("生产工单号");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<decimal>("qty")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("报工数量");
+
+                    b.Property<long>("report_by")
+                        .HasColumnType("bigint")
+                        .HasComment("报工人id");
+
+                    b.Property<string>("report_byno")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("报工人工号");
+
+                    b.Property<DateTime>("report_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("报工时间");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_mereport", (string)null);
+
+                    b.HasComment("生产报工记录表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.ProductionProcess.mes_prd_sendmat", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("prdsm_by")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("制单人");
+
+                    b.Property<DateTime>("prdsm_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("单据日期");
+
+                    b.Property<DateTime?>("prdsm_ddate")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("配送日期");
+
+                    b.Property<long>("prdsm_moid")
+                        .HasColumnType("bigint")
+                        .HasComment("生产工单id");
+
+                    b.Property<string>("prdsm_mono")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("生产工单号");
+
+                    b.Property<string>("prdsm_no")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("单据编号");
+
+                    b.Property<string>("prdsm_note")
+                        .HasMaxLength(500)
+                        .HasColumnType("varchar(500)")
+                        .HasComment("备注");
+
+                    b.Property<string>("prdsm_po_no")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("关联委外po单号");
+
+                    b.Property<int?>("prdsm_po_row")
+                        .HasColumnType("int")
+                        .HasComment("关联委外po行号");
+
+                    b.Property<long>("prdsm_prdid")
+                        .HasColumnType("bigint")
+                        .HasComment("生产组织id");
+
+                    b.Property<decimal>("prdsm_qty")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("叫料数量");
+
+                    b.Property<string>("prdsm_reason")
+                        .HasMaxLength(500)
+                        .HasColumnType("varchar(500)")
+                        .HasComment("补料理由");
+
+                    b.Property<int?>("prdsm_state")
+                        .HasColumnType("int")
+                        .HasComment("状态");
+
+                    b.Property<string>("prdsm_type")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("单据类型 (发料、叫料、补料、退料)");
+
+                    b.Property<long>("prdsm_workcid")
+                        .HasColumnType("bigint")
+                        .HasComment("工作中心id");
+
+                    b.Property<int>("srcbill_state")
+                        .HasColumnType("int")
+                        .HasComment("源单状态");
+
+                    b.Property<int>("srcbill_type")
+                        .HasColumnType("int")
+                        .HasComment("原单类型");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_prd_sendmat", (string)null);
+
+                    b.HasComment("发料单");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.ProductionProcess.mes_prd_sendmat_list", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<int?>("fbackflush")
+                        .HasColumnType("int")
+                        .HasComment("是否倒冲");
+
+                    b.Property<decimal?>("fdiscard_aux_qty")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("报废数量");
+
+                    b.Property<string>("fisKey_item")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("子项属性");
+
+                    b.Property<string>("fitem_name")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("物料编码");
+
+                    b.Property<string>("fitem_number")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("物料编码");
+
+                    b.Property<string>("fmateriel_type")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("子项属性");
+
+                    b.Property<string>("fmodel")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("物料编码");
+
+                    b.Property<decimal?>("fqty_send_back")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("退料数量");
+
+                    b.Property<decimal?>("fqty_supply")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("补料数量");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("prdsm_breason")
+                        .HasMaxLength(500)
+                        .HasColumnType("varchar(500)")
+                        .HasComment("退料原因");
+
+                    b.Property<long>("prdsm_id")
+                        .HasColumnType("bigint")
+                        .HasComment("发料单id");
+
+                    b.Property<decimal?>("prdsml_cqtyper")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("确认单位数量");
+
+                    b.Property<string>("prdsml_procname")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("工序名称");
+
+                    b.Property<string>("prdsml_procno")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("工序编码");
+
+                    b.Property<decimal>("prdsml_qtyissued")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("已发数量");
+
+                    b.Property<decimal?>("prdsml_qtyper")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("单位数量");
+
+                    b.Property<decimal?>("prdsml_qtyplan")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("计划数量");
+
+                    b.Property<decimal?>("prdsml_qtyto")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("应发数量");
+
+                    b.Property<string>("prdsml_unit")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("计量单位");
+
+                    b.Property<long>("prdsml_whid")
+                        .HasColumnType("bigint")
+                        .HasComment("发料仓库id");
+
+                    b.Property<string>("prdsml_whname")
+                        .HasMaxLength(500)
+                        .HasColumnType("varchar(500)")
+                        .HasComment("发料仓库名称");
+
+                    b.Property<string>("prdsml_whno")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("发料仓库编码");
+
+                    b.Property<int?>("prsml_row")
+                        .HasColumnType("int")
+                        .HasComment("行号");
+
+                    b.Property<DateTime?>("send_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("计划发料日期");
+
+                    b.Property<string>("station")
+                        .IsRequired()
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("工位");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_prd_sendmat_list", (string)null);
+
+                    b.HasComment("发料单详情");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.ProductionProcess.mes_prdlog", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long?>("prdlog_by_id")
+                        .HasColumnType("bigint")
+                        .HasComment("执行人id");
+
+                    b.Property<string>("prdlog_by_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("执行人姓名");
+
+                    b.Property<int>("prdlog_entryid")
+                        .HasColumnType("int")
+                        .HasComment("行号");
+
+                    b.Property<string>("prdlog_no")
+                        .IsRequired()
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("业务类型");
+
+                    b.Property<string>("prdlog_note")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("内容");
+
+                    b.Property<DateTime?>("prdlog_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("执行时间");
+
+                    b.Property<string>("prdlog_type")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("业务类型");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_prdlog", (string)null);
+
+                    b.HasComment("生产操作日志");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.ProductionProcess.mes_product_work_time", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<string>("card_no")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("卡号");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("product_line")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("产线");
+
+                    b.Property<DateTime?>("start")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("开始时间");
+
+                    b.Property<DateTime?>("stop")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("结束时间");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<DateTime?>("work_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("生产时间记录id");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_product_work_time", (string)null);
+
+                    b.HasComment("mo的生产时间记录");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.ProductionProcess.mes_stock_enter", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long>("eby")
+                        .HasColumnType("bigint")
+                        .HasComment("入库人id");
+
+                    b.Property<string>("ebyname")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("入库人姓名");
+
+                    b.Property<DateTime>("edate")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("入库日期");
+
+                    b.Property<int>("eqty")
+                        .HasColumnType("int")
+                        .HasComment("入库数量");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("ffull_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("全名");
+
+                    b.Property<string>("fitem_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("物料名称");
+
+                    b.Property<string>("fitem_number")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("物料编码");
+
+                    b.Property<string>("fmodel")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("规格型号");
+
+                    b.Property<string>("order_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("工单号");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_stock_enter", (string)null);
+
+                    b.HasComment("入库单");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.ProductionProcess.mes_stock_out", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("eby")
+                        .HasColumnType("bigint")
+                        .HasComment("出库人id");
+
+                    b.Property<string>("eby_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("出库人姓名");
+
+                    b.Property<DateTime>("edate")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("出库日期");
+
+                    b.Property<int>("eqty")
+                        .HasColumnType("int")
+                        .HasComment("出库数量");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("ffull_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("全名");
+
+                    b.Property<string>("fitem_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("物料名称");
+
+                    b.Property<string>("fitem_number")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料编码");
+
+                    b.Property<string>("fmodel")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("规格型号");
+
+                    b.Property<string>("order_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("销售订单号");
+
+                    b.Property<int?>("order_number")
+                        .HasColumnType("int")
+                        .HasComment("订单行号");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("out_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("出库单号");
+
+                    b.Property<string>("shipn_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("发运通知单号");
+
+                    b.Property<string>("stock_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("仓库名称");
+
+                    b.Property<string>("stock_no")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("仓库编码");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<string>("unit")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("计量单位");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_stock_out", (string)null);
+
+                    b.HasComment("出库单");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.ProductionProcess.mes_swipe_card", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<string>("card_no")
+                        .IsRequired()
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("卡号");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<DateTime?>("off_line_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("下线时间");
+
+                    b.Property<string>("order_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("工单编号");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("product_line")
+                        .IsRequired()
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("生产产线");
+
+                    b.Property<string>("product_org")
+                        .IsRequired()
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("生产车间");
+
+                    b.Property<DateTime>("swipe_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("刷卡日期");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<int>("type")
+                        .HasColumnType("int")
+                        .HasComment("刷卡类型");
+
+                    b.Property<DateTime?>("up_line_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("上线时间");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_swipe_card", (string)null);
+
+                    b.HasComment("mes打卡记录表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Sale.crm_seorder", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<DateTime?>("audit_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("审核日期");
+
+                    b.Property<string>("auditor")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("审核人");
+
+                    b.Property<string>("bill_from")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("订单来源");
+
+                    b.Property<string>("bill_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("订单编号");
+
+                    b.Property<string>("biller")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("制单人");
+
+                    b.Property<bool>("closed")
+                        .HasColumnType("tinyint(1)")
+                        .HasComment("是否关闭1关闭0未关闭");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<long?>("create_dept")
+                        .HasColumnType("bigint")
+                        .HasComment("创建部门id");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<int?>("currency")
+                        .HasMaxLength(50)
+                        .HasColumnType("int")
+                        .HasComment("币种");
+
+                    b.Property<int?>("custom_id")
+                        .HasColumnType("int")
+                        .HasComment("客户id");
+
+                    b.Property<int?>("custom_level")
+                        .HasMaxLength(80)
+                        .HasColumnType("int")
+                        .HasComment("客户级别");
+
+                    b.Property<string>("custom_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("客户名称");
+
+                    b.Property<string>("custom_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("客户编码");
+
+                    b.Property<DateTime?>("date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("签订日期");
+
+                    b.Property<string>("emp_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("业务员名称");
+
+                    b.Property<string>("emp_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("业务员工号");
+
+                    b.Property<decimal?>("exchange_rate")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("汇率");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<DateTime?>("op_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("操作时间");
+
+                    b.Property<int?>("order_type")
+                        .HasColumnType("int")
+                        .HasComment("订单类别(销售、计划)");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<int?>("out_stock_type")
+                        .HasColumnType("int")
+                        .HasComment("销售出库类型");
+
+                    b.Property<string>("project_code")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("项目编号");
+
+                    b.Property<string>("project_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("项目名称");
+
+                    b.Property<DateTime?>("rdate")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("采购下单日期");
+
+                    b.Property<string>("sale_dept_code")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("销售部门编号");
+
+                    b.Property<long?>("sale_dept_id")
+                        .HasColumnType("bigint")
+                        .HasComment("销售部门id");
+
+                    b.Property<string>("sale_dept_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("销售部门名称");
+
+                    b.Property<int?>("sale_style")
+                        .HasColumnType("int")
+                        .HasComment("销售订单类型");
+
+                    b.Property<string>("sale_style_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("销售订单类型编码");
+
+                    b.Property<int?>("status")
+                        .HasColumnType("int")
+                        .HasComment("订单状态");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<int?>("trade_type")
+                        .HasColumnType("int")
+                        .HasComment("贸易类型");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<int?>("urgent")
+                        .HasColumnType("int")
+                        .HasComment("加急级别");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("crm_seorder", (string)null);
+
+                    b.HasComment("销售订单表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Sale.crm_seorderentry", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<DateTime?>("adjust_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("调整建议交期");
+
+                    b.Property<decimal?>("amount")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("金额");
+
+                    b.Property<decimal?>("aux_price_discount")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("实际含税单价");
+
+                    b.Property<string>("bill_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("销售订单编号");
+
+                    b.Property<string>("bom_number")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("BOM编号");
+
+                    b.Property<string>("contract_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("合同编号");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<long?>("create_dept")
+                        .HasColumnType("bigint")
+                        .HasComment("创建部门id");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<string>("custom_order_bill_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("客户订单号");
+
+                    b.Property<int?>("custom_order_entryid")
+                        .HasColumnType("int")
+                        .HasComment("客户订单行号");
+
+                    b.Property<string>("custom_order_itemno")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("客户料号");
+
+                    b.Property<DateTime?>("date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("最终交货日期");
+
+                    b.Property<decimal?>("deliver_count")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("发货数量(已出库数量)");
+
+                    b.Property<decimal?>("deliver_notice_count")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("发货通知单数量");
+
+                    b.Property<decimal?>("discount_amount")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("折扣额");
+
+                    b.Property<decimal?>("discount_rate")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("折扣率");
+
+                    b.Property<int?>("entry_seq")
+                        .HasColumnType("int")
+                        .HasComment("行号");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("fms_number")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("FMS旧料号");
+
+                    b.Property<bool?>("is_checked")
+                        .HasColumnType("tinyint(1)")
+                        .HasComment("是否完成检测,0未完成,1完成");
+
+                    b.Property<string>("item_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("产品名称");
+
+                    b.Property<string>("item_number")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("产品代码");
+
+                    b.Property<string>("map_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("代码名称");
+
+                    b.Property<string>("map_number")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("对应代码");
+
+                    b.Property<bool?>("mrp_closed")
+                        .HasColumnType("tinyint(1)")
+                        .HasComment("mrp关闭");
+
+                    b.Property<DateTime?>("op_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("操作时间");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("out_stock_type")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("出库类型");
+
+                    b.Property<DateTime?>("plan_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("客户要求交期");
+
+                    b.Property<string>("planner_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("计划员");
+
+                    b.Property<string>("planner_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("计划员_工号");
+
+                    b.Property<decimal?>("price")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("单价");
+
+                    b.Property<string>("progress")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("订单进度");
+
+                    b.Property<decimal?>("qty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("订单数量");
+
+                    b.Property<string>("remark")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("备注");
+
+                    b.Property<int?>("rnumber")
+                        .HasColumnType("int")
+                        .HasComment("评审次数");
+
+                    b.Property<int?>("rstate")
+                        .HasColumnType("int")
+                        .HasComment("评审状态");
+
+                    b.Property<string>("se_reject_reason")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("业务员工号");
+
+                    b.Property<long?>("seorder_id")
+                        .HasColumnType("bigint")
+                        .HasComment("销售订单id");
+
+                    b.Property<string>("soure_bill_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("源单编号");
+
+                    b.Property<string>("specification")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("规格型号");
+
+                    b.Property<bool>("state")
+                        .HasColumnType("tinyint(1)")
+                        .HasComment("数据状态标识 0停用 1启用");
+
+                    b.Property<DateTime?>("sys_capacity_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("系统建议交期(产能)");
+
+                    b.Property<DateTime?>("sys_material_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("系统建议交期(物料)");
+
+                    b.Property<decimal?>("tax_amtount")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("销项税额");
+
+                    b.Property<decimal?>("tax_price")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("含税单价");
+
+                    b.Property<decimal?>("tax_rate")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("税率");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<decimal?>("total_amount")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("价税合计");
+
+                    b.Property<string>("unit")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("单位");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<int?>("urgent")
+                        .HasColumnType("int")
+                        .HasComment("加急级别");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("crm_seorderentry", (string)null);
+
+                    b.HasComment("销售订单明细表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Sale.crm_seorderprog", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<string>("bill_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("销售订单编号");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<long?>("create_dept")
+                        .HasColumnType("bigint")
+                        .HasComment("创建部门id");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<int?>("entry_seq")
+                        .HasColumnType("int")
+                        .HasComment("销售订单行号");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long?>("seorder_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("销售订单id");
+
+                    b.Property<long?>("seprog_by_id")
+                        .HasColumnType("bigint")
+                        .HasComment("提交人id");
+
+                    b.Property<string>("seprog_by_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("提交人姓名");
+
+                    b.Property<DateTime?>("seprog_etime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("完成时间");
+
+                    b.Property<string>("seprog_stage")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("进度阶段");
+
+                    b.Property<long?>("seprog_stage_id")
+                        .HasColumnType("bigint")
+                        .HasComment("进度阶段id");
+
+                    b.Property<DateTime?>("seprog_stime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("开始时间");
+
+                    b.Property<int?>("seprog_type")
+                        .HasColumnType("int")
+                        .HasComment("进度类型");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("crm_seorderprog", (string)null);
+
+                    b.HasComment("销售订单进度表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Sale.crm_seorderreview", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("audit_procedure_id")
+                        .HasColumnType("bigint")
+                        .HasComment("当前审批步骤id");
+
+                    b.Property<string>("audit_procedure_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("当前审批步骤名称");
+
+                    b.Property<string>("bill_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("销售订单编号");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<int?>("entry_seq")
+                        .HasColumnType("int")
+                        .HasComment("销售订单行号");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("reject_reason")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("拒绝原因");
+
+                    b.Property<DateTime?>("review_adjust_time")
+                        .HasMaxLength(255)
+                        .HasColumnType("datetime(6)")
+                        .HasComment("可接受交期");
+
+                    b.Property<long?>("review_by_id")
+                        .HasColumnType("bigint")
+                        .HasComment("提交人id");
+
+                    b.Property<string>("review_by_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("提交人姓名");
+
+                    b.Property<string>("review_reject_level")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("拒绝等级");
+
+                    b.Property<string>("review_reject_remark")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("拒绝备注");
+
+                    b.Property<string>("review_result")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("评审结果");
+
+                    b.Property<DateTime?>("review_stime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("提交时间");
+
+                    b.Property<DateTime?>("review_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("评审时间");
+
+                    b.Property<string>("review_title")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("标题");
+
+                    b.Property<string>("review_type")
+                        .IsRequired()
+                        .HasColumnType("longtext")
+                        .HasComment("业务类型");
+
+                    b.Property<long?>("reviewer_id")
+                        .HasColumnType("bigint")
+                        .HasComment("评审人id");
+
+                    b.Property<string>("reviewer_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("评审人姓名");
+
+                    b.Property<long?>("seorder_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("销售订单id");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("crm_seorderreview", (string)null);
+
+                    b.HasComment("销售订单评审表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Sale.wms_prdprogress", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("prdprog_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("进度名称");
+
+                    b.Property<int?>("prdprog_seq")
+                        .IsRequired()
+                        .HasColumnType("int")
+                        .HasComment("进度顺序");
+
+                    b.Property<string>("prdprog_type")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("进度类型");
+
+                    b.Property<bool>("state")
+                        .HasColumnType("tinyint(1)")
+                        .HasComment("进度状态1启用0停用");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("wms_prdprogress", (string)null);
+
+                    b.HasComment("进度字典表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Sale.wms_shipnotice", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<string>("address")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("发运地址");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<DateTime>("shipnotice_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("发运时间");
+
+                    b.Property<string>("shipnotice_no")
+                        .IsRequired()
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("发运通知单号");
+
+                    b.Property<long?>("shipplan_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("发货计划id");
+
+                    b.Property<string>("shipplan_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("发货计划号");
+
+                    b.Property<string>("state")
+                        .IsRequired()
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("状态");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("wms_shipnotice", (string)null);
+
+                    b.HasComment("发运通知单");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Sale.wms_shipnoticelist", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<string>("address")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("发运地址");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long?>("shipnotice_custid")
+                        .HasColumnType("bigint")
+                        .HasComment("客户id");
+
+                    b.Property<string>("shipnotice_custname")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("客户名称");
+
+                    b.Property<string>("shipnotice_custno")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("客户编号");
+
+                    b.Property<long?>("shipnotice_id")
+                        .HasMaxLength(80)
+                        .HasColumnType("bigint")
+                        .HasComment("发货计划号");
+
+                    b.Property<decimal?>("shipplanl_fqty")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("实际发货数量");
+
+                    b.Property<decimal?>("shipplanl_iqty")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("计划发货数量");
+
+                    b.Property<int?>("shipplanl_soeid")
+                        .HasColumnType("int")
+                        .HasComment("销售单行号");
+
+                    b.Property<long?>("shipplanl_soid")
+                        .HasColumnType("bigint")
+                        .HasComment("销售单id");
+
+                    b.Property<string>("shipplanl_sono")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("销售单号");
+
+                    b.Property<long?>("shipplanlist_id")
+                        .HasColumnType("bigint")
+                        .HasComment("发货详情id");
+
+                    b.Property<string>("state")
+                        .IsRequired()
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("状态");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("wms_shipnoticelist", (string)null);
+
+                    b.HasComment("发运通知单详情清单");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Sale.wms_shipplan", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<DateTime?>("shipplan_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("发货计划时间");
+
+                    b.Property<string>("shipplan_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("发货计划编号");
+
+                    b.Property<string>("state")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("状态");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("wms_shipplan", (string)null);
+
+                    b.HasComment("发货计划表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SIM.sim_base", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<decimal?>("interval_days")
+                        .HasPrecision(10)
+                        .HasColumnType("decimal(10,0)")
+                        .HasComment("间隔天数");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<decimal?>("rise_cycle")
+                        .HasPrecision(10)
+                        .HasColumnType("decimal(10,0)")
+                        .HasComment("上升周期");
+
+                    b.Property<DateTime?>("rise_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("上升时间");
+
+                    b.Property<string>("sim_grade")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("sim等级");
+
+                    b.Property<int?>("sim_level")
+                        .HasColumnType("int")
+                        .HasComment("sim层级顺序");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("sim_base", (string)null);
+
+                    b.HasComment("sim基本表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SIM.sim_issue_type", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<string>("app_scenario")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("应用场景");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("duty_dept")
+                        .HasColumnType("bigint")
+                        .HasComment("责任部门id");
+
+                    b.Property<string>("duty_person")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("责任人");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("issue_grade")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("问题等级");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<string>("type_code")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("类别代码");
+
+                    b.Property<string>("type_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("类别名称");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("sim_issue_type", (string)null);
+
+                    b.HasComment("上升时间");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SIM.sim_plant", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("plant_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("事项名称");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("sim_plant", (string)null);
+
+                    b.HasComment("sim事项表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SIM.sim_user_relation", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long>("sim_id")
+                        .HasColumnType("bigint")
+                        .HasComment("base_sim表ID");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<long>("user_id")
+                        .HasColumnType("bigint")
+                        .HasComment("用户id");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("sim_user_relation", (string)null);
+
+                    b.HasComment("sim用户关联表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SRM.srm_po_list", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("currencytype")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("币别");
+
+                    b.Property<int?>("deliveryconfirmstate")
+                        .HasColumnType("int")
+                        .HasComment("交期确认状态");
+
+                    b.Property<decimal?>("esqty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("已入库数量");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("icitem_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("物料id");
+
+                    b.Property<string>("icitem_name")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("物料名称");
+
+                    b.Property<int?>("logisticsstate")
+                        .HasColumnType("int")
+                        .HasComment("物流状态");
+
+                    b.Property<string>("model")
+                        .HasMaxLength(200)
+                        .HasColumnType("varchar(200)")
+                        .HasComment("规格型号");
+
+                    b.Property<decimal?>("netprice")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("净价");
+
+                    b.Property<string>("number")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料编码");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<decimal?>("plan_qty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("计划数量");
+
+                    b.Property<string>("po_billno")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("po单号");
+
+                    b.Property<long?>("po_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("po单id");
+
+                    b.Property<string>("po_mono")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("关联工单号");
+
+                    b.Property<int?>("polist_row")
+                        .HasColumnType("int")
+                        .HasComment("行号");
+
+                    b.Property<string>("pr_billno")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("pr申请单号");
+
+                    b.Property<long?>("pr_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("pr申请单id");
+
+                    b.Property<long?>("pr_purchase_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("供应商id");
+
+                    b.Property<string>("pr_purchase_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应商名称");
+
+                    b.Property<decimal?>("price")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("含税单价");
+
+                    b.Property<decimal?>("procurement_rarr_date")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("采购到货日期");
+
+                    b.Property<decimal?>("pur_affirmdate")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("采购确认到货日期");
+
+                    b.Property<decimal?>("purchase_date")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("供应商交期");
+
+                    b.Property<decimal?>("qty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("订单数量");
+
+                    b.Property<DateTime?>("rarrdate")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("需求到货日期");
+
+                    b.Property<decimal?>("rate")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("税率");
+
+                    b.Property<int>("rnumber")
+                        .HasColumnType("int")
+                        .HasComment("评审次数");
+
+                    b.Property<decimal?>("rparrive_date")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("再计划到货日期");
+
+                    b.Property<decimal?>("rqty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("已收货数量");
+
+                    b.Property<int?>("rstate")
+                        .HasColumnType("int")
+                        .HasComment("评审状态");
+
+                    b.Property<decimal?>("shippedqty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("已发货数量");
+
+                    b.Property<int?>("state")
+                        .HasColumnType("int")
+                        .HasComment("数据状态标识");
+
+                    b.Property<long?>("stock_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("收货仓库id");
+
+                    b.Property<string>("stock_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("收货仓库名称");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<decimal?>("total_price")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("总价");
+
+                    b.Property<long?>("unit")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("单位");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("srm_po_list", (string)null);
+
+                    b.HasComment("采购订单明细详情");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SRM.srm_po_main", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<int?>("bill_type")
+                        .HasColumnType("int")
+                        .HasComment("金蝶单据类型值");
+
+                    b.Property<int?>("confirmstate")
+                        .HasColumnType("int")
+                        .HasComment("确认状态");
+
+                    b.Property<string>("contact")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应商联系人");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("currency")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("币别");
+
+                    b.Property<string>("deliveryaddress")
+                        .HasMaxLength(200)
+                        .HasColumnType("varchar(200)")
+                        .HasComment("收货地址");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<int?>("financialstate")
+                        .HasColumnType("int")
+                        .HasComment("财务状态");
+
+                    b.Property<int?>("logisticsstate")
+                        .HasColumnType("int")
+                        .HasComment("物流状态");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("po_billno")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("PO单号");
+
+                    b.Property<long?>("po_delivery")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("交货方式");
+
+                    b.Property<int?>("po_express")
+                        .HasColumnType("int")
+                        .HasComment("是否加急");
+
+                    b.Property<string>("po_note")
+                        .HasMaxLength(1000)
+                        .HasColumnType("varchar(1000)")
+                        .HasComment("备注");
+
+                    b.Property<int?>("po_order_type")
+                        .HasColumnType("int")
+                        .HasComment("单据类型");
+
+                    b.Property<long?>("po_purchase_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("供应商id");
+
+                    b.Property<string>("po_purchase_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应商名称");
+
+                    b.Property<string>("po_purchaser")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("采购员");
+
+                    b.Property<string>("po_purchaser_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("采购员工号");
+
+                    b.Property<DateTime?>("po_ssend_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("下单日期");
+
+                    b.Property<decimal?>("po_tax_rate")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("税率");
+
+                    b.Property<decimal?>("po_total")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("订单总价");
+
+                    b.Property<long?>("purchasing_orgid")
+                        .HasColumnType("bigint")
+                        .HasComment("采购组织id");
+
+                    b.Property<string>("purchasing_orgname")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("采购组织名称");
+
+                    b.Property<DateTime?>("review_rtime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("评审通过时间");
+
+                    b.Property<decimal?>("rnumber")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("评审次数");
+
+                    b.Property<int?>("rstate")
+                        .HasColumnType("int")
+                        .HasComment("评审状态");
+
+                    b.Property<int?>("state")
+                        .HasColumnType("int")
+                        .HasComment("数据状态");
+
+                    b.Property<long?>("supplier_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("供应商id");
+
+                    b.Property<string>("supplier_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应商名称");
+
+                    b.Property<string>("supplier_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应商编号");
+
+                    b.Property<string>("supplierdddress")
+                        .HasMaxLength(200)
+                        .HasColumnType("varchar(200)")
+                        .HasComment("供应地址");
+
+                    b.Property<string>("suppliertelephone")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应商联系人电话");
+
+                    b.Property<string>("telephone")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("采购联系人电话");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("srm_po_main", (string)null);
+
+                    b.HasComment("采购订单");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SRM.srm_po_occupy", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("bill_no")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("客户订单id");
+
+                    b.Property<string>("cby")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("变更人");
+
+                    b.Property<string>("creason")
+                        .HasMaxLength(1000)
+                        .HasColumnType("varchar(1000)")
+                        .HasComment("变更原因");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<DateTime?>("ctime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("变更时间");
+
+                    b.Property<long?>("eid")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("客户订单行id");
+
+                    b.Property<int>("entry_id")
+                        .HasColumnType("int")
+                        .HasComment("行号");
+
+                    b.Property<DateTime?>("etime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("结束时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long?>("polist_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("采购订单id");
+
+                    b.Property<int?>("polist_row")
+                        .HasColumnType("int")
+                        .HasComment("采购订单行号");
+
+                    b.Property<decimal?>("qty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("占用量");
+
+                    b.Property<int?>("state")
+                        .HasColumnType("int")
+                        .HasComment("占用状态");
+
+                    b.Property<DateTime?>("stime")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("开始时间");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<string>("type")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("类型");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("srm_po_occupy", (string)null);
+
+                    b.HasComment("采购订单占用详情");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SRM.srm_pr_main", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("currencytype")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("币种");
+
+                    b.Property<int?>("entity_id")
+                        .HasColumnType("int")
+                        .HasComment("工单行号");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("icitem_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("物料id");
+
+                    b.Property<string>("icitem_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料名称");
+
+                    b.Property<decimal?>("old_apply_aqty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("已申请数量");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<decimal?>("pr_aqty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("申请数量");
+
+                    b.Property<string>("pr_billno")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("pr单号");
+
+                    b.Property<DateTime?>("pr_bsarrive_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("采购员建议到货日期");
+
+                    b.Property<string>("pr_mono")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("关联工单号");
+
+                    b.Property<DateTime?>("pr_oarrive_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("订单到货日期");
+
+                    b.Property<int?>("pr_order_type")
+                        .HasColumnType("int")
+                        .HasComment("单据类型");
+
+                    b.Property<decimal?>("pr_orderprice")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("订单价格(含税)");
+
+                    b.Property<DateTime?>("pr_parrive_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("计划到达日期");
+
+                    b.Property<decimal?>("pr_price")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("采购净价(不含税)");
+
+                    b.Property<DateTime?>("pr_psend_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("计划下单日期");
+
+                    b.Property<DateTime?>("pr_pur_affirm_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("采购确认到货日期");
+
+                    b.Property<long?>("pr_purchaseid")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("供应商id");
+
+                    b.Property<string>("pr_purchasename")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应商名称");
+
+                    b.Property<string>("pr_purchasenumber")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应商编码");
+
+                    b.Property<string>("pr_purchaser")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("采购员");
+
+                    b.Property<string>("pr_purchaser_num")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("采购员工号");
+
+                    b.Property<DateTime?>("pr_rarrive_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("需求到货日期");
+
+                    b.Property<decimal?>("pr_rate")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("税率");
+
+                    b.Property<DateTime?>("pr_rparrive_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("再计划到货日期");
+
+                    b.Property<decimal?>("pr_rqty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("需求数量");
+
+                    b.Property<string>("pr_rreason")
+                        .HasMaxLength(1000)
+                        .HasColumnType("varchar(1000)")
+                        .HasComment("拒绝原因");
+
+                    b.Property<DateTime?>("pr_sarrive_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("系统建议到达日期");
+
+                    b.Property<decimal?>("pr_sqty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("建议数量");
+
+                    b.Property<DateTime?>("pr_ssend_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("系统建议下单日期");
+
+                    b.Property<decimal?>("pr_sysprice")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("系统价格(含税)");
+
+                    b.Property<int?>("pr_type")
+                        .HasColumnType("int")
+                        .HasComment("申请类型");
+
+                    b.Property<string>("pr_unit")
+                        .HasMaxLength(20)
+                        .HasColumnType("varchar(20)")
+                        .HasComment("单位");
+
+                    b.Property<string>("remark")
+                        .HasMaxLength(1000)
+                        .HasColumnType("varchar(1000)")
+                        .HasComment("备注");
+
+                    b.Property<decimal?>("secInv_ratio")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("安全库存触发采购比例");
+
+                    b.Property<int?>("state")
+                        .HasColumnType("int")
+                        .HasComment("状态");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("srm_pr_main", (string)null);
+
+                    b.HasComment("采购申请单");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SRM.srm_purchase", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<decimal?>("batch_append_qty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("批量增量");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<string>("factory_code")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("工厂编码");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("ic_plan_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("计划id");
+
+                    b.Property<long>("icitem_id")
+                        .HasColumnType("bigint")
+                        .HasComment("物料id");
+
+                    b.Property<string>("icitem_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料名称");
+
+                    b.Property<string>("order_dept")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("采购部门");
+
+                    b.Property<decimal?>("order_price")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("采购单价");
+
+                    b.Property<string>("order_rector_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("采购负责人");
+
+                    b.Property<string>("order_rector_num")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("采购负责人_工号");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long?>("piv_acct")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("采购发票差异科目代码");
+
+                    b.Property<long?>("pov_acct")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("采购订单差异科目代码");
+
+                    b.Property<decimal?>("qty_min")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("最小订货量");
+
+                    b.Property<decimal?>("sale_price")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("销售单价");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("srm_purchase", (string)null);
+
+                    b.HasComment("物料采购信息表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SystemData.crm_customer", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<string>("address")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("地址");
+
+                    b.Property<int?>("carrying_aos")
+                        .IsRequired()
+                        .HasColumnType("int")
+                        .HasComment("默认运输提前期_天");
+
+                    b.Property<string>("city")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("城市");
+
+                    b.Property<string>("contact")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("联系人");
+
+                    b.Property<string>("corperate")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("法人代表");
+
+                    b.Property<string>("country")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("国别地区");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<string>("currency")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("结算币种");
+
+                    b.Property<string>("cust_group_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("客户分组名称");
+
+                    b.Property<string>("cust_group_number")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("客户分组编号");
+
+                    b.Property<string>("cust_type")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("客户类别");
+
+                    b.Property<string>("cust_type_number")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("客户类别编码");
+
+                    b.Property<int?>("customer_level")
+                        .HasMaxLength(255)
+                        .HasColumnType("int")
+                        .HasComment("客户级别");
+
+                    b.Property<string>("customer_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("客户名称");
+
+                    b.Property<string>("customer_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("客户编号");
+
+                    b.Property<string>("email")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("邮件地址");
+
+                    b.Property<string>("employee_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("专营业务员");
+
+                    b.Property<string>("employee_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("专营业务员_工号");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("mobile")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("手机号码");
+
+                    b.Property<DateTime?>("op_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("操作时间");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("post_code")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("邮政编码");
+
+                    b.Property<string>("province")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("省份");
+
+                    b.Property<string>("region")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("区");
+
+                    b.Property<string>("sale_mode")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("销售模式");
+
+                    b.Property<string>("short_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("客户简称");
+
+                    b.Property<string>("short_number")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("客户简码");
+
+                    b.Property<string>("state")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("状态");
+
+                    b.Property<string>("telephone")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("电话号码");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<decimal?>("value_add_rate")
+                        .HasPrecision(18, 10)
+                        .HasColumnType("decimal(18,10)")
+                        .HasComment("增值税率");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("crm_customer", (string)null);
+
+                    b.HasComment("客户");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SystemData.srm_supplier", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<string>("addr_en")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("英文地址");
+
+                    b.Property<DateTime?>("approve_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("批准日期");
+
+                    b.Property<bool?>("auto_create_mr")
+                        .HasColumnType("tinyint(1)")
+                        .HasComment("交货自动生成收货单据");
+
+                    b.Property<bool?>("auto_validate_order")
+                        .HasColumnType("tinyint(1)")
+                        .HasComment("自动确认订单");
+
+                    b.Property<string>("bank")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("开户银行");
+
+                    b.Property<string>("bank_account")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("银行账号");
+
+                    b.Property<DateTime?>("begin_day")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("生效日期");
+
+                    b.Property<string>("branch_info")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("分支机构信息");
+
+                    b.Property<string>("checker")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("审核人");
+
+                    b.Property<string>("company_type")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("公司类别");
+
+                    b.Property<string>("contact")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("联系人");
+
+                    b.Property<string>("country")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("国别地区");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<string>("currency")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("结算币种");
+
+                    b.Property<string>("department")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("分管部门");
+
+                    b.Property<string>("email")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("邮件地址");
+
+                    b.Property<string>("employee_name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("专营业务员");
+
+                    b.Property<string>("employee_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("专营业务员_工号");
+
+                    b.Property<DateTime?>("end_day")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("失效日期");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("fax")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("传真号码");
+
+                    b.Property<bool?>("isuse_supplier_portal")
+                        .HasColumnType("tinyint(1)")
+                        .HasComment("启用供应商门户");
+
+                    b.Property<string>("licence")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("营业执照");
+
+                    b.Property<string>("mobile")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("移动电话");
+
+                    b.Property<string>("name_en")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("英文名称");
+
+                    b.Property<DateTime?>("op_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("操作时间");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("po_mode")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("采购模式");
+
+                    b.Property<string>("post_code")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("邮政编码");
+
+                    b.Property<string>("region")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("区域");
+
+                    b.Property<string>("regmark")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("注册商标");
+
+                    b.Property<DateTime?>("regster_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("注册日期");
+
+                    b.Property<string>("settlement")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("结算方式");
+
+                    b.Property<string>("state")
+                        .HasColumnType("longtext")
+                        .HasComment("状态");
+
+                    b.Property<string>("stockid_assignee")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("受托代销虚仓");
+
+                    b.Property<string>("supplier_address")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("供应商地址");
+
+                    b.Property<string>("supplier_full_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("供应商全称");
+
+                    b.Property<string>("supplier_help_code")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应商助记码");
+
+                    b.Property<string>("supplier_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("供应商名称");
+
+                    b.Property<string>("supplier_no")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应商编号");
+
+                    b.Property<string>("supplier_short_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("供应商简称");
+
+                    b.Property<string>("supply_grade")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应商等级");
+
+                    b.Property<string>("supply_type")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应类别");
+
+                    b.Property<string>("taxid")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("税务登记号");
+
+                    b.Property<string>("telephone")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("联系电话");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<string>("trade")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("行业");
+
+                    b.Property<string>("type")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应商分类");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<decimal?>("value_add_rate")
+                        .HasPrecision(18, 10)
+                        .HasColumnType("decimal(18,10)")
+                        .HasComment("增值税率");
+
+                    b.Property<string>("vmi_stock")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("VMI仓");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("srm_supplier", (string)null);
+
+                    b.HasComment("供应商");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SystemData.sys_code", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<string>("chinese_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("中文注释");
+
+                    b.Property<DateTime?>("code_date")
+                        .IsRequired()
+                        .HasColumnType("datetime(6)")
+                        .HasComment("编码生成时间");
+
+                    b.Property<string>("code_name")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("编码生成名称");
+
+                    b.Property<string>("code_rule")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("编码生成规则");
+
+                    b.Property<long?>("code_value")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("编码生成当前值");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("sys_code", (string)null);
+
+                    b.HasComment("系统编码表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SystemData.sys_code_pre", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<DateTime>("code_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("编码生成时间");
+
+                    b.Property<string>("code_name")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("编码生成名称");
+
+                    b.Property<long?>("code_value")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("编码生成当前值");
+
+                    b.Property<string>("pre_name")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("编码生成前置名称");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("sys_code_pre", (string)null);
+
+                    b.HasComment("系统编码前置表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SystemData.sys_config", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("financeis_close")
+                        .HasColumnType("tinyint(1)")
+                        .HasComment("账务状态(0-关帐,1-开帐)");
+
+                    b.Property<bool>("is_show")
+                        .HasColumnType("tinyint(1)")
+                        .HasComment("是否显示(0不显示、1显示)");
+
+                    b.Property<DateTime?>("next_open_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("下一个开帐日期");
+
+                    b.Property<string>("type")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("配置类型");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("sys_config", (string)null);
+
+                    b.HasComment("系统配置表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SystemData.sys_measure_unit", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("is_standard")
+                        .HasColumnType("tinyint(1)")
+                        .HasComment("是否是标准单位0-否,1是");
+
+                    b.Property<bool>("status")
+                        .HasColumnType("tinyint(1)")
+                        .HasComment("状态:0-无效,1-有效");
+
+                    b.Property<string>("unit_code")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("单位编码");
+
+                    b.Property<string>("unit_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("单位名称");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("sys_measure_unit", (string)null);
+
+                    b.HasComment("计量单位信息表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SystemData.sys_post", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("dept_id")
+                        .HasColumnType("bigint")
+                        .HasComment("部门id");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long?>("parent_id")
+                        .HasColumnType("bigint")
+                        .HasComment("上级岗位");
+
+                    b.Property<string>("post_code")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("岗位编码");
+
+                    b.Property<int?>("post_level")
+                        .HasColumnType("int")
+                        .HasComment("岗位级别");
+
+                    b.Property<string>("post_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("岗位名称");
+
+                    b.Property<string>("post_path")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("岗位路径");
+
+                    b.Property<string>("post_remark")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("岗位备注");
+
+                    b.Property<int?>("post_sort")
+                        .HasColumnType("int")
+                        .HasComment("岗位排序");
+
+                    b.Property<bool>("state")
+                        .HasMaxLength(255)
+                        .HasColumnType("tinyint(255)")
+                        .HasComment("数据状态标识 1启用 -1停用");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("sys_post", (string)null);
+
+                    b.HasComment("岗位表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SystemData.sys_post_staff", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long?>("post_id")
+                        .HasColumnType("bigint")
+                        .HasComment("岗位id");
+
+                    b.Property<long?>("staff_id")
+                        .HasColumnType("bigint")
+                        .HasComment("员工id");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("sys_post_staff", (string)null);
+
+                    b.HasComment("员工岗位关联表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SystemData.sys_schedule", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<bool>("is_across")
+                        .HasColumnType("tinyint(1)")
+                        .HasComment("是否跨天 1是 0否");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("remark")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("备注");
+
+                    b.Property<DateTime?>("schedule_end_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("结束工作时间");
+
+                    b.Property<string>("schedule_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("班次名称");
+
+                    b.Property<string>("schedule_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("班次编码");
+
+                    b.Property<DateTime?>("schedule_start_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("起始工作时间");
+
+                    b.Property<bool>("state")
+                        .HasColumnType("tinyint(1)")
+                        .HasComment("数据状态标识 1启用 0停用");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<int?>("validate_hours")
+                        .HasColumnType("int")
+                        .HasComment("有效时长");
+
+                    b.Property<int?>("work_hours")
+                        .HasColumnType("int")
+                        .HasComment("工作时长");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("sys_schedule", (string)null);
+
+                    b.HasComment("班次表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SystemData.sys_shift", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<bool>("is_across")
+                        .HasColumnType("tinyint(1)")
+                        .HasComment("岗位id");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("remark")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("备注");
+
+                    b.Property<string>("shift_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("班制名称");
+
+                    b.Property<string>("shift_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("班制编码");
+
+                    b.Property<bool>("state")
+                        .HasColumnType("tinyint(1)")
+                        .HasComment("数据状态标识 1启用 0停用");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<int?>("validate_hours")
+                        .HasColumnType("int")
+                        .HasComment("有效时长");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("sys_shift", (string)null);
+
+                    b.HasComment("班制表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SystemData.sys_shift_invalid_time", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<DateTime>("end_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("结束时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long?>("schedule_id")
+                        .HasColumnType("bigint")
+                        .HasComment("班次id");
+
+                    b.Property<DateTime>("start_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("开始时间");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("sys_shift_invalid_time", (string)null);
+
+                    b.HasComment("班次无效时间表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SystemData.sys_shift_schedule", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long?>("schedule_id")
+                        .HasMaxLength(255)
+                        .HasColumnType("bigint")
+                        .HasComment("班次id");
+
+                    b.Property<long?>("shift_id")
+                        .HasMaxLength(50)
+                        .HasColumnType("bigint")
+                        .HasComment("班制id");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("sys_shift_schedule", (string)null);
+
+                    b.HasComment("班制班次关联表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SystemData.sys_staff", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<DateOnly?>("birthday")
+                        .HasColumnType("date")
+                        .HasComment("生日");
+
+                    b.Property<string>("card_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("卡号");
+
+                    b.Property<string>("chinese_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("中文名");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("dept_id")
+                        .HasColumnType("bigint")
+                        .HasComment("部门id");
+
+                    b.Property<string>("dept_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("部门名称");
+
+                    b.Property<string>("dept_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("部门编号");
+
+                    b.Property<string>("email")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("邮箱");
+
+                    b.Property<string>("emp_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("工号");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("id_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("身份证号");
+
+                    b.Property<string>("mobile")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("移动电话");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("org_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("组织名称");
+
+                    b.Property<string>("phone")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("电话");
+
+                    b.Property<string>("photo")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("照片");
+
+                    b.Property<string>("politics")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("政治面貌");
+
+                    b.Property<string>("sex")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("性别 1 男 2 女");
+
+                    b.Property<string>("staff_no")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("员工编码");
+
+                    b.Property<string>("staff_remark")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("备注");
+
+                    b.Property<bool>("state")
+                        .HasMaxLength(255)
+                        .HasColumnType("tinyint(255)")
+                        .HasComment("数据状态标识 1启用 0停用");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<long?>("user_id")
+                        .HasColumnType("bigint")
+                        .HasComment("用户id");
+
+                    b.Property<string>("user_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("用户名称");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("sys_staff", (string)null);
+
+                    b.HasComment("员工表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.SystemData.sys_upload", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<string>("data_type")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("文件数据类型");
+
+                    b.Property<string>("file_type")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("文件后缀");
+
+                    b.Property<string>("file_url")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("文件存储路径");
+
+                    b.Property<string>("original_file_name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("源文件名称");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("sys_upload", (string)null);
+
+                    b.HasComment("文件上传表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Tech.mes_process", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("long_desc")
+                        .HasMaxLength(2000)
+                        .HasColumnType("varchar(2000)")
+                        .HasComment("详细描述");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("proc_name")
+                        .IsRequired()
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("工序名称");
+
+                    b.Property<string>("short_desc")
+                        .HasMaxLength(500)
+                        .HasColumnType("varchar(500)")
+                        .HasComment("简述");
+
+                    b.Property<string>("subids")
+                        .HasMaxLength(2000)
+                        .HasColumnType("varchar(2000)")
+                        .HasComment("组合工序id");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_process", (string)null);
+
+                    b.HasComment("工序表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Tech.mes_tech_proc_accessory", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("equip_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("工装id");
+
+                    b.Property<string>("equip_no")
+                        .IsRequired()
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("工装编号");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<int?>("qty")
+                        .IsRequired()
+                        .HasColumnType("int")
+                        .HasComment("数量");
+
+                    b.Property<long?>("tech_proc_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("工艺工序主键");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_tech_proc_accessory", (string)null);
+
+                    b.HasComment("治具表(工装表)");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Tech.mes_tech_proc_document", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("name")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("作业指导书名称");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long?>("tech_proc_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("工艺工序主键");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<long?>("upload_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("作业指导书主键");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_tech_proc_document", (string)null);
+
+                    b.HasComment("工序作业指导书表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Tech.mes_tech_proc_equipment", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("equip_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("设备id");
+
+                    b.Property<string>("equip_name")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("设备名称");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long?>("tech_proc_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("工艺工序id");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<long?>("work_calendar_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工作日历id");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_tech_proc_workshop_equipment", (string)null);
+
+                    b.HasComment("工序关联设备表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Tech.mes_tech_proc_icitem", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("icitem_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("物料id");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<int?>("qty")
+                        .IsRequired()
+                        .HasColumnType("int")
+                        .HasComment("数量");
+
+                    b.Property<long?>("tech_proc_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("工艺工序id");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_tech_proc_workshop_icitem", (string)null);
+
+                    b.HasComment("发料到工序表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Tech.mes_tech_proc_workshop", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<int?>("serialno")
+                        .HasColumnType("int")
+                        .HasComment("序列号");
+
+                    b.Property<long?>("tech_proc_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("工艺工序id");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<long?>("workshop_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("工位id");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_tech_proc_workshop", (string)null);
+
+                    b.HasComment("工艺路径关联工位表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Tech.mes_tech_proc_workshop_staff", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long?>("staff_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("员工id");
+
+                    b.Property<string>("staff_name")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("员工姓名");
+
+                    b.Property<long?>("tech_proc_workshop_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("工艺工位id");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_tech_proc_workshop_staff", (string)null);
+
+                    b.HasComment("工序工位员工信息表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Tech.mes_tech_process", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<decimal?>("ct")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("节拍时间");
+
+                    b.Property<decimal?>("effect_ratio")
+                        .HasPrecision(10, 4)
+                        .HasColumnType("decimal(10,4)")
+                        .HasComment("效率系数");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<int?>("is_schedule")
+                        .IsRequired()
+                        .HasColumnType("int")
+                        .HasComment("是否需要排产:1-是;0-否");
+
+                    b.Property<int?>("level")
+                        .IsRequired()
+                        .HasColumnType("int")
+                        .HasComment("组合层级");
+
+                    b.Property<decimal?>("lq")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("前置最小数量");
+
+                    b.Property<decimal?>("lqt")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("前置等待时间");
+
+                    b.Property<int?>("maxworkshop")
+                        .HasColumnType("int")
+                        .HasComment("最大并行工位数");
+
+                    b.Property<int?>("mototrack")
+                        .HasColumnType("int")
+                        .HasComment("是否需要跟踪工序");
+
+                    b.Property<int?>("needqc")
+                        .HasColumnType("int")
+                        .HasComment("是否需要质检");
+
+                    b.Property<long?>("nextprocid")
+                        .HasColumnType("bigint")
+                        .HasComment("下一工序id");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long?>("parentprocid")
+                        .HasColumnType("bigint")
+                        .HasComment("父级工序id");
+
+                    b.Property<long?>("proc_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("工序主键");
+
+                    b.Property<decimal?>("readytime")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("前置准备时间");
+
+                    b.Property<long?>("tech_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("工艺主键");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<decimal?>("upe")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("一次可加工数量");
+
+                    b.Property<decimal?>("uph")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("UPH");
+
+                    b.Property<decimal?>("upp")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("子工序加工数量");
+
+                    b.Property<int?>("wctype")
+                        .HasColumnType("int")
+                        .HasComment("工作中心类型");
+
+                    b.Property<int?>("wsinuse")
+                        .HasColumnType("int")
+                        .HasComment("实际运行工位数");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_tech_process", (string)null);
+
+                    b.HasComment("工艺关联工序表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Tech.mes_technique", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<string>("bom")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("产品");
+
+                    b.Property<string>("bomver")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("产品版本");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<string>("desc")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("描述");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<int?>("level")
+                        .HasColumnType("int")
+                        .HasComment("效率计算层级");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("tech_name")
+                        .IsRequired()
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("工艺路径名称");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_technique", (string)null);
+
+                    b.HasComment("工艺路径表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Tech.mes_work_calendar", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<int?>("calendar1")
+                        .HasColumnType("int")
+                        .HasComment("周1");
+
+                    b.Property<int?>("calendar2")
+                        .HasColumnType("int")
+                        .HasComment("周2");
+
+                    b.Property<int?>("calendar3")
+                        .HasColumnType("int")
+                        .HasComment("周3");
+
+                    b.Property<int?>("calendar4")
+                        .HasColumnType("int")
+                        .HasComment("周4");
+
+                    b.Property<int?>("calendar5")
+                        .HasColumnType("int")
+                        .HasComment("周5");
+
+                    b.Property<int?>("calendar6")
+                        .HasColumnType("int")
+                        .HasComment("周6");
+
+                    b.Property<int?>("calendar7")
+                        .HasColumnType("int")
+                        .HasComment("周7");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<DateTime?>("end_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("结束时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<int?>("rest_period")
+                        .HasColumnType("int")
+                        .HasComment("休息周期");
+
+                    b.Property<long?>("shift_id")
+                        .HasColumnType("bigint")
+                        .HasComment("班制id");
+
+                    b.Property<int?>("standard_period")
+                        .HasColumnType("int")
+                        .HasComment("标准周期");
+
+                    b.Property<DateTime?>("start_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("开始时间");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<string>("work_calendar_name")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("工作日历名称");
+
+                    b.Property<string>("work_calendar_no")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("工作日历编码");
+
+                    b.Property<int?>("work_period")
+                        .HasColumnType("int")
+                        .HasComment("工作周期");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_work_calendar", (string)null);
+
+                    b.HasComment("工作日历");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Tech.mes_work_calendar_list", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<DateTime?>("work_cal_list_date")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("日期");
+
+                    b.Property<int?>("work_cal_list_num")
+                        .HasColumnType("int")
+                        .HasComment("班次数");
+
+                    b.Property<int?>("work_cal_list_times")
+                        .HasColumnType("int")
+                        .HasComment("工作时长(分钟)");
+
+                    b.Property<int?>("work_cal_list_type")
+                        .HasColumnType("int")
+                        .HasComment("类型:1-工作日;0-休息日");
+
+                    b.Property<long?>("work_calendar_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("工作日历id");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_work_calendar_list", (string)null);
+
+                    b.HasComment("工作日历明细表");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Tech.mes_workshop", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<string>("building")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("楼栋");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("floor")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("楼层");
+
+                    b.Property<string>("geoinfo")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("坐标");
+
+                    b.Property<string>("name")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("工位名称");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<string>("subids")
+                        .HasMaxLength(2000)
+                        .HasColumnType("varchar(2000)")
+                        .HasComment("组合工位ids");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<long?>("work_calendar_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工作日历id");
+
+                    b.Property<string>("zone")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("区域");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_workshop", (string)null);
+
+                    b.HasComment("工位表(工作中心)");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Tech.mes_workshop_shelf", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<bool>("IsDeleted")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("tinyint(1)")
+                        .HasDefaultValue(false)
+                        .HasColumnName("IsDeleted")
+                        .HasComment("删除标识");
+
+                    b.Property<long?>("create_by")
+                        .HasColumnType("bigint")
+                        .HasComment("创建人id");
+
+                    b.Property<string>("create_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("创建人名称");
+
+                    b.Property<DateTime?>("create_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建时间");
+
+                    b.Property<long?>("factory_id")
+                        .HasColumnType("bigint")
+                        .HasComment("工厂ID");
+
+                    b.Property<string>("geoinfo")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("坐标");
+
+                    b.Property<long?>("org_id")
+                        .HasColumnType("bigint")
+                        .HasComment("组织ID");
+
+                    b.Property<int?>("serialno")
+                        .HasColumnType("int")
+                        .HasComment("线边仓序列号");
+
+                    b.Property<string>("sheifno")
+                        .HasMaxLength(100)
+                        .HasColumnType("varchar(100)")
+                        .HasComment("仓库编号");
+
+                    b.Property<long>("tenant_id")
+                        .HasColumnType("bigint")
+                        .HasComment("企业ID");
+
+                    b.Property<long?>("update_by")
+                        .HasColumnType("bigint")
+                        .HasComment("修改人");
+
+                    b.Property<string>("update_by_name")
+                        .HasMaxLength(50)
+                        .HasColumnType("varchar(50)")
+                        .HasComment("修改人名称");
+
+                    b.Property<DateTime?>("update_time")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改时间");
+
+                    b.Property<long?>("workshop_id")
+                        .IsRequired()
+                        .HasColumnType("bigint")
+                        .HasComment("工位id");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("mes_workshop_shelf", (string)null);
+
+                    b.HasComment("工位关联线边仓表");
+                });
+#pragma warning restore 612, 618
+        }
+    }
+}

+ 608 - 0
MicroServices/Business/Business.Host/Migrations/20230324022835_RemoveRequire.cs

@@ -0,0 +1,608 @@
+using Microsoft.EntityFrameworkCore.Migrations;
+
+#nullable disable
+
+namespace Business.Migrations
+{
+    public partial class RemoveRequire : Migration
+    {
+        protected override void Up(MigrationBuilder migrationBuilder)
+        {
+            migrationBuilder.DropColumn(
+                name: "cav_acct",
+                table: "ic_factory_details");
+
+            migrationBuilder.DropColumn(
+                name: "mcv_acct",
+                table: "ic_factory_details");
+
+            migrationBuilder.DropColumn(
+                name: "pcv_acct",
+                table: "ic_factory_details");
+
+            migrationBuilder.DropColumn(
+                name: "sl_acct",
+                table: "ic_factory_details");
+
+            migrationBuilder.DropColumn(
+                name: "tech_id",
+                table: "ic_bom");
+
+            migrationBuilder.DropColumn(
+                name: "tech_name",
+                table: "ic_bom");
+
+            migrationBuilder.AlterColumn<decimal>(
+                name: "order_point",
+                table: "ic_plan",
+                type: "decimal(20,8)",
+                precision: 20,
+                scale: 8,
+                nullable: true,
+                comment: "再订货点",
+                oldClrType: typeof(string),
+                oldType: "varchar(80)",
+                oldMaxLength: 80,
+                oldNullable: true,
+                oldComment: "再订货点")
+                .OldAnnotation("MySql:CharSet", "utf8mb4");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "isfixedreorder",
+                table: "ic_plan",
+                type: "int",
+                nullable: true,
+                comment: "设置为固定再订货点",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldComment: "设置为固定再订货点");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "book_plan",
+                table: "ic_plan",
+                type: "int",
+                nullable: true,
+                comment: "是否需要进行订补货计划的运算",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldComment: "是否需要进行订补货计划的运算");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "aux_prop_plan",
+                table: "ic_plan",
+                type: "int",
+                nullable: true,
+                comment: "辅助属性参与计划运算",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldComment: "辅助属性参与计划运算");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "supplier_id",
+                table: "ic_item_pur",
+                type: "bigint",
+                nullable: true,
+                comment: "供应商id",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldComment: "供应商id");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "ic_plan_id",
+                table: "ic_item_pur",
+                type: "bigint",
+                nullable: true,
+                comment: "采购计划id",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldComment: "采购计划id");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "picktype",
+                table: "ic_item",
+                type: "bigint",
+                nullable: true,
+                comment: "领料类型",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldComment: "领料类型");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "output_type_id",
+                table: "ic_item",
+                type: "bigint",
+                nullable: true,
+                comment: "出库类型",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldComment: "出库类型");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "matatt",
+                table: "ic_item",
+                type: "bigint",
+                nullable: true,
+                comment: "物料类别",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldComment: "物料类别");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "item_level",
+                table: "ic_item",
+                type: "bigint",
+                nullable: true,
+                comment: "物料等级",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldComment: "物料等级");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "is_equipment",
+                table: "ic_item",
+                type: "int",
+                nullable: true,
+                comment: "是否为设备",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldComment: "是否为设备");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "hb_level",
+                table: "ic_item",
+                type: "bigint",
+                nullable: true,
+                comment: "环保等级",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldComment: "环保等级");
+
+            migrationBuilder.AlterColumn<string>(
+                name: "erp_cls_name",
+                table: "ic_item",
+                type: "varchar(80)",
+                maxLength: 80,
+                nullable: true,
+                comment: "物料属性",
+                oldClrType: typeof(string),
+                oldType: "longtext",
+                oldNullable: true,
+                oldComment: "物料属性")
+                .Annotation("MySql:CharSet", "utf8mb4")
+                .OldAnnotation("MySql:CharSet", "utf8mb4");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "enable_warning",
+                table: "ic_item",
+                type: "int",
+                nullable: true,
+                comment: "启用预警",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldComment: "启用预警");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "allowserial",
+                table: "ic_item",
+                type: "int",
+                nullable: true,
+                comment: "序列号管理",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldComment: "序列号管理");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "stock_time",
+                table: "ic_factory_details",
+                type: "int",
+                nullable: true,
+                comment: "是否需要库龄管理",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldComment: "是否需要库龄管理");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "pick_type",
+                table: "ic_factory_details",
+                type: "bigint",
+                nullable: true,
+                comment: "领料类型",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldComment: "领料类型");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "default_sp",
+                table: "ic_factory_details",
+                type: "bigint",
+                nullable: true,
+                comment: "默认仓位",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldComment: "默认仓位");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "default_loc",
+                table: "ic_factory_details",
+                type: "bigint",
+                nullable: true,
+                comment: "默认仓库",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldComment: "默认仓库");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "default_chksp",
+                table: "ic_factory_details",
+                type: "bigint",
+                nullable: true,
+                comment: "默认待检仓位",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldComment: "默认待检仓位");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "default_chkloc",
+                table: "ic_factory_details",
+                type: "bigint",
+                nullable: true,
+                comment: "默认待检仓库",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldComment: "默认待检仓库");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "days_per",
+                table: "ic_factory_details",
+                type: "int",
+                nullable: true,
+                comment: "每周_月第天",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldComment: "每周_月第天");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "batch_manager",
+                table: "ic_factory_details",
+                type: "int",
+                nullable: true,
+                comment: "是否采用业务批次管理",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldComment: "是否采用业务批次管理");
+        }
+
+        protected override void Down(MigrationBuilder migrationBuilder)
+        {
+            migrationBuilder.AlterColumn<string>(
+                name: "order_point",
+                table: "ic_plan",
+                type: "varchar(80)",
+                maxLength: 80,
+                nullable: true,
+                comment: "再订货点",
+                oldClrType: typeof(decimal),
+                oldType: "decimal(20,8)",
+                oldPrecision: 20,
+                oldScale: 8,
+                oldNullable: true,
+                oldComment: "再订货点")
+                .Annotation("MySql:CharSet", "utf8mb4");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "isfixedreorder",
+                table: "ic_plan",
+                type: "int",
+                nullable: false,
+                defaultValue: 0,
+                comment: "设置为固定再订货点",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldNullable: true,
+                oldComment: "设置为固定再订货点");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "book_plan",
+                table: "ic_plan",
+                type: "int",
+                nullable: false,
+                defaultValue: 0,
+                comment: "是否需要进行订补货计划的运算",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldNullable: true,
+                oldComment: "是否需要进行订补货计划的运算");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "aux_prop_plan",
+                table: "ic_plan",
+                type: "int",
+                nullable: false,
+                defaultValue: 0,
+                comment: "辅助属性参与计划运算",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldNullable: true,
+                oldComment: "辅助属性参与计划运算");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "supplier_id",
+                table: "ic_item_pur",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "供应商id",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldNullable: true,
+                oldComment: "供应商id");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "ic_plan_id",
+                table: "ic_item_pur",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "采购计划id",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldNullable: true,
+                oldComment: "采购计划id");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "picktype",
+                table: "ic_item",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "领料类型",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldNullable: true,
+                oldComment: "领料类型");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "output_type_id",
+                table: "ic_item",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "出库类型",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldNullable: true,
+                oldComment: "出库类型");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "matatt",
+                table: "ic_item",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "物料类别",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldNullable: true,
+                oldComment: "物料类别");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "item_level",
+                table: "ic_item",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "物料等级",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldNullable: true,
+                oldComment: "物料等级");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "is_equipment",
+                table: "ic_item",
+                type: "int",
+                nullable: false,
+                defaultValue: 0,
+                comment: "是否为设备",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldNullable: true,
+                oldComment: "是否为设备");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "hb_level",
+                table: "ic_item",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "环保等级",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldNullable: true,
+                oldComment: "环保等级");
+
+            migrationBuilder.AlterColumn<string>(
+                name: "erp_cls_name",
+                table: "ic_item",
+                type: "longtext",
+                nullable: true,
+                comment: "物料属性",
+                oldClrType: typeof(string),
+                oldType: "varchar(80)",
+                oldMaxLength: 80,
+                oldNullable: true,
+                oldComment: "物料属性")
+                .Annotation("MySql:CharSet", "utf8mb4")
+                .OldAnnotation("MySql:CharSet", "utf8mb4");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "enable_warning",
+                table: "ic_item",
+                type: "int",
+                nullable: false,
+                defaultValue: 0,
+                comment: "启用预警",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldNullable: true,
+                oldComment: "启用预警");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "allowserial",
+                table: "ic_item",
+                type: "int",
+                nullable: false,
+                defaultValue: 0,
+                comment: "序列号管理",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldNullable: true,
+                oldComment: "序列号管理");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "stock_time",
+                table: "ic_factory_details",
+                type: "int",
+                nullable: false,
+                defaultValue: 0,
+                comment: "是否需要库龄管理",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldNullable: true,
+                oldComment: "是否需要库龄管理");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "pick_type",
+                table: "ic_factory_details",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "领料类型",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldNullable: true,
+                oldComment: "领料类型");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "default_sp",
+                table: "ic_factory_details",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "默认仓位",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldNullable: true,
+                oldComment: "默认仓位");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "default_loc",
+                table: "ic_factory_details",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "默认仓库",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldNullable: true,
+                oldComment: "默认仓库");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "default_chksp",
+                table: "ic_factory_details",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "默认待检仓位",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldNullable: true,
+                oldComment: "默认待检仓位");
+
+            migrationBuilder.AlterColumn<long>(
+                name: "default_chkloc",
+                table: "ic_factory_details",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "默认待检仓库",
+                oldClrType: typeof(long),
+                oldType: "bigint",
+                oldNullable: true,
+                oldComment: "默认待检仓库");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "days_per",
+                table: "ic_factory_details",
+                type: "int",
+                nullable: false,
+                defaultValue: 0,
+                comment: "每周_月第天",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldNullable: true,
+                oldComment: "每周_月第天");
+
+            migrationBuilder.AlterColumn<int>(
+                name: "batch_manager",
+                table: "ic_factory_details",
+                type: "int",
+                nullable: false,
+                defaultValue: 0,
+                comment: "是否采用业务批次管理",
+                oldClrType: typeof(int),
+                oldType: "int",
+                oldNullable: true,
+                oldComment: "是否采用业务批次管理");
+
+            migrationBuilder.AddColumn<long>(
+                name: "cav_acct",
+                table: "ic_factory_details",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "标准成本调整差异科目代码");
+
+            migrationBuilder.AddColumn<long>(
+                name: "mcv_acct",
+                table: "ic_factory_details",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "材料成本差异科目代码");
+
+            migrationBuilder.AddColumn<long>(
+                name: "pcv_acct",
+                table: "ic_factory_details",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "加工费差异科目代码");
+
+            migrationBuilder.AddColumn<long>(
+                name: "sl_acct",
+                table: "ic_factory_details",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "废品损失科目代码");
+
+            migrationBuilder.AddColumn<long>(
+                name: "tech_id",
+                table: "ic_bom",
+                type: "bigint",
+                nullable: false,
+                defaultValue: 0L,
+                comment: "工艺主键");
+
+            migrationBuilder.AddColumn<string>(
+                name: "tech_name",
+                table: "ic_bom",
+                type: "varchar(20)",
+                maxLength: 20,
+                nullable: true,
+                comment: "工艺名称")
+                .Annotation("MySql:CharSet", "utf8mb4");
+        }
+    }
+}

+ 1701 - 0
MicroServices/Business/Business.Host/Migrations/BusinessExtMigrationDb/20230323150446_Test.Designer.cs

@@ -0,0 +1,1701 @@
+// <auto-generated />
+using System;
+using Business.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Infrastructure;
+using Microsoft.EntityFrameworkCore.Migrations;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+using Volo.Abp.EntityFrameworkCore;
+
+#nullable disable
+
+namespace Business.Migrations.BusinessExtMigrationDb
+{
+    [DbContext(typeof(BusinessExtMigrationDbContext))]
+    [Migration("20230323150446_Test")]
+    partial class Test
+    {
+        protected override void BuildTargetModel(ModelBuilder modelBuilder)
+        {
+#pragma warning disable 612, 618
+            modelBuilder
+                .HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.MySql)
+                .HasAnnotation("ProductVersion", "6.0.5")
+                .HasAnnotation("Relational:MaxIdentifierLength", 64);
+
+            modelBuilder.Entity("Bussiness.Model.Ext.ext_xrefTest", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<string>("dop_col1_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("表列1名");
+
+                    b.Property<string>("dop_col1_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("表列1值");
+
+                    b.Property<string>("dop_col2_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("表列2名");
+
+                    b.Property<string>("dop_col2_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("表列2值");
+
+                    b.Property<string>("dop_col3_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("表列3名");
+
+                    b.Property<string>("dop_col3_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("表列3值");
+
+                    b.Property<string>("dop_col4_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("表列4名");
+
+                    b.Property<string>("dop_col4_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("表列4值");
+
+                    b.Property<string>("dop_col5_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("表列5名");
+
+                    b.Property<string>("dop_col5_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("表列5值");
+
+                    b.Property<long?>("dop_id")
+                        .HasColumnType("bigint")
+                        .HasComment("DOP表ID");
+
+                    b.Property<string>("dop_sys_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("DOP系统名");
+
+                    b.Property<string>("dop_table_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("DOP表名");
+
+                    b.Property<string>("note")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("备注信息");
+
+                    b.Property<string>("other_col1_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("它列1名");
+
+                    b.Property<string>("other_col1_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("它列1名");
+
+                    b.Property<string>("other_col2_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("它列2名");
+
+                    b.Property<string>("other_col2_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("它列2名");
+
+                    b.Property<string>("other_col3_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("它列3名");
+
+                    b.Property<string>("other_col3_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("它列3名");
+
+                    b.Property<string>("other_col4_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("它列4名");
+
+                    b.Property<string>("other_col4_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("它列4名");
+
+                    b.Property<string>("other_col5_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("它列5名");
+
+                    b.Property<string>("other_col5_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("它列5名");
+
+                    b.Property<long?>("other_id")
+                        .HasColumnType("bigint")
+                        .HasComment("它表ID");
+
+                    b.Property<string>("other_sys_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("其它系统名");
+
+                    b.Property<string>("other_table_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("其它表名");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("ext_xrefTest", (string)null);
+
+                    b.HasComment("ext_xrefTest");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Ext.in_kd_bom", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<string>("FBOMCATEGORY")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("BOM分类");
+
+                    b.Property<string>("FCHILDITEMMODEL")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("子项规格型号");
+
+                    b.Property<string>("FCHILDITEMNAME")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("子项物料名称");
+
+                    b.Property<string>("FCHILDUNITID_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("子项单位");
+
+                    b.Property<string>("FChildSupplyOrgId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应组织");
+
+                    b.Property<decimal?>("FDENOMINATOR")
+                        .HasPrecision(23, 10)
+                        .HasColumnType("decimal(23,10)")
+                        .HasComment("用量:分母");
+
+                    b.Property<string>("FITEMMODEL")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("规格型号");
+
+                    b.Property<string>("FITEMNAME")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料名称");
+
+                    b.Property<string>("FITEMPPROPERTY")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("数据状态");
+
+                    b.Property<string>("FIskeyItem")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("替代主料");
+
+                    b.Property<string>("FMATERIALIDCHILD_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("子项物料编码");
+
+                    b.Property<string>("FMATERIALID_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("父项物料编码");
+
+                    b.Property<decimal?>("FNUMERATOR")
+                        .HasPrecision(23, 10)
+                        .HasColumnType("decimal(23,10)")
+                        .HasComment("用量:分子");
+
+                    b.Property<string>("FName_2052")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("BOM简称");
+
+                    b.Property<string>("FNumber")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("BOM版本");
+
+                    b.Property<string>("FPROCESSID_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("作业");
+
+                    b.Property<int?>("FReplaceGroup")
+                        .HasColumnType("int")
+                        .HasComment("项次");
+
+                    b.Property<string>("FReplacePolicy")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("替代策略");
+
+                    b.Property<int?>("FReplacePriority")
+                        .HasColumnType("int")
+                        .HasComment("替代优先级");
+
+                    b.Property<string>("FReplaceType")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("替代方式");
+
+                    b.Property<string>("FSubstitutionId_Name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("80");
+
+                    b.Property<string>("FSubstitutionName")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("替代方案名称");
+
+                    b.Property<string>("FSupplyType")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("供应类型");
+
+                    b.Property<string>("FUseOrgId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("使用组织");
+
+                    b.Property<string>("F_ZXWLMS")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("子项物料描述");
+
+                    b.Property<string>("F_ZXWLPP")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("子项物料品牌");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("in_kd_bom", (string)null);
+
+                    b.HasComment("物料清单");
+                });
+
+            modelBuilder.Entity("Bussiness.Model.Ext.in_kd_material", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<decimal?>("FATOSchemeId_Name")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("ATO预测冲销方案");
+
+                    b.Property<decimal?>("FAccuLeadTime")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("累计提前期");
+
+                    b.Property<decimal?>("FAgentPurPlusRate")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("代理采购加成比例");
+
+                    b.Property<decimal?>("FAgentSalReduceRate")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("代理销售减价比例(%)");
+
+                    b.Property<string>("FAllowPartAhead")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("预计入库允许部分提前");
+
+                    b.Property<string>("FAllowPartDelay")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("预计入库允许部分延后");
+
+                    b.Property<string>("FAllowPublish")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("允许发布到订货平台");
+
+                    b.Property<DateTime?>("FApproveDate")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("审核日期");
+
+                    b.Property<string>("FApproverId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("审核人");
+
+                    b.Property<string>("FAuxPropertyId_Name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("辅助属性");
+
+                    b.Property<string>("FAuxUnitID_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("辅助单位");
+
+                    b.Property<string>("FBARCODE")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("条码");
+
+                    b.Property<string>("FBKFLTime")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("倒冲时机");
+
+                    b.Property<string>("FBOMUnitId_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("子项单位");
+
+                    b.Property<string>("FBackFlushType")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("倒冲数量");
+
+                    b.Property<string>("FBaseUnitId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("基本单位");
+
+                    b.Property<string>("FBatchRuleID_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("批号编码规则");
+
+                    b.Property<decimal?>("FBoxStandardQty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("单箱标准数量");
+
+                    b.Property<string>("FCONFIGTYPE")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("配置生产");
+
+                    b.Property<decimal?>("FCanDelayDays")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("允许延后天数");
+
+                    b.Property<decimal?>("FCanLeadDays")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("允许提前天数");
+
+                    b.Property<string>("FCategoryID_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("存货类别");
+
+                    b.Property<string>("FChargeID_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("费用项目");
+
+                    b.Property<string>("FCheckDelivery")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("发货检验");
+
+                    b.Property<string>("FCheckEntrusted")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("受托材料检验");
+
+                    b.Property<string>("FCheckIncoming")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("来料检验");
+
+                    b.Property<decimal?>("FCheckLeadTime")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("检验提前期");
+
+                    b.Property<string>("FCheckLeadTimeType")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("检验提前期单位");
+
+                    b.Property<string>("FCheckOther")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("其他检验");
+
+                    b.Property<string>("FCheckProduct")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("产品检验");
+
+                    b.Property<string>("FCheckReturn")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("退货检验");
+
+                    b.Property<string>("FCheckReturnMtrl")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("生产退料检验");
+
+                    b.Property<string>("FCheckStock")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("库存检验");
+
+                    b.Property<decimal?>("FConsumVolatility")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("消耗波动(%)");
+
+                    b.Property<decimal?>("FCostPriceRate")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("结算成本价加减价比例(%)");
+
+                    b.Property<string>("FCountCycle")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("盘点周期单位");
+
+                    b.Property<decimal?>("FCountDay")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("盘点周期");
+
+                    b.Property<DateTime?>("FCreateDate")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("创建日期");
+
+                    b.Property<string>("FCreateOrgId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("创建组织");
+
+                    b.Property<string>("FCreatorId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("创建人");
+
+                    b.Property<string>("FCurrencyId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("币别");
+
+                    b.Property<string>("FDSMatchByLot")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("按批号匹配供需");
+
+                    b.Property<decimal?>("FDailyOutQty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("日产量");
+
+                    b.Property<string>("FDataSource")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("物料来源");
+
+                    b.Property<string>("FDefBarCodeRuleId_Name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("默认条码规则");
+
+                    b.Property<string>("FDefaultLineId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("默认产线");
+
+                    b.Property<string>("FDefaultRouting_Name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("默认工艺路线");
+
+                    b.Property<string>("FDefaultVendor_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("默认供应商");
+
+                    b.Property<decimal?>("FDelayExtendDay")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("延后宽限期");
+
+                    b.Property<string>("FDescription_2052")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("描述");
+
+                    b.Property<decimal?>("FEOQ")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("固定/经济批量");
+
+                    b.Property<decimal?>("FEWLeadDay")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("提醒提前期");
+
+                    b.Property<decimal?>("FEconReOrderQty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("经济订货批量");
+
+                    b.Property<string>("FEnableCyclistQCSTK")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("启用库存周期复检");
+
+                    b.Property<string>("FEnableCyclistQCSTKEW")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("启用库存周期复检提醒");
+
+                    b.Property<string>("FErpClsID")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料属性");
+
+                    b.Property<decimal?>("FExpPeriod")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("保质期");
+
+                    b.Property<string>("FExpUnit")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("保质期单位");
+
+                    b.Property<decimal?>("FFIXLOSS")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("固定损耗");
+
+                    b.Property<string>("FFeatureItem")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("特征件子项");
+
+                    b.Property<decimal?>("FFinishReceiptOverRate")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("入库超收比例(%)");
+
+                    b.Property<string>("FFinishReceiptShortRate")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("入库欠收比例(%)");
+
+                    b.Property<decimal?>("FFixLeadTime")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("固定提前期");
+
+                    b.Property<decimal?>("FFixLeadTimeType")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("固定提前期单位");
+
+                    b.Property<DateTime?>("FForbidDate")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("禁用日期");
+
+                    b.Property<string>("FForbidResonIsUsed")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("已使用");
+
+                    b.Property<string>("FForbidReson_2052")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("禁用原因");
+
+                    b.Property<string>("FForbidStatus")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("禁用状态");
+
+                    b.Property<string>("FForbidderId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("禁用人");
+
+                    b.Property<decimal?>("FGROSSWEIGHT")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("毛重");
+
+                    b.Property<decimal?>("FHEIGHT")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("高");
+
+                    b.Property<string>("FISAFTERSALE")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("启用售后服务");
+
+                    b.Property<string>("FISMinIssueQty")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("领料考虑最小发料批量");
+
+                    b.Property<string>("FISPRODUCTFILES")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("生成产品档案");
+
+                    b.Property<string>("FISWARRANTED")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("是否保修");
+
+                    b.Property<string>("FIncQcSchemeId_Name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("质检方案");
+
+                    b.Property<string>("FIncSampSchemeId_Name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("抽样方案");
+
+                    b.Property<decimal?>("FIncreaseQty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("最小包装量");
+
+                    b.Property<string>("FInspectGroupId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("质检组");
+
+                    b.Property<string>("FInspectorId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("质检员");
+
+                    b.Property<string>("FIsATPCheck")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("ATP检查");
+
+                    b.Property<string>("FIsAffectCost1")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("影响出库成本");
+
+                    b.Property<string>("FIsAffectPlan1")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("影响计划");
+
+                    b.Property<string>("FIsAffectPrice1")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("影响价格");
+
+                    b.Property<string>("FIsAsset")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("允许资产");
+
+                    b.Property<string>("FIsBatchManage")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("启用批号管理");
+
+                    b.Property<string>("FIsCoby")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("可为联副产品");
+
+                    b.Property<string>("FIsComControl")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("组合控制");
+
+                    b.Property<string>("FIsCompleteSet")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("是否齐套件");
+
+                    b.Property<string>("FIsCycleCounting")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("启用盘点周期");
+
+                    b.Property<string>("FIsECN")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("启用ECN");
+
+                    b.Property<string>("FIsEnable1")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("启用");
+
+                    b.Property<string>("FIsEnableMaxStock")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("启用最大库存");
+
+                    b.Property<string>("FIsEnableMinStock")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("启用最小库存");
+
+                    b.Property<string>("FIsEnableReOrder")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("启用再订货点");
+
+                    b.Property<string>("FIsEnableSafeStock")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("启用安全库存");
+
+                    b.Property<string>("FIsEnableSchedule")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("启用日排产");
+
+                    b.Property<string>("FIsExpParToFlot")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("批号附属信息");
+
+                    b.Property<string>("FIsFirstInspect")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("产品首检");
+
+                    b.Property<string>("FIsInventory")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("允许库存");
+
+                    b.Property<string>("FIsKFPeriod")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("启用保质期管理");
+
+                    b.Property<string>("FIsKitting")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("是否关键件");
+
+                    b.Property<string>("FIsLockStock")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("可锁库");
+
+                    b.Property<string>("FIsMainPrd")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("可为主产品");
+
+                    b.Property<string>("FIsMrpComBill")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("MRP计算是否按单合并");
+
+                    b.Property<string>("FIsMrpComReq")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("MRP计算是否合并需求");
+
+                    b.Property<string>("FIsMustCounting")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("必盘");
+
+                    b.Property<string>("FIsPR")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("需要请购");
+
+                    b.Property<string>("FIsProduce")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("FIsProduce");
+
+                    b.Property<string>("FIsProductLine")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("生产线生产");
+
+                    b.Property<string>("FIsPurchase")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("允许采购");
+
+                    b.Property<string>("FIsQuota")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("配额管理");
+
+                    b.Property<string>("FIsReturn")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("允许退货");
+
+                    b.Property<string>("FIsReturnMaterial")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("允许退料");
+
+                    b.Property<string>("FIsReturnPart")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("部件可退");
+
+                    b.Property<string>("FIsSNCarryToParent")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("序列号携带到父项");
+
+                    b.Property<string>("FIsSNManage")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("库存管理");
+
+                    b.Property<string>("FIsSNPRDTracy")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("生产追溯");
+
+                    b.Property<string>("FIsSale")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("允许销售");
+
+                    b.Property<string>("FIsSourceControl")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("货源控制");
+
+                    b.Property<string>("FIsSubContract")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("允许委外");
+
+                    b.Property<string>("FIsTaxEnjoy")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("享受税收优惠政策");
+
+                    b.Property<string>("FIsVmiBusiness")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("VMI业务");
+
+                    b.Property<string>("FIssueType")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("发料方式");
+
+                    b.Property<decimal?>("FLENGTH")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("长");
+
+                    b.Property<decimal?>("FLOSSPERCENT")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("变动损耗率(%)");
+
+                    b.Property<decimal?>("FLeadExtendDay")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("提前宽限期");
+
+                    b.Property<string>("FMaterialGroup")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料分组编码");
+
+                    b.Property<string>("FMaterialGroup_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料分组");
+
+                    b.Property<decimal?>("FMaxPOQty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("最大订货量");
+
+                    b.Property<decimal?>("FMaxStock")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("最大库存");
+
+                    b.Property<string>("FMdlId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("产品模型");
+
+                    b.Property<string>("FMdlMaterialId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("模型物料");
+
+                    b.Property<string>("FMfgPolicyId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("制造策略");
+
+                    b.Property<decimal?>("FMinIssueQty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("最小发料批量");
+
+                    b.Property<string>("FMinIssueUnitId_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("最小发料批量单位");
+
+                    b.Property<decimal?>("FMinPOQty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("最小订货量");
+
+                    b.Property<decimal?>("FMinPackCount")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("最小包装数");
+
+                    b.Property<decimal?>("FMinSplitQty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("最小拆分数量");
+
+                    b.Property<decimal?>("FMinStock")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("最小库存");
+
+                    b.Property<string>("FMnemonicCode")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("助记码");
+
+                    b.Property<string>("FModifierId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("修改人");
+
+                    b.Property<DateTime?>("FModifyDate")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("修改日期");
+
+                    b.Property<decimal?>("FNETWEIGHT")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("净重");
+
+                    b.Property<string>("FName_2052")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("名称");
+
+                    b.Property<string>("FNumber")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("编码");
+
+                    b.Property<string>("FOldNumber")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("旧物料编码");
+
+                    b.Property<decimal?>("FOnlineLife")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("在架寿命期");
+
+                    b.Property<decimal?>("FOrderIntervalTime")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("订货间隔期");
+
+                    b.Property<string>("FOrderIntervalTimeType")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("订货间隔期单位");
+
+                    b.Property<string>("FOrderPolicy")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("订货策略");
+
+                    b.Property<decimal?>("FOrderQty")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("起订量");
+
+                    b.Property<string>("FOrgTrustBillType_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("组织间受托类型");
+
+                    b.Property<string>("FOutLmtUnit")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("超发控制单位");
+
+                    b.Property<decimal?>("FOutStockLmtH")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("超发上限(%)");
+
+                    b.Property<decimal?>("FOutStockLmtL")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("超发下限(%)");
+
+                    b.Property<string>("FOverControlMode")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("超发控制方式");
+
+                    b.Property<string>("FPOBillTypeId_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("采购类型");
+
+                    b.Property<decimal?>("FPerUnitStandHour")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("标准工时");
+
+                    b.Property<string>("FPickBinId_FF100002")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("发料仓位.客户.编码");
+
+                    b.Property<string>("FPickBinId_FF100002_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("发料仓位.客户.名称");
+
+                    b.Property<string>("FPickBinId_FF100003")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("发料仓位.供应商.编码");
+
+                    b.Property<string>("FPickBinId_FF100003_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("发料仓位.供应商.名称");
+
+                    b.Property<string>("FPickBinId_FF100004")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("发料仓位.服务机客户.编码");
+
+                    b.Property<string>("FPickBinId_FF100004_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("发料仓位.服务机客户.名称");
+
+                    b.Property<string>("FPickStockId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("发料仓库");
+
+                    b.Property<string>("FPickStockLoc")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("发料仓位");
+
+                    b.Property<decimal?>("FPlanBatchSplitQty")
+                        .HasPrecision(20, 10)
+                        .HasColumnType("decimal(20,10)")
+                        .HasComment("拆分批量");
+
+                    b.Property<string>("FPlanGroupId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("计划组");
+
+                    b.Property<string>("FPlanIdent_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("计划标识");
+
+                    b.Property<decimal?>("FPlanIntervalsDays")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("批量拆分间隔天数");
+
+                    b.Property<decimal?>("FPlanOffsetTime")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("偏置时间");
+
+                    b.Property<string>("FPlanOffsetTimeType")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("时间单位");
+
+                    b.Property<decimal?>("FPlanSafeStockQty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("安全库存");
+
+                    b.Property<decimal?>("FPlanTimeZone")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("计划时界");
+
+                    b.Property<string>("FPlanWorkshop_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("计划区");
+
+                    b.Property<string>("FPlanerID_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("计划员");
+
+                    b.Property<string>("FPlanningStrategy")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("计划策略");
+
+                    b.Property<decimal?>("FPrintCount")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("重复打印数");
+
+                    b.Property<string>("FProScheTrackId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("订单进度分组");
+
+                    b.Property<string>("FProduceBillType_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("生产类型");
+
+                    b.Property<string>("FProduceUnitId_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("生产单位");
+
+                    b.Property<string>("FProductLine_Name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("产品系列");
+
+                    b.Property<string>("FPurchaseGroupId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("采购组");
+
+                    b.Property<string>("FPurchaseOrgId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("采购组织");
+
+                    b.Property<string>("FPurchasePriceUnitId_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("采购计价单位");
+
+                    b.Property<string>("FPurchaseUnitId_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("采购单位");
+
+                    b.Property<string>("FPurchaserId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("采购员");
+
+                    b.Property<string>("FQtyFactorId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("数量负荷系数");
+
+                    b.Property<string>("FQuotaType")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("配额方式");
+
+                    b.Property<decimal?>("FReOrderGood")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("再订货点");
+
+                    b.Property<decimal?>("FReceiveAdvanceDays")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("收货提前天数");
+
+                    b.Property<decimal?>("FReceiveDelayDays")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("收货延迟天数");
+
+                    b.Property<decimal?>("FReceiveMaxScale")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("收货上限比例(%)");
+
+                    b.Property<decimal?>("FReceiveMinScale")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("收货下限比例(%)");
+
+                    b.Property<decimal?>("FRefCost")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("参考成本");
+
+                    b.Property<decimal?>("FRequestTimeZone")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("需求时界");
+
+                    b.Property<string>("FReserveType")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("预留类型");
+
+                    b.Property<string>("FSNCodeRule_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("序列号编码规则");
+
+                    b.Property<string>("FSNUnit_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("序列号单位");
+
+                    b.Property<decimal?>("FSafeStock")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("安全库存");
+
+                    b.Property<string>("FSalGroup_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("销售分组");
+
+                    b.Property<string>("FSalePriceUnitId_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("销售计价单位");
+
+                    b.Property<string>("FSaleUnitId_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("销售单位");
+
+                    b.Property<string>("FSpecification_2052")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("规格型号");
+
+                    b.Property<string>("FStandHourUnitId")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("工时单位");
+
+                    b.Property<decimal?>("FStdLaborPrePareTime")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("标准人员准备工时");
+
+                    b.Property<decimal?>("FStdLaborProcessTime")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("标准人员实作工时");
+
+                    b.Property<decimal?>("FStdMachinePrepareTime")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("标准机器准备工时");
+
+                    b.Property<decimal?>("FStdMachineProcessTime")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("标准机器实作工时");
+
+                    b.Property<decimal?>("FStockCycle")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("复检周期");
+
+                    b.Property<string>("FStockId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("仓库");
+
+                    b.Property<string>("FStockLoc")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("仓位");
+
+                    b.Property<string>("FStockPlaceId_FF100002")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("仓位.客户.编码");
+
+                    b.Property<string>("FStockPlaceId_FF100002_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("仓位.客户.名称");
+
+                    b.Property<string>("FStockPlaceId_FF100003")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("仓位.供应商.编码");
+
+                    b.Property<string>("FStockPlaceId_FF100003_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("仓位.供应商.名称");
+
+                    b.Property<string>("FStockPlaceId_FF100004")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("仓位.服务机客户.编码");
+
+                    b.Property<string>("FStockPlaceId_FF100004_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("仓位.服务机客户.名称");
+
+                    b.Property<string>("FStoreUnitID_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("库存单位");
+
+                    b.Property<string>("FSubBillType_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("委外类型");
+
+                    b.Property<string>("FSubconPriceUnitId_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("委外计价单位");
+
+                    b.Property<string>("FSubconUnitId_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("委外单位");
+
+                    b.Property<string>("FSuite")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("套件");
+
+                    b.Property<string>("FSupplySourceId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("供应来源");
+
+                    b.Property<string>("FTaxCategoryCodeId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("税收分类编码");
+
+                    b.Property<string>("FTaxDiscountsType")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("税收优惠政策类型");
+
+                    b.Property<string>("FTaxRateId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("默认税率");
+
+                    b.Property<string>("FTaxType_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("税分类");
+
+                    b.Property<string>("FTimeFactorId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("时间紧迫系数");
+
+                    b.Property<string>("FUnValidateExpQty")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("不参与可发量统计");
+
+                    b.Property<string>("FUseOrgId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("使用组织");
+
+                    b.Property<string>("FUseStatus")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("数据状态");
+
+                    b.Property<decimal?>("FVOLUME")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("体积");
+
+                    b.Property<string>("FVOLUMEUNITID_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("尺寸单位");
+
+                    b.Property<decimal?>("FVarLeadTime")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("变动提前期");
+
+                    b.Property<decimal?>("FVarLeadTimeLotSize")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("变动提前期批量");
+
+                    b.Property<string>("FVarLeadTimeType")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("变动提前期单位");
+
+                    b.Property<decimal?>("FWARRANTY")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("保修期");
+
+                    b.Property<string>("FWARRANTYUNITID")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("保修期单位");
+
+                    b.Property<string>("FWEIGHTUNITID_Name")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("重量单位");
+
+                    b.Property<decimal?>("FWIDTH")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("宽");
+
+                    b.Property<string>("FWorkShopId_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("生产车间");
+
+                    b.Property<decimal?>("FWriteOffQty")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("冲销数量");
+
+                    b.Property<string>("F_BZGG")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("包装规格");
+
+                    b.Property<string>("F_CPFL_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("产品分类");
+
+                    b.Property<string>("F_CPPLLB")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("产品披露类别");
+
+                    b.Property<string>("F_CPX_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("产品线");
+
+                    b.Property<string>("F_DYDWLX")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("电压/电网类型");
+
+                    b.Property<string>("F_DZLSX")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("电子料属性");
+
+                    b.Property<string>("F_GLD_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("功率段");
+
+                    b.Property<DateTime?>("F_GSZHGGRQ")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("工时最后更改日期");
+
+                    b.Property<string>("F_GSZHGGR_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("工时最后更改人");
+
+                    b.Property<string>("F_GWLH_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("根物料号");
+
+                    b.Property<string>("F_GYS")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("供应商");
+
+                    b.Property<decimal?>("F_HLBZL")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("回料包装量");
+
+                    b.Property<string>("F_JCYY")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("禁采原因");
+
+                    b.Property<string>("F_JWLBMU8")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("旧物料编码U8");
+
+                    b.Property<string>("F_PP_Name")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("品牌");
+
+                    b.Property<string>("F_SFJLPCH")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("是否记录批次号");
+
+                    b.Property<string>("F_SMZQ")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("料号生命周期");
+
+                    b.Property<DateTime?>("F_SMZQZHGGRQ")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("生命周期最后更改日期");
+
+                    b.Property<string>("F_SMZQZHGGR_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("生命周期最后更改人");
+
+                    b.Property<DateTime?>("F_TJZLZHGGRQ")
+                        .HasColumnType("datetime(6)")
+                        .HasComment("体积重量最后更改日期");
+
+                    b.Property<string>("F_TJZLZHGGR_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("体积重量最后更改人");
+
+                    b.Property<string>("F_WLLX")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("物料类型");
+
+                    b.Property<string>("F_WLSQR_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("物料申请人");
+
+                    b.Property<string>("F_XSXH_2052")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("SAJ型号");
+
+                    b.Property<string>("F_YWLX")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("业务类型");
+
+                    b.Property<string>("F_YXQG")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("允许请购");
+
+                    b.Property<string>("F_YXSL")
+                        .HasMaxLength(1)
+                        .HasColumnType("varchar(1)")
+                        .HasComment("允许收料");
+
+                    b.Property<string>("F_YZSG")
+                        .HasMaxLength(10)
+                        .HasColumnType("varchar(10)")
+                        .HasComment("已终审过");
+
+                    b.Property<decimal?>("F_ZJCSGS")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("整机测试工时");
+
+                    b.Property<string>("F_ZJGLWLH_Name")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("直接关联物料号");
+
+                    b.Property<decimal?>("F_ZJZB_Name")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("整机质保(月)");
+
+                    b.Property<decimal?>("F_ZYGS")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
+                        .HasComment("作业工时");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("in_kd_material", (string)null);
+
+                    b.HasComment("物料");
+                });
+#pragma warning restore 612, 618
+        }
+    }
+}

+ 85 - 0
MicroServices/Business/Business.Host/Migrations/BusinessExtMigrationDb/20230323150446_Test.cs

@@ -0,0 +1,85 @@
+using Microsoft.EntityFrameworkCore.Metadata;
+using Microsoft.EntityFrameworkCore.Migrations;
+
+#nullable disable
+
+namespace Business.Migrations.BusinessExtMigrationDb
+{
+    public partial class Test : Migration
+    {
+        protected override void Up(MigrationBuilder migrationBuilder)
+        {
+            migrationBuilder.CreateTable(
+                name: "ext_xrefTest",
+                columns: table => new
+                {
+                    Id = table.Column<long>(type: "bigint", nullable: false)
+                        .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
+                    dop_table_name = table.Column<string>(type: "varchar(32)", maxLength: 32, nullable: true, comment: "DOP表名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    dop_id = table.Column<long>(type: "bigint", nullable: true, comment: "DOP表ID"),
+                    dop_col1_name = table.Column<string>(type: "varchar(32)", maxLength: 32, nullable: true, comment: "表列1名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    dop_col1_value = table.Column<string>(type: "varchar(80)", maxLength: 80, nullable: true, comment: "表列1值")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    dop_col2_name = table.Column<string>(type: "varchar(32)", maxLength: 32, nullable: true, comment: "表列2名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    dop_col2_value = table.Column<string>(type: "varchar(80)", maxLength: 80, nullable: true, comment: "表列2值")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    dop_col3_name = table.Column<string>(type: "varchar(32)", maxLength: 32, nullable: true, comment: "表列3名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    dop_col3_value = table.Column<string>(type: "varchar(80)", maxLength: 80, nullable: true, comment: "表列3值")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    dop_col4_name = table.Column<string>(type: "varchar(32)", maxLength: 32, nullable: true, comment: "表列4名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    dop_col4_value = table.Column<string>(type: "varchar(80)", maxLength: 80, nullable: true, comment: "表列4值")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    dop_col5_name = table.Column<string>(type: "varchar(32)", maxLength: 32, nullable: true, comment: "表列5名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    dop_col5_value = table.Column<string>(type: "varchar(80)", maxLength: 80, nullable: true, comment: "表列5值")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    other_sys_name = table.Column<string>(type: "varchar(32)", maxLength: 32, nullable: true, comment: "其它系统名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    other_table_name = table.Column<string>(type: "varchar(32)", maxLength: 32, nullable: true, comment: "其它表名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    other_id = table.Column<long>(type: "bigint", nullable: true, comment: "它表ID"),
+                    other_col1_name = table.Column<string>(type: "varchar(32)", maxLength: 32, nullable: true, comment: "它列1名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    other_col1_value = table.Column<string>(type: "varchar(80)", maxLength: 80, nullable: true, comment: "它列1名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    other_col2_name = table.Column<string>(type: "varchar(32)", maxLength: 32, nullable: true, comment: "它列2名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    other_col2_value = table.Column<string>(type: "varchar(80)", maxLength: 80, nullable: true, comment: "它列2名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    other_col3_name = table.Column<string>(type: "varchar(32)", maxLength: 32, nullable: true, comment: "它列3名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    other_col3_value = table.Column<string>(type: "varchar(80)", maxLength: 80, nullable: true, comment: "它列3名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    other_col4_name = table.Column<string>(type: "varchar(32)", maxLength: 32, nullable: true, comment: "它列4名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    other_col4_value = table.Column<string>(type: "varchar(80)", maxLength: 80, nullable: true, comment: "它列4名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    other_col5_name = table.Column<string>(type: "varchar(32)", maxLength: 32, nullable: true, comment: "它列5名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    other_col5_value = table.Column<string>(type: "varchar(80)", maxLength: 80, nullable: true, comment: "它列5名")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    note = table.Column<string>(type: "varchar(255)", maxLength: 255, nullable: true, comment: "备注信息")
+                        .Annotation("MySql:CharSet", "utf8mb4"),
+                    dop_sys_name = table.Column<string>(type: "varchar(32)", maxLength: 32, nullable: true, comment: "DOP系统名")
+                        .Annotation("MySql:CharSet", "utf8mb4")
+                },
+                constraints: table =>
+                {
+                    table.PrimaryKey("PK_ext_xrefTest", x => x.Id);
+                },
+                comment: "ext_xrefTest")
+                .Annotation("MySql:CharSet", "utf8mb4");
+        }
+
+        protected override void Down(MigrationBuilder migrationBuilder)
+        {
+            migrationBuilder.DropTable(
+                name: "ext_xrefTest");
+        }
+    }
+}

+ 146 - 0
MicroServices/Business/Business.Host/Migrations/BusinessExtMigrationDb/BusinessExtMigrationDbContextModelSnapshot.cs

@@ -21,6 +21,152 @@ namespace Business.Migrations.BusinessExtMigrationDb
                 .HasAnnotation("ProductVersion", "6.0.5")
                 .HasAnnotation("Relational:MaxIdentifierLength", 64);
 
+            modelBuilder.Entity("Bussiness.Model.Ext.ext_xrefTest", b =>
+                {
+                    b.Property<long>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bigint");
+
+                    b.Property<string>("dop_col1_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("表列1名");
+
+                    b.Property<string>("dop_col1_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("表列1值");
+
+                    b.Property<string>("dop_col2_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("表列2名");
+
+                    b.Property<string>("dop_col2_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("表列2值");
+
+                    b.Property<string>("dop_col3_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("表列3名");
+
+                    b.Property<string>("dop_col3_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("表列3值");
+
+                    b.Property<string>("dop_col4_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("表列4名");
+
+                    b.Property<string>("dop_col4_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("表列4值");
+
+                    b.Property<string>("dop_col5_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("表列5名");
+
+                    b.Property<string>("dop_col5_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("表列5值");
+
+                    b.Property<long?>("dop_id")
+                        .HasColumnType("bigint")
+                        .HasComment("DOP表ID");
+
+                    b.Property<string>("dop_sys_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("DOP系统名");
+
+                    b.Property<string>("dop_table_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("DOP表名");
+
+                    b.Property<string>("note")
+                        .HasMaxLength(255)
+                        .HasColumnType("varchar(255)")
+                        .HasComment("备注信息");
+
+                    b.Property<string>("other_col1_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("它列1名");
+
+                    b.Property<string>("other_col1_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("它列1名");
+
+                    b.Property<string>("other_col2_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("它列2名");
+
+                    b.Property<string>("other_col2_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("它列2名");
+
+                    b.Property<string>("other_col3_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("它列3名");
+
+                    b.Property<string>("other_col3_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("它列3名");
+
+                    b.Property<string>("other_col4_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("它列4名");
+
+                    b.Property<string>("other_col4_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("它列4名");
+
+                    b.Property<string>("other_col5_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("它列5名");
+
+                    b.Property<string>("other_col5_value")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
+                        .HasComment("它列5名");
+
+                    b.Property<long?>("other_id")
+                        .HasColumnType("bigint")
+                        .HasComment("它表ID");
+
+                    b.Property<string>("other_sys_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("其它系统名");
+
+                    b.Property<string>("other_table_name")
+                        .HasMaxLength(32)
+                        .HasColumnType("varchar(32)")
+                        .HasComment("其它表名");
+
+                    b.HasKey("Id");
+
+                    b.ToTable("ext_xrefTest", (string)null);
+
+                    b.HasComment("ext_xrefTest");
+                });
+
             modelBuilder.Entity("Bussiness.Model.Ext.in_kd_bom", b =>
                 {
                     b.Property<long>("Id")

+ 26 - 50
MicroServices/Business/Business.Host/Migrations/BusinessMigrationDbContextModelSnapshot.cs

@@ -119,15 +119,6 @@ namespace Business.Migrations
                         .HasColumnType("varchar(80)")
                         .HasComment("生产负责人");
 
-                    b.Property<long>("tech_id")
-                        .HasColumnType("bigint")
-                        .HasComment("工艺主键");
-
-                    b.Property<string>("tech_name")
-                        .HasMaxLength(20)
-                        .HasColumnType("varchar(20)")
-                        .HasComment("工艺名称");
-
                     b.Property<long>("tenant_id")
                         .HasColumnType("bigint")
                         .HasComment("企业ID");
@@ -352,14 +343,10 @@ namespace Business.Migrations
                         .HasColumnName("IsDeleted")
                         .HasComment("删除标识");
 
-                    b.Property<int>("batch_manager")
+                    b.Property<int?>("batch_manager")
                         .HasColumnType("int")
                         .HasComment("是否采用业务批次管理");
 
-                    b.Property<long>("cav_acct")
-                        .HasColumnType("bigint")
-                        .HasComment("标准成本调整差异科目代码");
-
                     b.Property<decimal?>("check_cycle")
                         .HasPrecision(20, 8)
                         .HasColumnType("decimal(20,8)")
@@ -388,19 +375,19 @@ namespace Business.Migrations
                         .HasColumnType("decimal(20,8)")
                         .HasComment("日消耗量");
 
-                    b.Property<int>("days_per")
+                    b.Property<int?>("days_per")
                         .HasColumnType("int")
                         .HasComment("每周_月第天");
 
-                    b.Property<long>("default_chkloc")
+                    b.Property<long?>("default_chkloc")
                         .HasColumnType("bigint")
                         .HasComment("默认待检仓库");
 
-                    b.Property<long>("default_chksp")
+                    b.Property<long?>("default_chksp")
                         .HasColumnType("bigint")
                         .HasComment("默认待检仓位");
 
-                    b.Property<long>("default_loc")
+                    b.Property<long?>("default_loc")
                         .HasColumnType("bigint")
                         .HasComment("默认仓库");
 
@@ -409,7 +396,7 @@ namespace Business.Migrations
                         .HasColumnType("varchar(80)")
                         .HasComment("默认仓管员");
 
-                    b.Property<long>("default_sp")
+                    b.Property<long?>("default_sp")
                         .HasColumnType("bigint")
                         .HasComment("默认仓位");
 
@@ -455,10 +442,6 @@ namespace Business.Migrations
                         .HasColumnType("decimal(20,8)")
                         .HasComment("原材料入库时间/天");
 
-                    b.Property<long>("mcv_acct")
-                        .HasColumnType("bigint")
-                        .HasComment("材料成本差异科目代码");
-
                     b.Property<decimal?>("minorderqty")
                         .IsRequired()
                         .HasPrecision(20, 8)
@@ -491,11 +474,7 @@ namespace Business.Migrations
                         .HasColumnType("bigint")
                         .HasComment("组织ID");
 
-                    b.Property<long>("pcv_acct")
-                        .HasColumnType("bigint")
-                        .HasComment("加工费差异科目代码");
-
-                    b.Property<long>("pick_type")
+                    b.Property<long?>("pick_type")
                         .HasColumnType("bigint")
                         .HasComment("领料类型");
 
@@ -530,17 +509,13 @@ namespace Business.Migrations
                         .HasColumnType("decimal(20,8)")
                         .HasComment("原材料收货处理时间/天");
 
-                    b.Property<long>("sl_acct")
-                        .HasColumnType("bigint")
-                        .HasComment("废品损失科目代码");
-
                     b.Property<decimal?>("stock_leadtime")
                         .IsRequired()
                         .HasPrecision(20, 8)
                         .HasColumnType("decimal(20,8)")
                         .HasComment("仓库中提前期_天");
 
-                    b.Property<int>("stock_time")
+                    b.Property<int?>("stock_time")
                         .HasColumnType("int")
                         .HasComment("是否需要库龄管理");
 
@@ -612,7 +587,7 @@ namespace Business.Migrations
                         .HasColumnType("int")
                         .HasComment("允许销售");
 
-                    b.Property<int>("allowserial")
+                    b.Property<int?>("allowserial")
                         .HasColumnType("int")
                         .HasComment("序列号管理");
 
@@ -649,7 +624,7 @@ namespace Business.Migrations
                         .HasColumnType("varchar(80)")
                         .HasComment("长度单位");
 
-                    b.Property<int>("enable_warning")
+                    b.Property<int?>("enable_warning")
                         .HasColumnType("int")
                         .HasComment("启用预警");
 
@@ -658,7 +633,8 @@ namespace Business.Migrations
                         .HasComment("物料属性");
 
                     b.Property<string>("erp_cls_name")
-                        .HasColumnType("longtext")
+                        .HasMaxLength(80)
+                        .HasColumnType("varchar(80)")
                         .HasComment("物料属性");
 
                     b.Property<string>("erp_oldnumber")
@@ -690,7 +666,7 @@ namespace Business.Migrations
                         .HasColumnType("decimal(20,8)")
                         .HasComment("毛重");
 
-                    b.Property<long>("hb_level")
+                    b.Property<long?>("hb_level")
                         .HasColumnType("bigint")
                         .HasComment("环保等级");
 
@@ -699,7 +675,7 @@ namespace Business.Migrations
                         .HasColumnType("decimal(20,8)")
                         .HasComment("高度");
 
-                    b.Property<int>("is_equipment")
+                    b.Property<int?>("is_equipment")
                         .HasColumnType("int")
                         .HasComment("是否为设备");
 
@@ -707,7 +683,7 @@ namespace Business.Migrations
                         .HasColumnType("int")
                         .HasComment("是否关键件");
 
-                    b.Property<long>("item_level")
+                    b.Property<long?>("item_level")
                         .HasColumnType("bigint")
                         .HasComment("物料等级");
 
@@ -716,7 +692,7 @@ namespace Business.Migrations
                         .HasColumnType("decimal(20,8)")
                         .HasComment("长度");
 
-                    b.Property<long>("matatt")
+                    b.Property<long?>("matatt")
                         .HasColumnType("bigint")
                         .HasComment("物料类别");
 
@@ -749,7 +725,7 @@ namespace Business.Migrations
                         .HasColumnType("bigint")
                         .HasComment("组织ID");
 
-                    b.Property<long>("output_type_id")
+                    b.Property<long?>("output_type_id")
                         .HasColumnType("bigint")
                         .HasComment("出库类型");
 
@@ -758,7 +734,7 @@ namespace Business.Migrations
                         .HasColumnType("varchar(80)")
                         .HasComment("图片");
 
-                    b.Property<long>("picktype")
+                    b.Property<long?>("picktype")
                         .HasColumnType("bigint")
                         .HasComment("领料类型");
 
@@ -1069,7 +1045,7 @@ namespace Business.Migrations
                         .HasColumnType("bigint")
                         .HasComment("工厂ID");
 
-                    b.Property<long>("ic_plan_id")
+                    b.Property<long?>("ic_plan_id")
                         .HasColumnType("bigint")
                         .HasComment("采购计划id");
 
@@ -1106,7 +1082,7 @@ namespace Business.Migrations
                         .HasColumnType("varchar(80)")
                         .HasComment("采购组");
 
-                    b.Property<long>("supplier_id")
+                    b.Property<long?>("supplier_id")
                         .HasColumnType("bigint")
                         .HasComment("供应商id");
 
@@ -1355,7 +1331,7 @@ namespace Business.Migrations
                         .HasColumnType("decimal(20,8)")
                         .HasComment("入库提前期");
 
-                    b.Property<int>("aux_prop_plan")
+                    b.Property<int?>("aux_prop_plan")
                         .HasColumnType("int")
                         .HasComment("辅助属性参与计划运算");
 
@@ -1364,7 +1340,7 @@ namespace Business.Migrations
                         .HasColumnType("decimal(20,8)")
                         .HasComment("变动提前期批量");
 
-                    b.Property<int>("book_plan")
+                    b.Property<int?>("book_plan")
                         .HasColumnType("int")
                         .HasComment("是否需要进行订补货计划的运算");
 
@@ -1404,7 +1380,7 @@ namespace Business.Migrations
                         .HasColumnType("varchar(80)")
                         .HasComment("物料名称");
 
-                    b.Property<int>("isfixedreorder")
+                    b.Property<int?>("isfixedreorder")
                         .HasColumnType("int")
                         .HasComment("设置为固定再订货点");
 
@@ -1418,9 +1394,9 @@ namespace Business.Migrations
                         .HasColumnType("decimal(20,8)")
                         .HasComment("订货间隔期_天");
 
-                    b.Property<string>("order_point")
-                        .HasMaxLength(80)
-                        .HasColumnType("varchar(80)")
+                    b.Property<decimal?>("order_point")
+                        .HasPrecision(20, 8)
+                        .HasColumnType("decimal(20,8)")
                         .HasComment("再订货点");
 
                     b.Property<int>("order_trategy")

+ 0 - 12
MicroServices/Business/Business.HttpApi/Controllers/WMS/KingdeeController.cs

@@ -50,17 +50,5 @@ namespace Business.Controllers.WMS
         {
             return _SerialNumberAppService.SyncMaterial();
         }
-
-        /// <summary>
-        /// 资源检查
-        /// </summary>
-        /// <param name="input"></param>
-        /// <returns></returns>
-        [HttpGet]
-        [Route("mytest")]
-        public Task<string> ReceiveResult(SeorderentryDto input)
-        {
-            return _SerialNumberAppService.ReceiveResult(input);
-        }
     }
 }

+ 7 - 0
MicroServices/Business/Bussiness.Model/Base/BaseEntity.cs

@@ -16,6 +16,13 @@ namespace Business.Model
 {
     public abstract class BaseEntity : Entity<long>, ISoftDelete
     {
+        public BaseEntity()
+        {
+        }
+
+        public BaseEntity(long Id) : base(Id)
+        {
+        }
         /// <summary>
         /// 生成新的Id
         /// </summary>

+ 205 - 0
MicroServices/Business/Bussiness.Model/Ext/ext_xref.cs

@@ -0,0 +1,205 @@
+using Business.Core.Attributes;
+using Business.Model;
+using Microsoft.EntityFrameworkCore;
+using Spire.Pdf.General.Paper.Font.Rendering.Hinting;
+using System.ComponentModel;
+using System.ComponentModel.DataAnnotations;
+using Volo.Abp.Domain.Entities;
+
+namespace Bussiness.Model.Ext
+{
+    /// <summary>
+    /// ext_xref
+    /// </summary>
+    [CollectionName("dopbase", "ext_xref")]
+    [Comment("ext_xref")]
+    public class ext_xref : Entity<long>
+    {
+        public ext_xref()
+        {
+        }
+
+        public ext_xref(long Id):base(Id)
+        {
+        }
+        /// <summary>
+        /// DOP表名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("DOP表名")]
+        public string? dop_table_name { get; set; }
+        /// <summary>
+        /// DOP表ID
+        /// </summary>
+        [Comment("DOP表ID")]
+        public long? dop_id { get; set; }
+
+        /// <summary>
+        /// 表列1名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("表列1名")]
+        public string? dop_col1_name { get; set; }
+        /// <summary>
+        /// 表列1值
+        /// </summary>
+        [StringLength(80)]
+        [Comment("表列1值")]
+        public string? dop_col1_value { get; set; }
+
+        /// <summary>
+        /// 表列2名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("表列2名")]
+        public string? dop_col2_name { get; set; }
+        /// <summary>
+        /// 表列2值
+        /// </summary>
+        [StringLength(80)]
+        [Comment("表列2值")]
+        public string? dop_col2_value { get; set; }
+
+        /// <summary>
+        /// 表列3名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("表列3名")]
+        public string? dop_col3_name { get; set; }
+        /// <summary>
+        /// 表列3值
+        /// </summary>
+        [StringLength(80)]
+        [Comment("表列3值")]
+        public string? dop_col3_value { get; set; }
+
+        /// <summary>
+        /// 表列4名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("表列4名")]
+        public string? dop_col4_name { get; set; }
+        /// <summary>
+        /// 表列4值
+        /// </summary>
+        [StringLength(80)]
+        [Comment("表列4值")]
+        public string? dop_col4_value { get; set; }
+
+        /// <summary>
+        /// 表列5名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("表列5名")]
+        public string? dop_col5_name { get; set; }
+        /// <summary>
+        /// 表列5值
+        /// </summary>
+        [StringLength(80)]
+        [Comment("表列5值")]
+        public string? dop_col5_value { get; set; }
+
+
+        /// <summary>
+        /// 其它系统名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("其它系统名")]
+        public string? other_sys_name { get; set; }
+
+        /// <summary>
+        /// 其它表名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("其它表名")]
+        public string? other_table_name { get; set; }
+
+        /// <summary>
+        /// 它表ID
+        /// </summary>
+        [Comment("它表ID")]
+        public long? other_id { get; set; }
+
+
+        /// <summary>
+        /// 它列1名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("它列1名")]
+        public string? other_col1_name { get; set; }
+        /// <summary>
+        /// 它列1名
+        /// </summary>
+        [StringLength(80)]
+        [Comment("它列1名")]
+        public string? other_col1_value { get; set; }
+
+        /// <summary>
+        /// 它列2名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("它列2名")]
+        public string? other_col2_name { get; set; }
+        /// <summary>
+        /// 它列2名
+        /// </summary>
+        [StringLength(80)]
+        [Comment("它列2名")]
+        public string? other_col2_value { get; set; }
+
+        /// <summary>
+        /// 它列3名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("它列3名")]
+        public string? other_col3_name { get; set; }
+        /// <summary>
+        /// 它列3名
+        /// </summary>
+        [StringLength(80)]
+        [Comment("它列3名")]
+        public string? other_col3_value { get; set; }
+
+
+        /// <summary>
+        /// 它列4名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("它列4名")]
+        public string? other_col4_name { get; set; }
+        /// <summary>
+        /// 它列4名
+        /// </summary>
+        [StringLength(80)]
+        [Comment("它列4名")]
+        public string? other_col4_value { get; set; }
+
+
+        /// <summary>
+        /// 它列5名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("它列5名")]
+        public string? other_col5_name { get; set; }
+        /// <summary>
+        /// 它列5名
+        /// </summary>
+        [StringLength(80)]
+        [Comment("它列5名")]
+        public string? other_col5_value { get; set; }
+
+        /// <summary>
+        /// 备注信息
+        /// </summary>
+        [Comment("备注信息")]
+        [StringLength(255)]
+        public string? note { get; set; }
+
+        /// <summary>
+        /// DOP系统名
+        /// </summary>
+        [Comment("DOP系统名")]
+        [StringLength(32)]
+        public string? dop_sys_name { get; set; }
+    }
+}

+ 205 - 0
MicroServices/Business/Bussiness.Model/Ext/ext_xrefTest.cs

@@ -0,0 +1,205 @@
+using Business.Core.Attributes;
+using Business.Model;
+using Microsoft.EntityFrameworkCore;
+using Spire.Pdf.General.Paper.Font.Rendering.Hinting;
+using System.ComponentModel;
+using System.ComponentModel.DataAnnotations;
+using Volo.Abp.Domain.Entities;
+
+namespace Bussiness.Model.Ext
+{
+    /// <summary>
+    /// ext_xref
+    /// </summary>
+    [CollectionName("dopbase", "ext_xrefTest")]
+    [Comment("ext_xrefTest")]
+    public class ext_xrefTest : Entity<long>
+    {
+        public ext_xrefTest()
+        {
+        }
+
+        public ext_xrefTest(long Id):base(Id)
+        {
+        }
+        /// <summary>
+        /// DOP表名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("DOP表名")]
+        public string? dop_table_name { get; set; }
+        /// <summary>
+        /// DOP表ID
+        /// </summary>
+        [Comment("DOP表ID")]
+        public long? dop_id { get; set; }
+
+        /// <summary>
+        /// 表列1名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("表列1名")]
+        public string? dop_col1_name { get; set; }
+        /// <summary>
+        /// 表列1值
+        /// </summary>
+        [StringLength(80)]
+        [Comment("表列1值")]
+        public string? dop_col1_value { get; set; }
+
+        /// <summary>
+        /// 表列2名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("表列2名")]
+        public string? dop_col2_name { get; set; }
+        /// <summary>
+        /// 表列2值
+        /// </summary>
+        [StringLength(80)]
+        [Comment("表列2值")]
+        public string? dop_col2_value { get; set; }
+
+        /// <summary>
+        /// 表列3名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("表列3名")]
+        public string? dop_col3_name { get; set; }
+        /// <summary>
+        /// 表列3值
+        /// </summary>
+        [StringLength(80)]
+        [Comment("表列3值")]
+        public string? dop_col3_value { get; set; }
+
+        /// <summary>
+        /// 表列4名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("表列4名")]
+        public string? dop_col4_name { get; set; }
+        /// <summary>
+        /// 表列4值
+        /// </summary>
+        [StringLength(80)]
+        [Comment("表列4值")]
+        public string? dop_col4_value { get; set; }
+
+        /// <summary>
+        /// 表列5名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("表列5名")]
+        public string? dop_col5_name { get; set; }
+        /// <summary>
+        /// 表列5值
+        /// </summary>
+        [StringLength(80)]
+        [Comment("表列5值")]
+        public string? dop_col5_value { get; set; }
+
+
+        /// <summary>
+        /// 其它系统名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("其它系统名")]
+        public string? other_sys_name { get; set; }
+
+        /// <summary>
+        /// 其它表名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("其它表名")]
+        public string? other_table_name { get; set; }
+
+        /// <summary>
+        /// 它表ID
+        /// </summary>
+        [Comment("它表ID")]
+        public long? other_id { get; set; }
+
+
+        /// <summary>
+        /// 它列1名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("它列1名")]
+        public string? other_col1_name { get; set; }
+        /// <summary>
+        /// 它列1名
+        /// </summary>
+        [StringLength(80)]
+        [Comment("它列1名")]
+        public string? other_col1_value { get; set; }
+
+        /// <summary>
+        /// 它列2名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("它列2名")]
+        public string? other_col2_name { get; set; }
+        /// <summary>
+        /// 它列2名
+        /// </summary>
+        [StringLength(80)]
+        [Comment("它列2名")]
+        public string? other_col2_value { get; set; }
+
+        /// <summary>
+        /// 它列3名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("它列3名")]
+        public string? other_col3_name { get; set; }
+        /// <summary>
+        /// 它列3名
+        /// </summary>
+        [StringLength(80)]
+        [Comment("它列3名")]
+        public string? other_col3_value { get; set; }
+
+
+        /// <summary>
+        /// 它列4名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("它列4名")]
+        public string? other_col4_name { get; set; }
+        /// <summary>
+        /// 它列4名
+        /// </summary>
+        [StringLength(80)]
+        [Comment("它列4名")]
+        public string? other_col4_value { get; set; }
+
+
+        /// <summary>
+        /// 它列5名
+        /// </summary>
+        [StringLength(32)]
+        [Comment("它列5名")]
+        public string? other_col5_name { get; set; }
+        /// <summary>
+        /// 它列5名
+        /// </summary>
+        [StringLength(80)]
+        [Comment("它列5名")]
+        public string? other_col5_value { get; set; }
+
+        /// <summary>
+        /// 备注信息
+        /// </summary>
+        [Comment("备注信息")]
+        [StringLength(255)]
+        public string? note { get; set; }
+
+        /// <summary>
+        /// DOP系统名
+        /// </summary>
+        [Comment("DOP系统名")]
+        [StringLength(32)]
+        public string? dop_sys_name { get; set; }
+    }
+}

+ 11 - 0
MicroServices/Business/Bussiness.Model/Ext/in_kd_bom.cs

@@ -1,4 +1,5 @@
 using Business.Core.Attributes;
+using Business.Core.Utilities;
 using Business.Model;
 using Microsoft.EntityFrameworkCore;
 using System.ComponentModel;
@@ -14,6 +15,16 @@ namespace Bussiness.Model.Ext
     [Comment("物料清单")]
     public class in_kd_bom : Entity<long>
     {
+        [Key]
+        public override long Id
+        {
+            get
+            {
+                if (Id == 0)
+                    return new SnowFlake().NextId();
+                return Id;
+            }
+        }
         /// <summary>
         /// 使用组织
         /// </summary>

+ 1 - 0
MicroServices/Business/Bussiness.Model/Ext/in_kd_material.cs

@@ -1,4 +1,5 @@
 using Business.Core.Attributes;
+using Business.Core.Utilities;
 using Business.Model;
 using Microsoft.EntityFrameworkCore;
 using System.ComponentModel;

+ 13 - 38
MicroServices/Business/Bussiness.Model/MES/IC/ic_factory_details.cs

@@ -14,6 +14,9 @@ namespace Bussiness.Model.MES.IC
     [Comment("工厂物料明细表")]
     public class ic_factory_details : BaseEntity
     {
+         public ic_factory_details(long Id) : base(Id)
+        {
+        }
         /// <summary>
         /// 物料id
         /// </summary>
@@ -47,19 +50,18 @@ namespace Bussiness.Model.MES.IC
         /// <summary>
         /// 领料类型
         /// </summary>
-        [Required]
         [Comment("领料类型")]
-        public long pick_type { get; set; }
+        public long? pick_type { get; set; }
         /// <summary>
         /// 是否采用业务批次管理
         /// </summary>
         [Comment("是否采用业务批次管理")]
-        public int batch_manager { get; set; }
+        public int? batch_manager { get; set; }
         /// <summary>
         /// 是否需要库龄管理
         /// </summary>
         [Comment("是否需要库龄管理")]
-        public int stock_time { get; set; }
+        public int? stock_time { get; set; }
         /// <summary>
         /// 盘点周期单位
         /// </summary>
@@ -76,7 +78,7 @@ namespace Bussiness.Model.MES.IC
         /// 每周_月第天
         /// </summary>
         [Comment("每周_月第天")]
-        public int days_per { get; set; }
+        public int? days_per { get; set; }
         /// <summary>
         /// 上次盘点日期
         /// </summary>
@@ -85,27 +87,23 @@ namespace Bussiness.Model.MES.IC
         /// <summary>
         /// 默认待检仓库
         /// </summary>
-        [Required]
         [Comment("默认待检仓库")]
-        public long default_chkloc { get; set; }
+        public long? default_chkloc { get; set; }
         /// <summary>
         /// 默认待检仓位
         /// </summary>
-        [Required]
         [Comment("默认待检仓位")]
-        public long default_chksp { get; set; }
+        public long? default_chksp { get; set; }
         /// <summary>
         /// 默认仓库
-        /// </summary>
-        [Required]
+        /// </summary>red]
         [Comment("默认仓库")]
-        public long default_loc { get; set; }
+        public long? default_loc { get; set; }
         /// <summary>
         /// 默认仓位
         /// </summary>
-        [Required]
         [Comment("默认仓位")]
-        public long default_sp { get; set; }
+        public long? default_sp { get; set; }
         /// <summary>
         /// 货架信息
         /// </summary>
@@ -142,30 +140,7 @@ namespace Bussiness.Model.MES.IC
         [Precision(20, 8)]
         [Comment("日消耗量")]
         public decimal? daily_consume { get; set; }
-        /// <summary>
-        /// 材料成本差异科目代码
-        /// </summary>
-        [Required]
-        [Comment("材料成本差异科目代码")]
-        public long mcv_acct { get; set; }
-        /// <summary>
-        /// 加工费差异科目代码
-        /// </summary>
-        [Required]
-        [Comment("加工费差异科目代码")]
-        public long pcv_acct { get; set; }
-        /// <summary>
-        /// 废品损失科目代码
-        /// </summary>
-        [Required]
-        [Comment("废品损失科目代码")]
-        public long sl_acct { get; set; }
-        /// <summary>
-        /// 标准成本调整差异科目代码
-        /// </summary>
-        [Required]
-        [Comment("标准成本调整差异科目代码")]
-        public long cav_acct { get; set; }
+
         /// <summary>
         /// 库存备注
         /// </summary>

+ 243 - 0
MicroServices/Business/Bussiness.Model/MES/IC/ic_factory_detailsTest.cs

@@ -0,0 +1,243 @@
+using Business.Core.Attributes;
+using Business.Model;
+using Microsoft.EntityFrameworkCore;
+using System.ComponentModel;
+using System.ComponentModel.DataAnnotations;
+using System.ComponentModel.DataAnnotations.Schema;
+
+namespace Bussiness.Model.MES.IC
+{
+    /// <summary>
+    /// 工厂物料明细表
+    /// </summary>
+    [CollectionName("dopbase", "ic_factory_detailsTest")]
+    [Comment("工厂物料明细表")]
+    public class ic_factory_detailsTest : BaseEntity
+    {
+         public ic_factory_detailsTest(long Id) : base(Id)
+        {
+        }
+        /// <summary>
+        /// 物料id
+        /// </summary>
+        [Required]
+        [Comment("物料id")]
+        public long icitem_id { get; set; }
+        /// <summary>
+        /// 物料名称
+        /// </summary>
+        [StringLength(80)]
+        [Comment("物料名称")]
+        public string? icitem_name { get; set; }
+        /// <summary>
+        /// 工厂编码
+        /// </summary>
+        [StringLength(80)]
+        [Comment("工厂编码")]
+        public string? factory_fode { get; set; }
+        /// <summary>
+        /// 特殊备注
+        /// </summary>
+        [StringLength(1000)]
+        [Comment("特殊备注")]
+        public string? note { get; set; }
+        /// <summary>
+        /// 产品线
+        /// </summary>
+        [StringLength(80)]
+        [Comment("产品线")]
+        public string? product_line { get; set; }
+        /// <summary>
+        /// 领料类型
+        /// </summary>
+        [Comment("领料类型")]
+        public long? pick_type { get; set; }
+        /// <summary>
+        /// 是否采用业务批次管理
+        /// </summary>
+        [Comment("是否采用业务批次管理")]
+        public int? batch_manager { get; set; }
+        /// <summary>
+        /// 是否需要库龄管理
+        /// </summary>
+        [Comment("是否需要库龄管理")]
+        public int? stock_time { get; set; }
+        /// <summary>
+        /// 盘点周期单位
+        /// </summary>
+        [StringLength(80)]
+        [Comment("盘点周期单位")]
+        public string? check_cycunit { get; set; }
+        /// <summary>
+        /// 盘点周期
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("盘点周期")]
+        public decimal? check_cycle { get; set; }
+        /// <summary>
+        /// 每周_月第天
+        /// </summary>
+        [Comment("每周_月第天")]
+        public int? days_per { get; set; }
+        /// <summary>
+        /// 上次盘点日期
+        /// </summary>
+        [Comment("上次盘点日期")]
+        public DateTime? last_checkdate { get; set; }
+        /// <summary>
+        /// 默认待检仓库
+        /// </summary>
+        [Comment("默认待检仓库")]
+        public long? default_chkloc { get; set; }
+        /// <summary>
+        /// 默认待检仓位
+        /// </summary>
+        [Comment("默认待检仓位")]
+        public long? default_chksp { get; set; }
+        /// <summary>
+        /// 默认仓库
+        /// </summary>red]
+        [Comment("默认仓库")]
+        public long? default_loc { get; set; }
+        /// <summary>
+        /// 默认仓位
+        /// </summary>
+        [Comment("默认仓位")]
+        public long? default_sp { get; set; }
+        /// <summary>
+        /// 货架信息
+        /// </summary>
+        [StringLength(80)]
+        [Comment("货架信息")]
+        public string? item_shelve { get; set; }
+        /// <summary>
+        /// 默认仓管员
+        /// </summary>
+        [StringLength(80)]
+        [Comment("默认仓管员")]
+        public string? default_manager { get; set; }
+        /// <summary>
+        /// 最低存量
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("最低存量")]
+        public decimal? low_limit { get; set; }
+        /// <summary>
+        /// 最高存量
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("最高存量")]
+        public decimal? high_limit { get; set; }
+        /// <summary>
+        /// 最大订货量
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("最大订货量")]
+        public decimal? qty_max { get; set; }
+        /// <summary>
+        /// 日消耗量
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("日消耗量")]
+        public decimal? daily_consume { get; set; }
+
+        /// <summary>
+        /// 库存备注
+        /// </summary>
+        [StringLength(1000)]
+        [Comment("库存备注")]
+        public string? warehouse_note { get; set; }
+        /// <summary>
+        /// 工单发料时间/天
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("工单发料时间/天")]
+        public decimal? ordissu_days { get; set; }
+        /// <summary>
+        /// 原材料收货处理时间/天
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("原材料收货处理时间/天")]
+        public decimal? raw_matreceiv_days { get; set; }
+        /// <summary>
+        /// 成品入库时间/天
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("成品入库时间/天")]
+        public decimal? prdenter_days { get; set; }
+        /// <summary>
+        /// 原材料入库时间/天
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("原材料入库时间/天")]
+        public decimal? mat_enter_days { get; set; }
+        /// <summary>
+        /// 成品发货时间/天
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("成品发货时间/天")]
+        public decimal? prd_out_days { get; set; }
+
+        /// <summary>
+        /// 运输中提前期_天
+        /// </summary>
+        [Comment("运输中提前期_天")]
+        [Required]
+        [DefaultValue(0)]
+        [Precision(20, 8)]
+        public decimal? transportation_leadtime { get; set; }
+
+        /// <summary>
+        /// 仓库中提前期_天
+        /// </summary>
+        [Comment("仓库中提前期_天")]
+        [Required]
+        [DefaultValue(0)]
+        [Precision(20, 8)]
+        public decimal? stock_leadtime { get; set; }
+
+        /// <summary>
+        /// 生产中提前期_天
+        /// </summary>
+        [Comment("生产中提前期_天")]
+        [Required]
+        [DefaultValue(0)]
+        [Precision(20, 8)]
+        public decimal? production_leadtime { get; set; }
+
+        /// <summary>
+        /// 下单前置期_天
+        /// </summary>
+        [Comment("下单前置期_天")]
+        [Required]
+        [DefaultValue(0)]
+        [Precision(20, 8)]
+        public decimal? order_leadtime { get; set; }
+
+        /// <summary>
+        /// 最小包装量
+        /// </summary>
+        [Comment("最小包装量")]
+        [Required]
+        [DefaultValue(0)]
+        [Precision(20, 8)]
+        public decimal? minpackqty { get; set; }
+
+        /// <summary>
+        /// 最小订单量
+        /// </summary>
+        [Comment("最小订单量")]
+        [Required]
+        [DefaultValue(0)]
+        [Precision(20, 8)]
+        public decimal? minorderqty { get; set; }
+
+        /// <summary>
+        /// 计算ID
+        /// </summary>
+        [Comment("计算id")]
+        [NotMapped]
+        public long? bang_id { get; set; }
+
+    }
+}

+ 11 - 13
MicroServices/Business/Bussiness.Model/MES/IC/ic_item.cs

@@ -13,6 +13,9 @@ namespace Bussiness.Model.MES.IC
     [Comment("物料详情")]
     public class ic_item : BaseEntity
     {
+        public ic_item(long Id) : base(Id)
+        {
+        }
         /// <summary>
         /// 物料编码
         /// </summary>
@@ -87,15 +90,13 @@ namespace Bussiness.Model.MES.IC
         /// <summary>
         /// 物料等级
         /// </summary>
-        [Required]
         [Comment("物料等级")]
-        public long item_level { get; set; }
+        public long? item_level { get; set; }
         /// <summary>
         /// 环保等级
         /// </summary>
-        [Required]
         [Comment("环保等级")]
-        public long hb_level { get; set; }
+        public long? hb_level { get; set; }
         /// <summary>
         /// 单位标准工时_小时
         /// </summary>
@@ -118,7 +119,7 @@ namespace Bussiness.Model.MES.IC
         /// 是否为设备
         /// </summary>
         [Comment("是否为设备")]
-        public int is_equipment { get; set; }
+        public int? is_equipment { get; set; }
         /// <summary>
         /// 单位包装数量
         /// </summary>
@@ -187,9 +188,8 @@ namespace Bussiness.Model.MES.IC
         /// <summary>
         /// 物料类别
         /// </summary>
-        [Required]
         [Comment("物料类别")]
-        public long matatt { get; set; }
+        public long? matatt { get; set; }
         /// <summary>
         /// 允许采购
         /// </summary>
@@ -219,7 +219,7 @@ namespace Bussiness.Model.MES.IC
         /// 序列号管理
         /// </summary>
         [Comment("序列号管理")]
-        public int allowserial { get; set; }
+        public int? allowserial { get; set; }
         /// <summary>
         /// 图片
         /// </summary>
@@ -229,19 +229,17 @@ namespace Bussiness.Model.MES.IC
         /// <summary>
         /// 领料类型
         /// </summary>
-        [Required]
         [Comment("领料类型")]
-        public long picktype { get; set; }
+        public long? picktype { get; set; }
         /// <summary>
         /// 出库类型
         /// </summary>
-        [Required]
         [Comment("出库类型")]
-        public long output_type_id { get; set; }
+        public long? output_type_id { get; set; }
         /// <summary>
         /// 启用预警
         /// </summary>
         [Comment("启用预警")]
-        public int enable_warning { get; set; }
+        public int? enable_warning { get; set; }
     }
 }

+ 245 - 0
MicroServices/Business/Bussiness.Model/MES/IC/ic_itemTest.cs

@@ -0,0 +1,245 @@
+using Business.Core.Attributes;
+using Business.Model;
+using Microsoft.EntityFrameworkCore;
+using System.ComponentModel;
+using System.ComponentModel.DataAnnotations;
+
+namespace Bussiness.Model.MES.IC
+{
+    /// <summary>
+    /// 物料详情
+    /// </summary>
+    [CollectionName("dopbase", "ic_itemTest")]
+    [Comment("物料详情")]
+    public class ic_itemTest : BaseEntity
+    {
+        public ic_itemTest(long Id) : base(Id)
+        {
+        }
+        /// <summary>
+        /// 物料编码
+        /// </summary>
+        [StringLength(80)]
+        [Comment("物料编码")]
+        public string? number { get; set; }
+        /// <summary>
+        /// 物料名称
+        /// </summary>
+        [StringLength(80)]
+        [Comment("物料名称")]
+        public string? name { get; set; }
+        /// <summary>
+        /// 规格型号
+        /// </summary>
+        [StringLength(200)]
+        [Comment("规格型号")]
+        public string? model { get; set; }
+        /// <summary>
+        /// 全名
+        /// </summary>
+        [StringLength(255)]
+        [Comment("全名")]
+        public string? full_name { get; set; }
+        /// <summary>
+        /// fms旧料号
+        /// </summary>
+        [StringLength(80)]
+        [Comment("fms旧料号")]
+        public string? fms_number { get; set; }
+        /// <summary>
+        /// erp旧料号
+        /// </summary>
+        [StringLength(80)]
+        [Comment("erp旧料号")]
+        public string? erp_oldnumber { get; set; }
+        /// <summary>
+        /// 图号
+        /// </summary>
+        [StringLength(80)]
+        [Comment("图号")]
+        public string? chart_number { get; set; }
+        /// <summary>
+        /// 版本号
+        /// </summary>
+        [StringLength(80)]
+        [Comment("版本号")]
+        public string? fversion { get; set; }
+        /// <summary>
+        /// 盒贴规格
+        /// </summary>
+        [StringLength(200)]
+        [Comment("盒贴规格")]
+        public string? box_model { get; set; }
+        /// <summary>
+        /// 物料属性
+        /// </summary>
+        [Comment("物料属性")]
+        public int erp_cls { get; set; }
+        /// <summary>
+        /// 物料属性名称
+        /// </summary>
+        [StringLength(80)]
+        [Comment("物料属性")]
+        public string? erp_cls_name { get; set; }
+        /// <summary>
+        /// 单位
+        /// </summary>
+        [StringLength(80)]
+        [Comment("单位")]
+        public string? unit { get; set; }
+        /// <summary>
+        /// 物料等级
+        /// </summary>
+        [Comment("物料等级")]
+        public long? item_level { get; set; }
+        /// <summary>
+        /// 环保等级
+        /// </summary>
+        [Comment("环保等级")]
+        public long? hb_level { get; set; }
+        /// <summary>
+        /// 单位标准工时_小时
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("单位标准工时_小时")]
+        public decimal? standard_manhour { get; set; }
+        /// <summary>
+        /// 单位材料定额_元
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("单位材料定额_元")]
+        public decimal? unititem_amount { get; set; }
+        /// <summary>
+        /// 来源
+        /// </summary>
+        [StringLength(200)]
+        [Comment("来源")]
+        public string? source { get; set; }
+        /// <summary>
+        /// 是否为设备
+        /// </summary>
+        [Comment("是否为设备")]
+        public int? is_equipment { get; set; }
+        /// <summary>
+        /// 单位包装数量
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("单位包装数量")]
+        public decimal? unit_qty { get; set; }
+        /// <summary>
+        /// 严格进行二维码数量校验
+        /// </summary>
+        [StringLength(80)]
+        [Comment("严格进行二维码数量校验")]
+        public string? check_bybarcode { get; set; }
+        /// <summary>
+        /// 是否关键件
+        /// </summary>
+        [Comment("是否关键件")]
+        public int iskeyitem { get; set; }
+        /// <summary>
+        /// 毛重
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("毛重")]
+        public decimal? gross_weight { get; set; }
+        /// <summary>
+        /// 净重
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("净重")]
+        public decimal? net_weight { get; set; }
+        /// <summary>
+        /// 重量单位
+        /// </summary>
+        [StringLength(80)]
+        [Comment("重量单位")]
+        public string? maund { get; set; }
+        /// <summary>
+        /// 长度
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("长度")]
+        public decimal? length { get; set; }
+        /// <summary>
+        /// 长度单位
+        /// </summary>
+        [StringLength(80)]
+        [Comment("长度单位")]
+        public string? cubic_measure { get; set; }
+        /// <summary>
+        /// 宽度
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("宽度")]
+        public decimal? width { get; set; }
+        /// <summary>
+        /// 高度
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("高度")]
+        public decimal? height { get; set; }
+        /// <summary>
+        /// 体积
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("体积")]
+        public decimal? size { get; set; }
+        /// <summary>
+        /// 物料类别
+        /// </summary>
+        [Comment("物料类别")]
+        public long? matatt { get; set; }
+        /// <summary>
+        /// 允许采购
+        /// </summary>
+        [Comment("允许采购")]
+        public int allowpur { get; set; }
+        /// <summary>
+        /// 允许销售
+        /// </summary>
+        [Comment("允许销售")]
+        public int allowsale { get; set; }
+        /// <summary>
+        /// 允许生产
+        /// </summary>
+        [Comment("允许生产")]
+        public int allowmanu { get; set; }
+        /// <summary>
+        /// 允许委外
+        /// </summary>
+        [Comment("允许委外")]
+        public int allowout { get; set; }
+        /// <summary>
+        /// 批号管理
+        /// </summary>
+        [Comment("批号管理")]
+        public int allowbatch { get; set; }
+        /// <summary>
+        /// 序列号管理
+        /// </summary>
+        [Comment("序列号管理")]
+        public int? allowserial { get; set; }
+        /// <summary>
+        /// 图片
+        /// </summary>
+        [StringLength(80)]
+        [Comment("图片")]
+        public string? photo { get; set; }
+        /// <summary>
+        /// 领料类型
+        /// </summary>
+        [Comment("领料类型")]
+        public long? picktype { get; set; }
+        /// <summary>
+        /// 出库类型
+        /// </summary>
+        [Comment("出库类型")]
+        public long? output_type_id { get; set; }
+        /// <summary>
+        /// 启用预警
+        /// </summary>
+        [Comment("启用预警")]
+        public int? enable_warning { get; set; }
+    }
+}

+ 3 - 0
MicroServices/Business/Bussiness.Model/MES/IC/ic_item_ie.cs

@@ -18,6 +18,9 @@ namespace Bussiness.Model.MES.IC
     [Comment("物料ie信息表")]
     public class ic_item_ie:BaseEntity
     {
+        public ic_item_ie(long Id) : base(Id)
+        {
+        }
         /// <summary>
         /// 物料id
         /// </summary>

+ 65 - 0
MicroServices/Business/Bussiness.Model/MES/IC/ic_item_ieTest.cs

@@ -0,0 +1,65 @@
+using Business.Core.Attributes;
+using Business.Model;
+using Microsoft.EntityFrameworkCore;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.ComponentModel.DataAnnotations;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Bussiness.Model.MES.IC
+{
+    /// <summary>
+    /// 物料ie信息表
+    /// </summary>
+    [CollectionName("dopbase", "ic_item_ieTest")]
+    [Comment("物料ie信息表")]
+    public class ic_item_ieTest:BaseEntity
+    {
+        public ic_item_ieTest(long Id) : base(Id)
+        {
+        }
+        /// <summary>
+        /// 物料id
+        /// </summary>
+        [Required]
+        [Comment("物料id")]
+        public long icitem_id { get; set; }
+        /// <summary>
+        /// 是否倒冲
+        /// </summary>
+        [Comment("是否倒冲")]
+        public int isbackflush { get; set; }
+        /// <summary>
+        /// 生产负责人
+        /// </summary>
+        [StringLength(80)]
+        [Comment("生产负责人")]
+        public string? product_principal { get; set; }
+        /// <summary>
+        /// 倒冲仓库
+        /// </summary>
+        [StringLength(80)]
+        [Comment("倒冲仓库")]
+        public string? back_flush_stock { get; set; }
+        /// <summary>
+        /// 倒冲仓位
+        /// </summary>
+        [StringLength(80)]
+        [Comment("倒冲仓位")]
+        public string? back_flush_sp { get; set; }
+        /// <summary>
+        /// 投料自动取整
+        /// </summary>
+        [Comment("投料自动取整")]
+        public int put_integer { get; set; }
+        /// <summary>
+        /// ie备注
+        /// </summary>
+        [StringLength(1000)]
+        [Comment("ie备注")]
+        public string? ir_note { get; set; }
+    }
+}

+ 5 - 4
MicroServices/Business/Bussiness.Model/MES/IC/ic_item_pur.cs

@@ -14,6 +14,9 @@ namespace Bussiness.Model.MES.IC
     [Comment("物料采购报价单")]
     public class ic_item_pur : BaseEntity
     {
+        public ic_item_pur(long Id) : base(Id)
+        {
+        }
         /// <summary>
         /// 物料id
         /// </summary>
@@ -29,15 +32,13 @@ namespace Bussiness.Model.MES.IC
         /// <summary>
         /// 采购计划id
         /// </summary>
-        [Required]
         [Comment("采购计划id")]
-        public long ic_plan_id { get; set; }
+        public long? ic_plan_id { get; set; }
         /// <summary>
         /// 供应商id
         /// </summary>
-        [Required]
         [Comment("供应商id")]
-        public long supplier_id { get; set; }
+        public long? supplier_id { get; set; }
         /// <summary>
         /// 供应商编码
         /// </summary>

+ 98 - 0
MicroServices/Business/Bussiness.Model/MES/IC/ic_item_purTest.cs

@@ -0,0 +1,98 @@
+using Business.Core.Attributes;
+using Business.Model;
+using Microsoft.EntityFrameworkCore;
+using System.ComponentModel;
+using System.ComponentModel.DataAnnotations;
+using System.ComponentModel.DataAnnotations.Schema;
+
+namespace Bussiness.Model.MES.IC
+{
+    /// <summary>
+    /// 物料采购报价单
+    /// </summary>
+    [CollectionName("dopbase", "ic_item_purTest")]
+    [Comment("物料采购报价单")]
+    public class ic_item_purTest : BaseEntity
+    {
+        public ic_item_purTest(long Id) : base(Id)
+        {
+        }
+        /// <summary>
+        /// 物料id
+        /// </summary>
+        [Required]
+        [Comment("物料id")]
+        public long icitem_id { get; set; }
+        /// <summary>
+        /// 物料名称
+        /// </summary>
+        [StringLength(80)]
+        [Comment("物料名称")]
+        public string? icitem_name { get; set; }
+        /// <summary>
+        /// 采购计划id
+        /// </summary>
+        [Comment("采购计划id")]
+        public long? ic_plan_id { get; set; }
+        /// <summary>
+        /// 供应商id
+        /// </summary>
+        [Comment("供应商id")]
+        public long? supplier_id { get; set; }
+        /// <summary>
+        /// 供应商编码
+        /// </summary>
+        [StringLength(80)]
+        [Comment("供应商编码")]
+        public string? supplier_number { get; set; }
+        /// <summary>
+        /// 供应商名称
+        /// </summary>
+        [StringLength(80)]
+        [Comment("供应商名称")]
+        public string? supplier_name { get; set; }
+        /// <summary>
+        /// 采购组
+        /// </summary>
+        [StringLength(80)]
+        [Comment("采购组")]
+        public string? purchgroup { get; set; }
+        /// <summary>
+        /// 采购员
+        /// </summary>
+        [StringLength(80)]
+        [Comment("采购员")]
+        public string? purcher { get; set; }
+        /// <summary>
+        /// 采购计量单位
+        /// </summary>
+        [StringLength(80)]
+        [Comment("采购计量单位")]
+        public string? purchase_unit { get; set; }
+        /// <summary>
+        /// 采购净价(不含税)
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("采购净价(不含税)")]
+        public decimal? netpurchase_price { get; set; }
+        /// <summary>
+        /// 税率
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("税率")]
+        public decimal? taxrate { get; set; }
+        /// <summary>
+        /// 币种
+        /// </summary>
+        [Required]
+        [Comment("币种")]
+        public long? currency_type { get; set; }
+
+        /// <summary>
+        /// 计算ID
+        /// </summary>
+        [Comment("计算id")]
+        [NotMapped]
+        public long? bang_id { get; set; }
+    }
+}

+ 8 - 5
MicroServices/Business/Bussiness.Model/MES/IC/ic_plan.cs

@@ -14,6 +14,9 @@ namespace Bussiness.Model.MES.IC
     [Comment("物料采购计划表")]
     public class ic_plan : BaseEntity
     {
+        public ic_plan(long Id) : base(Id)
+        {
+        }
         /// <summary>
         /// 物料id
         /// </summary>
@@ -87,14 +90,14 @@ namespace Bussiness.Model.MES.IC
         /// <summary>
         /// 再订货点
         /// </summary>
-        [StringLength(80)]
+        [Precision(20, 8)]
         [Comment("再订货点")]
-        public string? order_point { get; set; }
+        public decimal? order_point { get; set; }
         /// <summary>
         /// 设置为固定再订货点
         /// </summary>
         [Comment("设置为固定再订货点")]
-        public int isfixedreorder { get; set; }
+        public int? isfixedreorder { get; set; }
         /// <summary>
         /// 安全库存数量
         /// </summary>
@@ -111,12 +114,12 @@ namespace Bussiness.Model.MES.IC
         /// 是否需要进行订补货计划的运算
         /// </summary>
         [Comment("是否需要进行订补货计划的运算")]
-        public int book_plan { get; set; }
+        public int? book_plan { get; set; }
         /// <summary>
         /// 辅助属性参与计划运算
         /// </summary>
         [Comment("辅助属性参与计划运算")]
-        public int aux_prop_plan { get; set; }
+        public int? aux_prop_plan { get; set; }
         /// <summary>
         /// 计划备注
         /// </summary>

+ 155 - 0
MicroServices/Business/Bussiness.Model/MES/IC/ic_planTest.cs

@@ -0,0 +1,155 @@
+using Business.Core.Attributes;
+using Business.Model;
+using Microsoft.EntityFrameworkCore;
+using System.ComponentModel;
+using System.ComponentModel.DataAnnotations;
+using System.ComponentModel.DataAnnotations.Schema;
+
+namespace Bussiness.Model.MES.IC
+{
+    /// <summary>
+    /// 物料采购计划表
+    /// </summary>
+    [CollectionName("dopbase", "ic_planTest")]
+    [Comment("物料采购计划表")]
+    public class ic_planTest : BaseEntity
+    {
+        public ic_planTest(long Id) : base(Id)
+        {
+        }
+        /// <summary>
+        /// 物料id
+        /// </summary>
+        [Required]
+        [Comment("物料id")]
+        public long icitem_id { get; set; }
+        /// <summary>
+        /// 物料名称
+        /// </summary>
+        [StringLength(80)]
+        [Comment("物料名称")]
+        public string? icitem_name { get; set; }
+        /// <summary>
+        /// 计划员
+        /// </summary>
+        [StringLength(80)]
+        [Comment("计划员")]
+        public string? planner_name { get; set; }
+        /// <summary>
+        /// 计划员_工号
+        /// </summary>
+        [StringLength(80)]
+        [Comment("计划员_工号")]
+        public string? planner_num { get; set; }
+        /// <summary>
+        /// 工厂编码
+        /// </summary>
+        [StringLength(80)]
+        [Comment("工厂编码")]
+        public string? factory_code { get; set; }
+        /// <summary>
+        /// 固定提前期(天)
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("固定提前期(天)")]
+        public decimal? fix_leadtime { get; set; }
+        /// <summary>
+        /// 计划策略
+        /// </summary>
+        [Comment("计划策略")]
+        public int plan_trategy { get; set; }
+        /// <summary>
+        /// 订货策略
+        /// </summary>
+        [Comment("订货策略")]
+        public int order_trategy { get; set; }
+        /// <summary>
+        /// 订货间隔期_天
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("订货间隔期_天")]
+        public decimal? order_inter_val { get; set; }
+        /// <summary>
+        /// 变动提前期
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("变动提前期")]
+        public decimal? lead_time { get; set; }
+        /// <summary>
+        /// 变动提前期批量
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("变动提前期批量")]
+        public decimal? bat_change_economy { get; set; }
+        /// <summary>
+        /// 累计提前期
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("累计提前期")]
+        public decimal? total_tqq { get; set; }
+        /// <summary>
+        /// 再订货点
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("再订货点")]
+        public decimal? order_point { get; set; }
+        /// <summary>
+        /// 设置为固定再订货点
+        /// </summary>
+        [Comment("设置为固定再订货点")]
+        public int? isfixedreorder { get; set; }
+        /// <summary>
+        /// 安全库存数量
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("安全库存数量")]
+        public decimal? secinv { get; set; }
+        /// <summary>
+        /// 安全库存触发采购比例
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("安全库存触发采购比例")]
+        public decimal? secinv_ratio { get; set; }
+        /// <summary>
+        /// 是否需要进行订补货计划的运算
+        /// </summary>
+        [Comment("是否需要进行订补货计划的运算")]
+        public int? book_plan { get; set; }
+        /// <summary>
+        /// 辅助属性参与计划运算
+        /// </summary>
+        [Comment("辅助属性参与计划运算")]
+        public int? aux_prop_plan { get; set; }
+        /// <summary>
+        /// 计划备注
+        /// </summary>
+        [StringLength(1000)]
+        [Comment("计划备注")]
+        public string? plannote { get; set; }
+
+        /// <summary>
+        /// 计算ID
+        /// </summary>
+        [Comment("计算id")]
+        [NotMapped]
+        public long? bang_id { get; set; }
+        /// <summary>
+        /// 自检提前期
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("自检提前期")]
+        public decimal? self_inspection_date { get; set; }
+        /// <summary>
+        /// 入库提前期
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("入库提前期")]
+        public decimal? Warehousing_date { get; set; }
+        /// <summary>
+        /// 发运提前期
+        /// </summary>
+        [Precision(20, 8)]
+        [Comment("发运提前期")]
+        public decimal? Shipping_date { get; set; }
+    }
+}