From 426e63cf72b7c473f31804948d890fe58873af15 Mon Sep 17 00:00:00 2001 From: zhouhongjun <565221961@qq.com> Date: Wed, 28 May 2025 17:30:27 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E6=96=B0=E5=AE=9A=E4=B9=89=E5=AE=9E?= =?UTF-8?q?=E4=BD=93=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- API/TaskManager.Entity/Entity.cs | 67 +------------------ .../01_09/{SupplierBom.cs => SUPPLIER_BOM.cs} | 2 +- ...pplierEmployee.cs => SUPPLIER_EMPLOYEE.cs} | 2 +- .../{SupplierInfo.cs => SUPPLIER_INFO.cs} | 2 +- ...{SupplierProCps.cs => SUPPLIER_PRO_CPS.cs} | 2 +- ...upplierProData.cs => SUPPLIER_PRO_DATA.cs} | 2 +- ...eld.cs => SUPPLIER_PRO_FIRST_PASSYIELD.cs} | 2 +- ...tock.cs => SUPPLIER_PRO_MATERIAL_STOCK.cs} | 2 +- ...heduling.cs => SUPPLIER_PRO_SCHEDULING.cs} | 2 +- ...> SUPPLIER_PRO_STATION_FIRST_PASSYIELD.cs} | 2 +- 10 files changed, 10 insertions(+), 75 deletions(-) rename API/TaskManager.Entity/Entitys/01_09/{SupplierBom.cs => SUPPLIER_BOM.cs} (98%) rename API/TaskManager.Entity/Entitys/01_09/{SupplierEmployee.cs => SUPPLIER_EMPLOYEE.cs} (98%) rename API/TaskManager.Entity/Entitys/01_09/{SupplierInfo.cs => SUPPLIER_INFO.cs} (98%) rename API/TaskManager.Entity/Entitys/01_09/{SupplierProCps.cs => SUPPLIER_PRO_CPS.cs} (99%) rename API/TaskManager.Entity/Entitys/01_09/{SupplierProData.cs => SUPPLIER_PRO_DATA.cs} (99%) rename API/TaskManager.Entity/Entitys/01_09/{SupplierProFirstPassyield.cs => SUPPLIER_PRO_FIRST_PASSYIELD.cs} (98%) rename API/TaskManager.Entity/Entitys/01_09/{SupplierProMaterialStock.cs => SUPPLIER_PRO_MATERIAL_STOCK.cs} (98%) rename API/TaskManager.Entity/Entitys/01_09/{SupplierProScheduling.cs => SUPPLIER_PRO_SCHEDULING.cs} (98%) rename API/TaskManager.Entity/Entitys/01_09/{SupplierProStationFirstPassyield.cs => SUPPLIER_PRO_STATION_FIRST_PASSYIELD.cs} (98%) diff --git a/API/TaskManager.Entity/Entity.cs b/API/TaskManager.Entity/Entity.cs index acc3f3c..4885f49 100644 --- a/API/TaskManager.Entity/Entity.cs +++ b/API/TaskManager.Entity/Entity.cs @@ -74,72 +74,7 @@ namespace TaskManager.Entity } - - - - - /// - /// 来料检验数据 - /// - public class SUPPLIER_PRO_MATERIAL_STOCK:BaseEntity - { - } - - /// - /// 排产数据 - /// - public class SUPPLIER_PRO_SCHEDULING : BaseEntity - { - } - - /// - /// 供应商基础信息 - /// - public class SUPPLIER_INFO : BaseEntity - { - } - - /// - /// 人员资质信息 - /// - public class SUPPLIER_EMPLOYEE : BaseEntity - { - } - - /// - /// BOM主数据 - /// - public class SUPPLIER_BOM : BaseEntity - { - } - - /// - /// 过程控制项质量数据 - /// - public class SUPPLIER_PRO_CPS : BaseEntity - { - } - - /// - /// 生产过程数据 - /// - public class SUPPLIER_PRO_DATA : BaseEntity - { - } - - /// - /// 产品一次合格率 - /// - public class SUPPLIER_PRO_FIRST_PASSYIELD : BaseEntity - { - } - - /// - /// 工位一次合格率 - /// - //public class SUPPLIER_PRO_STATION_FIRST_PASSYIELD : BaseEntity - //{ - //} + /// /// 缺陷业务数据 diff --git a/API/TaskManager.Entity/Entitys/01_09/SupplierBom.cs b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_BOM.cs similarity index 98% rename from API/TaskManager.Entity/Entitys/01_09/SupplierBom.cs rename to API/TaskManager.Entity/Entitys/01_09/SUPPLIER_BOM.cs index 3900019..5161198 100644 --- a/API/TaskManager.Entity/Entitys/01_09/SupplierBom.cs +++ b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_BOM.cs @@ -9,7 +9,7 @@ namespace TaskManager.Entity /// /// BOM主数据 /// - public class SupplierBom + public class SUPPLIER_BOM : BaseEntity { /// /// 供应商代码 diff --git a/API/TaskManager.Entity/Entitys/01_09/SupplierEmployee.cs b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_EMPLOYEE.cs similarity index 98% rename from API/TaskManager.Entity/Entitys/01_09/SupplierEmployee.cs rename to API/TaskManager.Entity/Entitys/01_09/SUPPLIER_EMPLOYEE.cs index c38cbe1..6a80c96 100644 --- a/API/TaskManager.Entity/Entitys/01_09/SupplierEmployee.cs +++ b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_EMPLOYEE.cs @@ -9,7 +9,7 @@ namespace TaskManager.Entity /// /// 人员资质信息 /// - public class SupplierEmployee + public class SUPPLIER_EMPLOYEE : BaseEntity { /// /// 供应商代码 diff --git a/API/TaskManager.Entity/Entitys/01_09/SupplierInfo.cs b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_INFO.cs similarity index 98% rename from API/TaskManager.Entity/Entitys/01_09/SupplierInfo.cs rename to API/TaskManager.Entity/Entitys/01_09/SUPPLIER_INFO.cs index a466fe8..8b13507 100644 --- a/API/TaskManager.Entity/Entitys/01_09/SupplierInfo.cs +++ b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_INFO.cs @@ -9,7 +9,7 @@ namespace TaskManager.Entity /// /// 供应商基础信息 /// - public class SupplierInfo + public class SUPPLIER_INFO : BaseEntity { /// /// 供应商代码 diff --git a/API/TaskManager.Entity/Entitys/01_09/SupplierProCps.cs b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_CPS.cs similarity index 99% rename from API/TaskManager.Entity/Entitys/01_09/SupplierProCps.cs rename to API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_CPS.cs index dc08229..498a756 100644 --- a/API/TaskManager.Entity/Entitys/01_09/SupplierProCps.cs +++ b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_CPS.cs @@ -9,7 +9,7 @@ namespace TaskManager.Entity /// /// 过程控制项质量数据 /// - public class SupplierProCps + public class SUPPLIER_PRO_CPS : BaseEntity { /// /// 供应商代码 diff --git a/API/TaskManager.Entity/Entitys/01_09/SupplierProData.cs b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_DATA.cs similarity index 99% rename from API/TaskManager.Entity/Entitys/01_09/SupplierProData.cs rename to API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_DATA.cs index e3a99da..1c20c75 100644 --- a/API/TaskManager.Entity/Entitys/01_09/SupplierProData.cs +++ b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_DATA.cs @@ -9,7 +9,7 @@ namespace TaskManager.Entity /// /// 生产过程数据 /// - public class SupplierProData + public class SUPPLIER_PRO_DATA : BaseEntity { /// /// 供应商代码 diff --git a/API/TaskManager.Entity/Entitys/01_09/SupplierProFirstPassyield.cs b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_FIRST_PASSYIELD.cs similarity index 98% rename from API/TaskManager.Entity/Entitys/01_09/SupplierProFirstPassyield.cs rename to API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_FIRST_PASSYIELD.cs index b933eb3..e1265e5 100644 --- a/API/TaskManager.Entity/Entitys/01_09/SupplierProFirstPassyield.cs +++ b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_FIRST_PASSYIELD.cs @@ -9,7 +9,7 @@ namespace TaskManager.Entity /// /// 产品一次合格率 /// - public class SupplierProFirstPassyield + public class SUPPLIER_PRO_FIRST_PASSYIELD : BaseEntity { /// /// 供应商代码 diff --git a/API/TaskManager.Entity/Entitys/01_09/SupplierProMaterialStock.cs b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_MATERIAL_STOCK.cs similarity index 98% rename from API/TaskManager.Entity/Entitys/01_09/SupplierProMaterialStock.cs rename to API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_MATERIAL_STOCK.cs index 93cee45..ccd205b 100644 --- a/API/TaskManager.Entity/Entitys/01_09/SupplierProMaterialStock.cs +++ b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_MATERIAL_STOCK.cs @@ -9,7 +9,7 @@ namespace TaskManager.Entity /// /// 来料检验数据 /// - public class SupplierProMaterialStock + public class SUPPLIER_PRO_MATERIAL_STOCK : BaseEntity { /// /// 供应商代码 diff --git a/API/TaskManager.Entity/Entitys/01_09/SupplierProScheduling.cs b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_SCHEDULING.cs similarity index 98% rename from API/TaskManager.Entity/Entitys/01_09/SupplierProScheduling.cs rename to API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_SCHEDULING.cs index 669d950..07eb9d3 100644 --- a/API/TaskManager.Entity/Entitys/01_09/SupplierProScheduling.cs +++ b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_SCHEDULING.cs @@ -9,7 +9,7 @@ namespace TaskManager.Entity /// /// 排产数据 /// - public class SupplierProScheduling + public class SUPPLIER_PRO_SCHEDULING : BaseEntity { /// /// 供应商代码 diff --git a/API/TaskManager.Entity/Entitys/01_09/SupplierProStationFirstPassyield.cs b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_STATION_FIRST_PASSYIELD.cs similarity index 98% rename from API/TaskManager.Entity/Entitys/01_09/SupplierProStationFirstPassyield.cs rename to API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_STATION_FIRST_PASSYIELD.cs index 7ef6ba0..8ea834e 100644 --- a/API/TaskManager.Entity/Entitys/01_09/SupplierProStationFirstPassyield.cs +++ b/API/TaskManager.Entity/Entitys/01_09/SUPPLIER_PRO_STATION_FIRST_PASSYIELD.cs @@ -9,7 +9,7 @@ namespace TaskManager.Entity /// /// 工位一次合格率 /// - public class SupplierProStationFirstPassyield + public class SUPPLIER_PRO_STATION_FIRST_PASSYIELD : BaseEntity { /// /// 供应商代码