Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
DataCenter_Core2.1_20190520
Overview
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
bltdc
DataCenter_Core2.1_20190520
Commits
7be344a7
Commit
7be344a7
authored
Jul 21, 2021
by
GhostUI
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
管理成本
parent
475ddaa9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
0 deletions
+48
-0
GetCashFlowStatementInput.cs
Bailun.DC.Models/Dtos/Finance/GetCashFlowStatementInput.cs
+5
-0
ManagementCost.cs
Bailun.DC.Models/WebApiModels/ManagementCost.cs
+35
-0
FinanceService.cs
Bailun.DC.Services/WebApiService/FinanceService.cs
+0
-0
FinanceController.cs
Bailun.DC.WebApi/Controllers/FinanceController.cs
+8
-0
No files found.
Bailun.DC.Models/Dtos/Finance/GetCashFlowStatementInput.cs
View file @
7be344a7
...
@@ -24,5 +24,10 @@ namespace Bailun.DC.Models.Dtos.Finance
...
@@ -24,5 +24,10 @@ namespace Bailun.DC.Models.Dtos.Finance
public
string
FeeType
{
get
;
set
;
}
public
string
FeeType
{
get
;
set
;
}
public
bool
IsPage
{
get
;
set
;
}
=
false
;
public
bool
IsPage
{
get
;
set
;
}
=
false
;
#
endregion
#
endregion
public
int
?
IsStatistics
{
get
;
set
;
}
/// <summary>
/// 0付现 1成本
/// </summary>
public
int
Flag
{
get
;
set
;
}
}
}
}
}
Bailun.DC.Models/WebApiModels/ManagementCost.cs
0 → 100644
View file @
7be344a7
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Bailun.DC.Models.WebApiModels
{
public
class
ManagementCost
:
dc_base_finance_fee
{
///// <summary>
///// 费用标题
///// </summary>
//public string TypeName { get; set; }
//public string AccountingSubjectName { get; set; }
///// <summary>
///// 费用类型编码
///// </summary>
//public int? CostForm { get; set; }
///// <summary>
///// 费用类型中文名称
///// </summary>
//public string CostName { get; set; }
//public string CompanyName { get; set; }
//public decimal? Amount { get; set; }
//public decimal? AmountRmb { get; set; }
///// <summary>
///// 是否管理成本 0否 1是
///// </summary>
//public int? Statistics { get; set; }
//public int? IsLend { get; set; }
//public int? LendBalance { get; set; }
//public int? CompanyType { get; set; }
public
string
management_cost_name
{
get
;
set
;
}
}
}
Bailun.DC.Services/WebApiService/FinanceService.cs
View file @
7be344a7
This diff is collapsed.
Click to expand it.
Bailun.DC.WebApi/Controllers/FinanceController.cs
View file @
7be344a7
...
@@ -106,5 +106,13 @@ namespace Bailun.DC.WebApi.Controllers
...
@@ -106,5 +106,13 @@ namespace Bailun.DC.WebApi.Controllers
[
HttpPost
(
"getFinanceDetails"
)]
[
HttpPost
(
"getFinanceDetails"
)]
public
CommonApiResponseDto
<
List
<
FinanceDetailsDto
>>
GetFinanceDetails
(
GetCashFlowStatementInput
input
)
public
CommonApiResponseDto
<
List
<
FinanceDetailsDto
>>
GetFinanceDetails
(
GetCashFlowStatementInput
input
)
=>
new
FinanceService
().
GetFinanceDetails
(
input
);
=>
new
FinanceService
().
GetFinanceDetails
(
input
);
/// <summary>
/// 获取管理成本
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
[
HttpPost
(
"getManagementCost"
)]
public
CommonApiResponseDto
<
FinanceDto
>
GetManagementCost
(
GetCashFlowStatementInput
input
)
=>
new
FinanceService
().
GetManagementCost
(
input
);
}
}
}
}
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