Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
EShop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
tsai
EShop
Commits
31aadba3
Commit
31aadba3
authored
May 03, 2020
by
gdlcf88
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change PaymentRecordOrder to an entity
parent
84bf4d66
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
8 deletions
+5
-8
PaymentRecord.cs
...yAbp.EShop.Payment.Domain/PaymentRecords/PaymentRecord.cs
+3
-0
PaymentRecordOrder.cs
...EShop.Payment.Domain/PaymentRecords/PaymentRecordOrder.cs
+2
-8
No files found.
modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payment.Domain/PaymentRecords/PaymentRecord.cs
View file @
31aadba3
using
System
;
using
System.Collections.Generic
;
using
EasyAbp.EShop.Stores.Stores
;
using
JetBrains.Annotations
;
using
Volo.Abp.Domain.Entities.Auditing
;
...
...
@@ -26,5 +27,7 @@ namespace EasyAbp.EShop.Payment.PaymentRecords
public
virtual
decimal
ActualPaymentAmount
{
get
;
protected
set
;
}
public
virtual
decimal
RefundAmount
{
get
;
protected
set
;
}
public
virtual
List
<
PaymentRecordOrder
>
PaymentRecordOrders
{
get
;
protected
set
;
}
}
}
\ No newline at end of file
modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payment.Domain/PaymentRecord
Order
s/PaymentRecordOrder.cs
→
modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payment.Domain/PaymentRecords/PaymentRecordOrder.cs
View file @
31aadba3
using
System
;
using
EasyAbp.EShop.Stores.Stores
;
using
JetBrains.Annotations
;
using
Volo.Abp.Domain.Entities.Auditing
;
using
Volo.Abp.MultiTenancy
;
namespace
EasyAbp.EShop.Payment.PaymentRecord
Order
s
namespace
EasyAbp.EShop.Payment.PaymentRecords
{
public
class
PaymentRecordOrder
:
FullAuditedEntity
<
Guid
>
,
IMultiTenant
,
IMultiStore
public
class
PaymentRecordOrder
:
FullAuditedEntity
<
Guid
>
{
public
virtual
Guid
?
TenantId
{
get
;
protected
set
;
}
public
virtual
Guid
StoreId
{
get
;
protected
set
;
}
public
virtual
Guid
OrderId
{
get
;
protected
set
;
}
[
NotNull
]
...
...
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