Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mall.oytour.com
Project
Project
Details
Activity
Releases
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
黄奎
mall.oytour.com
Commits
94b2c445
Commit
94b2c445
authored
Jun 02, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增页面
parent
dad3158e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
62 additions
and
0 deletions
+62
-0
MallIndexStatistics.cs
Mall.Model/Extend/Statistics/MallIndexStatistics.cs
+16
-0
StatisticsQuery.cs
Mall.Model/Query/StatisticsQuery.cs
+13
-0
MallStatisticsRepository.cs
Mall.Repository/User/MallStatisticsRepository.cs
+33
-0
No files found.
Mall.Model/Extend/Statistics/MallIndexStatistics.cs
0 → 100644
View file @
94b2c445
using
Mall.Common.AOP
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Mall.Model.Extend.Statistics
{
/// <summary>
/// 首页统计
/// </summary>
[
Serializable
]
[
DB
(
ConnectionName
=
"DefaultConnection"
)]
public
class
MallIndexStatistics
{
}
}
Mall.Model/Query/StatisticsQuery.cs
0 → 100644
View file @
94b2c445
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Mall.Model.Query
{
/// <summary>
/// 统计查询条件
/// </summary>
public
class
StatisticsQuery
{
}
}
Mall.Repository/User/MallStatisticsRepository.cs
0 → 100644
View file @
94b2c445
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
using
Mall.Model.Entity.User
;
using
Mall.Model.Extend.User
;
using
System.Linq
;
using
Mall.Model.Extend.Statistics
;
using
Mall.Model.Query
;
namespace
Mall.Repository.User
{
/// <summary>
/// 商城统计
/// </summary>
public
class
MallStatisticsRepository
:
RepositoryBase
<
MallIndexStatistics
>
{
/// <summary>
/// 用户统计
/// </summary>
public
void
MemberUserStatistics
(
StatisticsQuery
query
)
{
}
/// <summary>
/// 订单统计
/// </summary>
public
void
OrderStatistics
(
StatisticsQuery
query
)
{
}
}
}
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