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
3aed4064
Commit
3aed4064
authored
Mar 08, 2022
by
jianshuqin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加功能:平台利润导入费用
parent
69099885
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
140 additions
and
0 deletions
+140
-0
flowing_sales_fee.cs
Bailun.DC.Models/DataWareHouse/flowing_sales_fee.cs
+70
-0
flowing_sales_fee_detail.cs
Bailun.DC.Models/DataWareHouse/flowing_sales_fee_detail.cs
+70
-0
No files found.
Bailun.DC.Models/DataWareHouse/flowing_sales_fee.cs
0 → 100644
View file @
3aed4064
using
System
;
namespace
Bailun.DC.Models.DataWareHouse
{
/// <summary>
/// 交易流水费用
/// </summary>
public
class
flowing_sales_fee
{
/// <summary>
/// ID
/// </summary>
public
int
id
{
get
;
set
;
}
/// <summary>
/// 平台
/// </summary>
public
string
platform
{
get
;
set
;
}
=
string
.
Empty
;
/// <summary>
/// 帐号名称
/// </summary>
public
string
account_name
{
get
;
set
;
}
=
string
.
Empty
;
/// <summary>
/// 费用类型名称
/// </summary>
public
string
fee_type
{
get
;
set
;
}
=
string
.
Empty
;
/// <summary>
/// 月份
/// </summary>
public
string
month
{
get
;
set
;
}
=
string
.
Empty
;
/// <summary>
/// 平台订单号
/// </summary>
public
string
origin_order_id
{
get
;
set
;
}
=
string
.
Empty
;
/// <summary>
/// 金额
/// </summary>
public
decimal
amount
{
get
;
set
;
}
/// <summary>
/// 币种
/// </summary>
public
string
currency
{
get
;
set
;
}
=
string
.
Empty
;
/// <summary>
/// 备注
/// </summary>
public
string
remark
{
get
;
set
;
}
=
string
.
Empty
;
/// <summary>
/// 是否删除
/// </summary>
public
bool
delstatus
{
get
;
set
;
}
/// <summary>
/// 创建时间
/// </summary>
public
DateTime
create_time
{
get
;
set
;
}
/// <summary>
/// 更新时间
/// </summary>
public
DateTime
update_time
{
get
;
set
;
}
}
}
Bailun.DC.Models/DataWareHouse/flowing_sales_fee_detail.cs
0 → 100644
View file @
3aed4064
using
System
;
namespace
Bailun.DC.Models.DataWareHouse
{
/// <summary>
/// 交易流水费用
/// </summary>
public
class
flowing_sales_fee_detail
{
/// <summary>
/// ID
/// </summary>
public
int
id
{
get
;
set
;
}
/// <summary>
/// FEE_ID
/// </summary>
public
int
fee_id
{
get
;
set
;
}
/// <summary>
/// 平台
/// </summary>
public
string
platform
{
get
;
set
;
}
/// <summary>
/// 费用类型名称
/// </summary>
public
string
fee_type
{
get
;
set
;
}
/// <summary>
/// 费用日期
/// </summary>
public
DateTime
date
{
get
;
set
;
}
/// <summary>
/// 金额
/// </summary>
public
decimal
amount
{
get
;
set
;
}
/// <summary>
/// 币种
/// </summary>
public
string
currency
{
get
;
set
;
}
/// <summary>
/// 人民币金额
/// </summary>
public
decimal
amount_cny
{
get
;
set
;
}
/// <summary>
/// 美元金额
/// </summary>
public
decimal
amount_usd
{
get
;
set
;
}
/// <summary>
/// 是否删除
/// </summary>
public
bool
delstatus
{
get
;
set
;
}
/// <summary>
/// 创建时间
/// </summary>
public
DateTime
create_time
{
get
;
set
;
}
/// <summary>
/// 更新时间
/// </summary>
public
DateTime
update_time
{
get
;
set
;
}
}
}
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