From cf279b2c733713680734a21c6334bf319e411a34 Mon Sep 17 00:00:00 2001
From: yibo <361071264@qq.com>
Date: Fri, 19 Jan 2018 10:30:38 +0800
Subject: [PATCH] =?UTF-8?q?=E9=9C=80=E6=B1=82=E5=8D=95No.138383=20?=
=?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=B8=80=E4=B8=AA=E6=A8=A1=E5=9D=97=E2=80=9C?=
=?UTF-8?q?=E4=BB=A3=E5=AE=B0=E6=A8=A1=E5=9D=97=E2=80=9D=EF=BC=8C=E6=96=B0?=
=?UTF-8?q?=E5=A2=9E=E6=A1=A3=E6=A1=88=EF=BC=9A=E4=BB=A3=E5=AE=B0=E8=B4=B9?=
=?UTF-8?q?=E7=94=A8=E3=80=81=E4=BB=A3=E5=AE=B0=E5=9B=9E=E6=94=B6=E3=80=81?=
=?UTF-8?q?=E4=BB=A3=E5=AE=B0=E6=A0=87=E8=AF=86=E3=80=81=E5=BE=85=E5=AE=B0?=
=?UTF-8?q?=E7=94=9F=E4=BA=A7=E7=BA=BF=E3=80=82?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../B3SubstituteKill.Web.csproj | 43 ++++++++++++++++-
.../GenerationCostItemEdit.cs | 30 ++++++++++++
.../GenerationCostItemList.cs | 28 +++++++++++
.../GenerationCostItemList.xml | 43 +++++++++++++++++
.../SubKillCallBack_/SubKillCallBackEdit.cs | 30 ++++++++++++
.../SubKillCallBack_/SubKillCallBackList.cs | 28 +++++++++++
.../SubKillCallBack_/SubKillCallBackList.xml | 43 +++++++++++++++++
.../BaseInfos/SubKillFlag_/SubKillFlagEdit.cs | 31 ++++++++++++
.../BaseInfos/SubKillFlag_/SubKillFlagList.cs | 32 +++++++++++++
.../SubKillFlag_/SubKillFlagList.xml | 47 +++++++++++++++++++
.../SubKillProductLineEdit.cs | 30 ++++++++++++
.../SubKillProductLineList.cs | 28 +++++++++++
.../SubKillProductLineList.xml | 43 +++++++++++++++++
.../Utils/B3SubstituteDataProvider.cs | 35 ++++++++++++++
B3SubstituteKill/B3SubstituteKill.csproj | 13 ++++-
.../GenerationCostItemBL.cs | 22 +++++++++
.../SubKillCallBack/SubKillCallBackBL.cs | 22 +++++++++
.../BL/BaseInfos/SubKillFlag/SubKillFlagBL.cs | 22 +++++++++
.../SubKillProductLineBL.cs | 22 +++++++++
.../GenerationCostItem/GenerationCostItem.cs | 32 +++++++++++++
.../SubKillCallBack/SubKillCallBack.cs | 32 +++++++++++++
.../BO/BaseInfos/SubKillFlag/SubKillFlag.cs | 45 ++++++++++++++++++
.../SubKillProductLine/SubKillProductLine.cs | 32 +++++++++++++
.../Utils/B3SubstituteKillConsts.cs | 22 +++++++++
.../config/Plugins/B3SubstituteKill.plugin | 44 +++++++++++++++++
25 files changed, 796 insertions(+), 3 deletions(-)
create mode 100644 B3SubstituteKill.Web/Pages/B3SubstituteKill/BaseInfos/GenerationCostItem_/GenerationCostItemEdit.cs
create mode 100644 B3SubstituteKill.Web/Pages/B3SubstituteKill/BaseInfos/GenerationCostItem_/GenerationCostItemList.cs
create mode 100644 B3SubstituteKill.Web/Pages/B3SubstituteKill/BaseInfos/GenerationCostItem_/GenerationCostItemList.xml
create mode 100644 B3SubstituteKill.Web/Pages/B3SubstituteKill/BaseInfos/SubKillCallBack_/SubKillCallBackEdit.cs
create mode 100644 B3SubstituteKill.Web/Pages/B3SubstituteKill/BaseInfos/SubKillCallBack_/SubKillCallBackList.cs
create mode 100644 B3SubstituteKill.Web/Pages/B3SubstituteKill/BaseInfos/SubKillCallBack_/SubKillCallBackList.xml
create mode 100644 B3SubstituteKill.Web/Pages/B3SubstituteKill/BaseInfos/SubKillFlag_/SubKillFlagEdit.cs
create mode 100644 B3SubstituteKill.Web/Pages/B3SubstituteKill/BaseInfos/SubKillFlag_/SubKillFlagList.cs
create mode 100644 B3SubstituteKill.Web/Pages/B3SubstituteKill/BaseInfos/SubKillFlag_/SubKillFlagList.xml
create mode 100644 B3SubstituteKill.Web/Pages/B3SubstituteKill/BaseInfos/SubKillProductLine_/SubKillProductLineEdit.cs
create mode 100644 B3SubstituteKill.Web/Pages/B3SubstituteKill/BaseInfos/SubKillProductLine_/SubKillProductLineList.cs
create mode 100644 B3SubstituteKill.Web/Pages/B3SubstituteKill/BaseInfos/SubKillProductLine_/SubKillProductLineList.xml
create mode 100644 B3SubstituteKill.Web/Utils/B3SubstituteDataProvider.cs
create mode 100644 B3SubstituteKill/BL/BaseInfos/GenerationCostItem/GenerationCostItemBL.cs
create mode 100644 B3SubstituteKill/BL/BaseInfos/SubKillCallBack/SubKillCallBackBL.cs
create mode 100644 B3SubstituteKill/BL/BaseInfos/SubKillFlag/SubKillFlagBL.cs
create mode 100644 B3SubstituteKill/BL/BaseInfos/SubKillProductLine/SubKillProductLineBL.cs
create mode 100644 B3SubstituteKill/BO/BaseInfos/GenerationCostItem/GenerationCostItem.cs
create mode 100644 B3SubstituteKill/BO/BaseInfos/SubKillCallBack/SubKillCallBack.cs
create mode 100644 B3SubstituteKill/BO/BaseInfos/SubKillFlag/SubKillFlag.cs
create mode 100644 B3SubstituteKill/BO/BaseInfos/SubKillProductLine/SubKillProductLine.cs
create mode 100644 B3SubstituteKill/Utils/B3SubstituteKillConsts.cs
diff --git a/B3SubstituteKill.Web/B3SubstituteKill.Web.csproj b/B3SubstituteKill.Web/B3SubstituteKill.Web.csproj
index fab9487..bc8a895 100644
--- a/B3SubstituteKill.Web/B3SubstituteKill.Web.csproj
+++ b/B3SubstituteKill.Web/B3SubstituteKill.Web.csproj
@@ -32,6 +32,10 @@
4
+
+ False
+ ..\..\..\tsref\Debug\B3Frameworks.dll
+
False
..\..\..\..\..\..\BwpB3Project\tsref\Debug\B3Frameworks.Web.dll
@@ -62,6 +66,7 @@
+
@@ -85,8 +90,33 @@
+
+ ASPXCodeBehind
+
+
+ ASPXCodeBehind
+
+
+ ASPXCodeBehind
+
+
+ ASPXCodeBehind
+
+
+ ASPXCodeBehind
+
+
+ ASPXCodeBehind
+
+
+ ASPXCodeBehind
+
+
+ ASPXCodeBehind
+
+
@@ -95,10 +125,21 @@
-
+
+
+
+
+
+
+
+
+
+
+
+