Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
code
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
solho
code
Commits
a3c8d153
Commit
a3c8d153
authored
May 04, 2022
by
solho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:新增EHR匯出相關功能
feat:EHR歷史紀錄IT權限調整
parent
c90c1bbd
Changes
7
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
323 additions
and
54 deletions
+323
-54
WebAPI/Controllers/Esn_Subitem/Esn_Todos_FlowController.cs
WebAPI/Controllers/Esn_Subitem/Esn_Todos_FlowController.cs
+25
-19
WebAPI/Controllers/Esn_Subitem/Esn_todosController.cs
WebAPI/Controllers/Esn_Subitem/Esn_todosController.cs
+180
-35
WebAPI/Models/Esn_TodosModel.cs
WebAPI/Models/Esn_TodosModel.cs
+80
-0
WebAPI/Models/SP_rpt_PerformanceMonth_FlowModel.cs
WebAPI/Models/SP_rpt_PerformanceMonth_FlowModel.cs
+9
-0
WebAPI/Web.config
WebAPI/Web.config
+15
-0
WebAPI/WebAPI.csproj
WebAPI/WebAPI.csproj
+12
-0
WebAPI/packages.config
WebAPI/packages.config
+2
-0
No files found.
WebAPI/Controllers/Esn_Subitem/Esn_Todos_FlowController.cs
View file @
a3c8d153
...
@@ -11,6 +11,7 @@ using System.Net;
...
@@ -11,6 +11,7 @@ using System.Net;
using
System.Net.Http
;
using
System.Net.Http
;
using
System.Web.Http
;
using
System.Web.Http
;
using
WebAPI.Models
;
using
WebAPI.Models
;
using
WebAPI.Tool
;
using
static
WebAPI
.
Models
.
CommonModel
;
using
static
WebAPI
.
Models
.
CommonModel
;
using
static
WebAPI
.
Tool
.
Common
;
using
static
WebAPI
.
Tool
.
Common
;
...
@@ -28,7 +29,7 @@ namespace WebAPI.Controllers
...
@@ -28,7 +29,7 @@ namespace WebAPI.Controllers
HttpResponseMessage
result
;
HttpResponseMessage
result
;
CommonResponseMsg
response
;
CommonResponseMsg
response
;
MessageList_ETF
Outmsg
;
MessageList_ETF
Outmsg
;
String
connString
;
static
String
connString
;
public
Esn_Todos_FlowController
()
public
Esn_Todos_FlowController
()
{
{
...
@@ -133,9 +134,12 @@ namespace WebAPI.Controllers
...
@@ -133,9 +134,12 @@ namespace WebAPI.Controllers
{
{
CommandText
=
@"select b.cn_name, a.* from esn_todos_SettleLog a
CommandText
=
@"select b.cn_name, a.* from esn_todos_SettleLog a
left join s_user_info b on a.Create_user_id=b.user_id
left join s_user_info b on a.Create_user_id=b.user_id
where a.Create_user_id=@Create_user_id "
where a.Create_user_id=@Create_user_id
@wherecase
"
};
};
String
wherecase
=
obj_input
[
"gUserID_wade"
]
==
null
||
string
.
IsNullOrEmpty
(
obj_input
[
"gUserID_wade"
].
ToString
())
?
" or 1=1"
:
""
;
cmd
.
Parameters
.
AddWithValue
(
"@Create_user_id"
,
obj_input
[
"gUserID_wade"
].
ToString
());
cmd
.
Parameters
.
AddWithValue
(
"@Create_user_id"
,
obj_input
[
"gUserID_wade"
].
ToString
());
cmd
.
CommandText
=
cmd
.
CommandText
.
Replace
(
"@wherecase"
,
wherecase
);
DataSet
ds
=
SqlToDs
(
cmd
);
DataSet
ds
=
SqlToDs
(
cmd
);
foreach
(
DataRow
dr
in
ds
.
Tables
[
0
].
Rows
)
foreach
(
DataRow
dr
in
ds
.
Tables
[
0
].
Rows
)
{
{
...
@@ -533,23 +537,10 @@ namespace WebAPI.Controllers
...
@@ -533,23 +537,10 @@ namespace WebAPI.Controllers
try
try
{
{
JObject
obj_input
=
JObject
.
Parse
(
input
.
ToString
());
JObject
obj_input
=
JObject
.
Parse
(
input
.
ToString
());
JArray
obj_input_data
=
JArray
.
Parse
(
obj_input
[
"SaveData"
].
ToString
());
DataTable
dt
=
Save_PointSettlement_Log_Base
(
obj_input
);
using
(
SqlConnection
Conn
=
new
SqlConnection
(
connString
))
{
SqlCommand
cmd
=
new
SqlCommand
(
""
,
Conn
)
{
CommandText
=
@"Insert into esn_todos_SettleLog([SaveData],[Country],[update_time],[update_user_id],Create_time,Create_user_id)
values(@SaveData,@Country,getdate(),@gUserID_wade,getdate(),@gUserID_wade)"
};
cmd
.
Parameters
.
AddWithValue
(
"@SaveData"
,
obj_input
[
"SaveData"
].
ToString
());
cmd
.
Parameters
.
AddWithValue
(
"@gUserID_wade"
,
obj_input
[
"gUserID_wade"
].
ToString
());
cmd
.
Parameters
.
AddWithValue
(
"@Country"
,
obj_input
[
"Country"
].
ToString
());
DataTable
dt
=
SqlToDt
(
cmd
);
response
.
Code
=
"1"
;
response
.
Code
=
"1"
;
response
.
Msg
=
"匯出完畢"
;
response
.
Msg
=
"匯出完畢"
;
}
}
}
catch
(
Exception
e
)
catch
(
Exception
e
)
{
{
response
.
Code
=
"0"
;
response
.
Code
=
"0"
;
...
@@ -565,7 +556,22 @@ namespace WebAPI.Controllers
...
@@ -565,7 +556,22 @@ namespace WebAPI.Controllers
result
.
Content
=
new
StringContent
(
JsonConvert
.
SerializeObject
(
response
),
System
.
Text
.
Encoding
.
UTF8
,
"application/json"
);
result
.
Content
=
new
StringContent
(
JsonConvert
.
SerializeObject
(
response
),
System
.
Text
.
Encoding
.
UTF8
,
"application/json"
);
return
result
;
return
result
;
}
}
public
static
DataTable
Save_PointSettlement_Log_Base
(
JObject
obj_input
)
{
DataTable
dt
=
null
;
JArray
obj_input_data
=
JArray
.
Parse
(
obj_input
[
"SaveData"
].
ToString
());
SqlServerHelper
sql_server_helper
=
new
SqlServerHelper
();
SqlCommand
cmd
=
new
SqlCommand
(
""
)
{
CommandText
=
@"Insert into esn_todos_SettleLog([SaveData],[Country],[update_time],[update_user_id],Create_time,Create_user_id)
values(@SaveData,(select Emp_DSContury from evw_Employee a where a.user_id =@gUserID_wade),getdate(),@gUserID_wade,getdate(),@gUserID_wade)"
};
cmd
.
Parameters
.
AddWithValue
(
"@SaveData"
,
obj_input
[
"SaveData"
].
ToString
());
cmd
.
Parameters
.
AddWithValue
(
"@gUserID_wade"
,
obj_input
[
"gUserID_wade"
].
ToString
());
dt
=
sql_server_helper
.
GetTable
(
cmd
);
return
dt
;
}
}
}
...
...
WebAPI/Controllers/Esn_Subitem/Esn_todosController.cs
View file @
a3c8d153
This diff is collapsed.
Click to expand it.
WebAPI/Models/Esn_TodosModel.cs
View file @
a3c8d153
...
@@ -25,4 +25,84 @@ namespace WebAPI.Models
...
@@ -25,4 +25,84 @@ namespace WebAPI.Models
public
String
Create_User_Name
{
get
;
set
;
}
public
String
Create_User_Name
{
get
;
set
;
}
}
}
/// <summary>
/// 檢核扣點
/// </summary>
public
class
validpointModel
{
public
String
attr_userID
{
get
;
set
;
}
public
String
attr_UserName
{
get
;
set
;
}
public
long
aaa
{
get
;
set
;
}
public
long
ID
{
get
;
set
;
}
public
int
vInt
{
get
;
set
;
}
}
/// <summary>
/// 審核點數SP
/// </summary>
public
class
SP_rpt_PerformanceMonth_FlowModel
{
public
String
attr_userID
{
get
;
set
;
}
public
String
承辦人
{
get
;
set
;
}
public
String
管理中心
{
get
;
set
;
}
public
int
attr_DStargetid
{
get
;
set
;
}
public
String
所別
{
get
;
set
;
}
public
String
一級部門
{
get
;
set
;
}
public
String
attr_DeptGroupTargetID
{
get
;
set
;
}
public
String
二級部門
{
get
;
set
;
}
public
String
attr_todos2
{
get
;
set
;
}
public
String
attr_RejectCount
{
get
;
set
;
}
public
String
attr_nn_toConfirmAll
{
get
;
set
;
}
public
String
處理事項數
{
get
;
set
;
}
public
String
attr_todos3
{
get
;
set
;
}
public
String
attr_MapClasslist
{
get
;
set
;
}
public
String
可結算事項數
{
get
;
set
;
}
public
int
attr_points0
{
get
;
set
;
}
public
int
原始提成
{
get
;
set
;
}
public
int
檢核扣點
{
get
;
set
;
}
public
int
attr_actingpoints
{
get
;
set
;
}
public
int
attr_nonactingpoints
{
get
;
set
;
}
public
int
attr_
加成點數
{
get
;
set
;
}
public
int
attr_pointssum
{
get
;
set
;
}
public
int
加成後總提成
{
get
;
set
;
}
public
String
attr_1_type
{
get
;
set
;
}
public
String
attr_AllConfirm
{
get
;
set
;
}
public
String
審核完畢
{
get
;
set
;
}
public
String
attr_2_type
{
get
;
set
;
}
public
String
attr_IsSettlement
{
get
;
set
;
}
public
String
結算完畢
{
get
;
set
;
}
public
String
結算月份
{
get
;
set
;
}
public
String
薪資類型
{
get
;
set
;
}
public
String
attr_deptmanager
{
get
;
set
;
}
public
String
attr_programmer
{
get
;
set
;
}
public
String
attr_engineer
{
get
;
set
;
}
public
String
工號
{
get
;
set
;
}
public
String
姓名
{
get
;
set
;
}
public
String
月份
{
get
;
set
;
}
public
String
Emp_DSContury
{
get
;
set
;
}
public
int
前三个月平均绩效
{
get
;
set
;
}
}
/// <summary>
/// 輸出 Ehr
/// </summary>
public
class
ExportEhrModel
{
public
String
所別
{
get
;
set
;
}
public
String
管理中心
{
get
;
set
;
}
public
String
一級部門
{
get
;
set
;
}
public
String
二級部門
{
get
;
set
;
}
public
String
國別
{
get
;
set
;
}
public
String
Badge
{
get
;
set
;
}
public
String
姓名
{
get
;
set
;
}
public
String
Term
{
get
;
set
;
}
public
int
Per_Agent_Amount
{
get
;
set
;
}
public
int
Non_Agent_Amount
{
get
;
set
;
}
public
int
PAverage
{
get
;
set
;
}
public
int
Points
{
get
;
set
;
}
}
}
}
\ No newline at end of file
WebAPI/Models/SP_rpt_PerformanceMonth_FlowModel.cs
0 → 100644
View file @
a3c8d153
using
System
;
using
System.Collections.Generic
;
namespace
WebAPI.Models
{
/// <summary>
/// 處理事項子項相關
/// </summary>
}
\ No newline at end of file
WebAPI/Web.config
View file @
a3c8d153
...
@@ -4,11 +4,16 @@
...
@@ -4,11 +4,16 @@
https
://
go
.
microsoft
.
com
/
fwlink
/?
LinkId
=
301879
https
://
go
.
microsoft
.
com
/
fwlink
/?
LinkId
=
301879
-->
-->
<
configuration
>
<
configuration
>
<
configSections
>
<!--
For
more
information
on
Entity
Framework
configuration
,
visit
http
://
go
.
microsoft
.
com
/
fwlink
/?
LinkID
=
237468
-->
<
section
name
=
"entityFramework"
type
=
"System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
requirePermission
=
"false"
/>
</
configSections
>
<
connectionStrings
>
<
connectionStrings
>
<!--報價規則-->
<!--報價規則-->
<
add
name
=
"DefaultConnection"
connectionString
=
"Data Source=47.91.213.74,6002;Initial Catalog=IPEasy_test;Persist Security Info=True;User ID=ipeasy;Password=ipeasy.123"
providerName
=
"System.Data.SqlClient"
/>
<
add
name
=
"DefaultConnection"
connectionString
=
"Data Source=47.91.213.74,6002;Initial Catalog=IPEasy_test;Persist Security Info=True;User ID=ipeasy;Password=ipeasy.123"
providerName
=
"System.Data.SqlClient"
/>
<!--核稿歷史-->
<!--核稿歷史-->
<
add
name
=
"eflow_cur"
connectionString
=
"Data Source=47.91.213.74,6002;Initial Catalog=IPEasy_test;Persist Security Info=True;User ID=ipeasyTest;Password=ipeasy.123"
providerName
=
"System.Data.SqlClient"
/>
<
add
name
=
"eflow_cur"
connectionString
=
"Data Source=47.91.213.74,6002;Initial Catalog=IPEasy_test;Persist Security Info=True;User ID=ipeasyTest;Password=ipeasy.123"
providerName
=
"System.Data.SqlClient"
/>
<
add
name
=
"essenConnection"
connectionString
=
"server=192.168.1.174;port=3306;user id=sol; password=FK35cnvbeH3BNAxV; database=essen_test "
/>
</
connectionStrings
>
</
connectionStrings
>
<
appSettings
>
<
appSettings
>
<
add
key
=
"webpages:Version"
value
=
"3.0.0.0"
/>
<
add
key
=
"webpages:Version"
value
=
"3.0.0.0"
/>
...
@@ -92,4 +97,14 @@
...
@@ -92,4 +97,14 @@
<
compiler
language
=
"vb;vbs;visualbasic;vbscript"
extension
=
".vb"
type
=
"Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
warningLevel
=
"4"
compilerOptions
=
"/langversion:default /nowarn:41008 /define:_MYTYPE=\"Web\" /optionInfer+"
/>
<
compiler
language
=
"vb;vbs;visualbasic;vbscript"
extension
=
".vb"
type
=
"Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
warningLevel
=
"4"
compilerOptions
=
"/langversion:default /nowarn:41008 /define:_MYTYPE=\"Web\" /optionInfer+"
/>
</
compilers
>
</
compilers
>
</
system
.
codedom
>
</
system
.
codedom
>
<
entityFramework
>
<
defaultConnectionFactory
type
=
"System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework"
>
<
parameters
>
<
parameter
value
=
"mssqllocaldb"
/>
</
parameters
>
</
defaultConnectionFactory
>
<
providers
>
<
provider
invariantName
=
"System.Data.SqlClient"
type
=
"System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"
/>
</
providers
>
</
entityFramework
>
</
configuration
>
</
configuration
>
\ No newline at end of file
WebAPI/WebAPI.csproj
View file @
a3c8d153
...
@@ -64,6 +64,12 @@
...
@@ -64,6 +64,12 @@
<Reference
Include=
"EastAsiaNumericFormatter, Version=1.0.0.0, Culture=neutral, PublicKeyToken=e1e67937c016e5b2, processorArchitecture=MSIL"
>
<Reference
Include=
"EastAsiaNumericFormatter, Version=1.0.0.0, Culture=neutral, PublicKeyToken=e1e67937c016e5b2, processorArchitecture=MSIL"
>
<HintPath>
packages\EastAsiaNumericFormatter.1.0.0\lib\net40\EastAsiaNumericFormatter.dll
</HintPath>
<HintPath>
packages\EastAsiaNumericFormatter.1.0.0\lib\net40\EastAsiaNumericFormatter.dll
</HintPath>
</Reference>
</Reference>
<Reference
Include=
"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
>
<HintPath>
packages\EntityFramework.6.2.0\lib\net45\EntityFramework.dll
</HintPath>
</Reference>
<Reference
Include=
"EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
>
<HintPath>
packages\EntityFramework.6.2.0\lib\net45\EntityFramework.SqlServer.dll
</HintPath>
</Reference>
<Reference
Include=
"ExcelDataReader, Version=3.6.0.0, Culture=neutral, PublicKeyToken=93517dbe6a4012fa, processorArchitecture=MSIL"
>
<Reference
Include=
"ExcelDataReader, Version=3.6.0.0, Culture=neutral, PublicKeyToken=93517dbe6a4012fa, processorArchitecture=MSIL"
>
<HintPath>
.\packages\ExcelDataReader.3.6.0\lib\net45\ExcelDataReader.dll
</HintPath>
<HintPath>
.\packages\ExcelDataReader.3.6.0\lib\net45\ExcelDataReader.dll
</HintPath>
</Reference>
</Reference>
...
@@ -122,6 +128,7 @@
...
@@ -122,6 +128,7 @@
<Reference
Include=
"System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
>
<Reference
Include=
"System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
>
<HintPath>
packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard1.0\System.Runtime.CompilerServices.Unsafe.dll
</HintPath>
<HintPath>
packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard1.0\System.Runtime.CompilerServices.Unsafe.dll
</HintPath>
</Reference>
</Reference>
<Reference
Include=
"System.Security"
/>
<Reference
Include=
"System.Transactions"
/>
<Reference
Include=
"System.Transactions"
/>
<Reference
Include=
"System.Web.Cors, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
>
<Reference
Include=
"System.Web.Cors, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
>
<HintPath>
packages\Microsoft.AspNet.Cors.5.2.7\lib\net45\System.Web.Cors.dll
</HintPath>
<HintPath>
packages\Microsoft.AspNet.Cors.5.2.7\lib\net45\System.Web.Cors.dll
</HintPath>
...
@@ -224,6 +231,7 @@
...
@@ -224,6 +231,7 @@
<Compile
Include=
"Dal\DalCaseInfo.cs"
/>
<Compile
Include=
"Dal\DalCaseInfo.cs"
/>
<Compile
Include=
"Dal\DalProcInfo.cs"
/>
<Compile
Include=
"Dal\DalProcInfo.cs"
/>
<Compile
Include=
"Models\EhrEmployee.cs"
/>
<Compile
Include=
"Models\EhrEmployee.cs"
/>
<Compile
Include=
"Models\SP_rpt_PerformanceMonth_FlowModel.cs"
/>
<Compile
Include=
"Models\Esn_todos_SettleModel.cs"
/>
<Compile
Include=
"Models\Esn_todos_SettleModel.cs"
/>
<Compile
Include=
"Models\AnnualInfo.cs"
/>
<Compile
Include=
"Models\AnnualInfo.cs"
/>
<Compile
Include=
"Models\Esn_Todos_FlowModel.cs"
/>
<Compile
Include=
"Models\Esn_Todos_FlowModel.cs"
/>
...
@@ -318,6 +326,7 @@
...
@@ -318,6 +326,7 @@
<Content
Include=
"log4net.config"
>
<Content
Include=
"log4net.config"
>
<CopyToOutputDirectory>
PreserveNewest
</CopyToOutputDirectory>
<CopyToOutputDirectory>
PreserveNewest
</CopyToOutputDirectory>
</Content>
</Content>
<Content
Include=
"libman.json"
/>
<None
Include=
"Properties\PublishProfiles\FolderProfile.pubxml"
/>
<None
Include=
"Properties\PublishProfiles\FolderProfile.pubxml"
/>
<None
Include=
"Scripts\jquery-3.4.1.intellisense.js"
/>
<None
Include=
"Scripts\jquery-3.4.1.intellisense.js"
/>
<Content
Include=
"Scripts\jquery-3.4.1.js"
/>
<Content
Include=
"Scripts\jquery-3.4.1.js"
/>
...
@@ -376,6 +385,9 @@
...
@@ -376,6 +385,9 @@
<Content
Include=
"Scripts\jquery-3.4.1.slim.min.map"
/>
<Content
Include=
"Scripts\jquery-3.4.1.slim.min.map"
/>
<Content
Include=
"Scripts\jquery-3.4.1.min.map"
/>
<Content
Include=
"Scripts\jquery-3.4.1.min.map"
/>
</ItemGroup>
</ItemGroup>
<ItemGroup>
<Service
Include=
"{508349B6-6B84-4DF5-91F0-309BEEBAD82D}"
/>
</ItemGroup>
<PropertyGroup>
<PropertyGroup>
<VisualStudioVersion
Condition=
"'$(VisualStudioVersion)' == ''"
>
10.0
</VisualStudioVersion>
<VisualStudioVersion
Condition=
"'$(VisualStudioVersion)' == ''"
>
10.0
</VisualStudioVersion>
<VSToolsPath
Condition=
"'$(VSToolsPath)' == ''"
>
$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
</VSToolsPath>
<VSToolsPath
Condition=
"'$(VSToolsPath)' == ''"
>
$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
</VSToolsPath>
...
...
WebAPI/packages.config
View file @
a3c8d153
...
@@ -8,6 +8,8 @@
...
@@ -8,6 +8,8 @@
<
package
id
=
"Dapper.Contrib"
version
=
"2.0.78"
targetFramework
=
"net48"
/>
<
package
id
=
"Dapper.Contrib"
version
=
"2.0.78"
targetFramework
=
"net48"
/>
<
package
id
=
"DocumentFormat.OpenXml"
version
=
"2.7.2"
targetFramework
=
"net46"
/>
<
package
id
=
"DocumentFormat.OpenXml"
version
=
"2.7.2"
targetFramework
=
"net46"
/>
<
package
id
=
"EastAsiaNumericFormatter"
version
=
"1.0.0"
targetFramework
=
"net46"
/>
<
package
id
=
"EastAsiaNumericFormatter"
version
=
"1.0.0"
targetFramework
=
"net46"
/>
<
package
id
=
"EntityFramework"
version
=
"6.2.0"
targetFramework
=
"net48"
/>
<
package
id
=
"EntityFramework.zh-Hant"
version
=
"6.2.0"
targetFramework
=
"net48"
/>
<
package
id
=
"ExcelDataReader"
version
=
"3.6.0"
targetFramework
=
"net46"
/>
<
package
id
=
"ExcelDataReader"
version
=
"3.6.0"
targetFramework
=
"net46"
/>
<
package
id
=
"ExcelDataReader.DataSet"
version
=
"3.6.0"
targetFramework
=
"net46"
/>
<
package
id
=
"ExcelDataReader.DataSet"
version
=
"3.6.0"
targetFramework
=
"net46"
/>
<
package
id
=
"ExcelNumberFormat"
version
=
"1.0.10"
targetFramework
=
"net46"
/>
<
package
id
=
"ExcelNumberFormat"
version
=
"1.0.10"
targetFramework
=
"net46"
/>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment