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
{
///
/// 供应商代码