Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
Kivii.Third.Finances.Seeyon.V4.5
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
陶然
Kivii.Third.Finances.Seeyon.V4.5
Commits
69a6eaea
Commit
69a6eaea
authored
May 08, 2024
by
Neo Turing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化
parent
392529f3
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
Kivii.Third.Finances.Seeyon.V4.5.csproj
Src/Kivii.Third.Finances.Seeyon.V4.5.csproj
+1
-0
RestfulToken.cs
Src/RestfulToken.cs
+26
-0
No files found.
Src/Kivii.Third.Finances.Seeyon.V4.5.csproj
View file @
69a6eaea
...
@@ -57,6 +57,7 @@
...
@@ -57,6 +57,7 @@
<Compile
Include=
"Properties\AssemblyInfo.cs"
/>
<Compile
Include=
"Properties\AssemblyInfo.cs"
/>
<Compile
Include=
"RestfulApply.cs"
/>
<Compile
Include=
"RestfulApply.cs"
/>
<Compile
Include=
"RestfulIncome.cs"
/>
<Compile
Include=
"RestfulIncome.cs"
/>
<Compile
Include=
"RestfulToken.cs"
/>
</ItemGroup>
</ItemGroup>
<ItemGroup>
<ItemGroup>
<ProjectReference
Include=
"..\..\Kivii.Biz.Finances.V2.0\Src\Kivii.Biz.Finances.V2.0.csproj"
>
<ProjectReference
Include=
"..\..\Kivii.Biz.Finances.V2.0\Src\Kivii.Biz.Finances.V2.0.csproj"
>
...
...
Src/RestfulToken.cs
0 → 100644
View file @
69a6eaea
using
Kivii.Finances.Seeyon.Extensions
;
using
Kivii.Seeyon.Entities
;
using
Kivii.Web
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
using
System.Threading.Tasks
;
namespace
Kivii.Finances.Seeyon
{
public
class
ResponseTokenGet
:
RestfulExecution
<
ResponseToken
>
{
public
string
loginName
{
get
;
set
;
}
public
override
object
OnExecution
(
IRequest
req
,
IResponse
res
)
{
var
client
=
new
JsonServiceClient
(
Configs
.
BaseUrl
);
var
rtns
=
new
RestfulReadResponse
<
ResponseToken
>();
rtns
.
Result
=
client
.
RequestRestToken
(
loginName
);
return
rtns
;
}
}
}
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