Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
performance
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zry
performance
Commits
064e84b5
Commit
064e84b5
authored
May 16, 2022
by
ruyun.zhang@suvalue.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
报表查询方法修改
parent
8a1844e5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
38 additions
and
20 deletions
+38
-20
performance/Performance.Api/wwwroot/Performance.DtoModels.xml
+15
-0
performance/Performance.Api/wwwroot/Performance.EntityModels.xml
+0
-10
performance/Performance.DtoModels/ReportStatistics/ReportStatisticsInfoDto.cs
+14
-2
performance/Performance.EntityModels/Entity/report_statistics.cs
+9
-8
performance/Performance.Services/StatisticsService.cs
+0
-0
No files found.
performance/Performance.Api/wwwroot/Performance.DtoModels.xml
View file @
064e84b5
...
@@ -1786,6 +1786,21 @@
...
@@ -1786,6 +1786,21 @@
结果返回用途 首次查询 0 用于比对 1 用于对比
结果返回用途 首次查询 0 用于比对 1 用于对比
</summary>
</summary>
</member>
</member>
<member
name=
"P:Performance.DtoModels.StatisticsColumn.ColumnName"
>
<summary>
显示名
</summary>
</member>
<member
name=
"P:Performance.DtoModels.StatisticsColumn.OrgColumnName"
>
<summary>
原始名,对应到数据列
</summary>
</member>
<member
name=
"P:Performance.DtoModels.StatisticsColumn.Fixed"
>
<summary>
固定
</summary>
</member>
<member
name=
"P:Performance.DtoModels.ReportTable.PersonnelName"
>
<member
name=
"P:Performance.DtoModels.ReportTable.PersonnelName"
>
<summary>
<summary>
人员信息
人员信息
...
...
performance/Performance.Api/wwwroot/Performance.EntityModels.xml
View file @
064e84b5
...
@@ -7405,16 +7405,6 @@
...
@@ -7405,16 +7405,6 @@
汇总数值SQL
汇总数值SQL
</summary>
</summary>
</member>
</member>
<member
name=
"P:Performance.EntityModels.report_statistics.ProportionScript"
>
<summary>
占比SQL
</summary>
</member>
<member
name=
"P:Performance.EntityModels.report_statistics.WeightScript"
>
<summary>
权重SQL
</summary>
</member>
<member
name=
"T:Performance.EntityModels.report_statistics_selection"
>
<member
name=
"T:Performance.EntityModels.report_statistics_selection"
>
<summary>
<summary>
...
...
performance/Performance.DtoModels/ReportStatistics/ReportStatisticsInfoDto.cs
View file @
064e84b5
...
@@ -58,7 +58,7 @@ public class StatisticsSelectionDto
...
@@ -58,7 +58,7 @@ public class StatisticsSelectionDto
public
List
<
TitleValue
>
Options
{
get
;
set
;
}
public
List
<
TitleValue
>
Options
{
get
;
set
;
}
}
}
public
class
StatisticsQuery
public
class
StatisticsQuery
...
@@ -86,10 +86,22 @@ public class StatisticsColumn
...
@@ -86,10 +86,22 @@ public class StatisticsColumn
{
{
public
StatisticsColumn
()
public
StatisticsColumn
()
{
{
ColumnName
=
""
;
OrgColumnName
=
""
;
Fixed
=
""
;
ChildColumns
=
new
List
<
StatisticsColumn
>();
ChildColumns
=
new
List
<
StatisticsColumn
>();
}
}
/// <summary>
/// 显示名
/// </summary>
public
string
ColumnName
{
get
;
set
;
}
public
string
ColumnName
{
get
;
set
;
}
/// <summary>
/// 原始名,对应到数据列
/// </summary>
public
string
OrgColumnName
{
get
;
set
;
}
/// <summary>
/// 固定
/// </summary>
public
string
Fixed
{
get
;
set
;
}
public
string
Fixed
{
get
;
set
;
}
public
List
<
StatisticsColumn
>
ChildColumns
{
get
;
set
;
}
public
List
<
StatisticsColumn
>
ChildColumns
{
get
;
set
;
}
}
}
...
...
performance/Performance.EntityModels/Entity/report_statistics.cs
View file @
064e84b5
...
@@ -35,14 +35,14 @@ public class report_statistics
...
@@ -35,14 +35,14 @@ public class report_statistics
/// </summary>
/// </summary>
public
string
TotalScript
{
get
;
set
;
}
public
string
TotalScript
{
get
;
set
;
}
/// <summary>
///
//
<summary>
/// 占比SQL
///
//
占比SQL
/// </summary>
///
//
</summary>
public
string
ProportionScript
{
get
;
set
;
}
//
public string ProportionScript { get; set; }
/// <summary>
///
//
<summary>
/// 权重SQL
///
//
权重SQL
/// </summary>
///
//
</summary>
public
string
WeightScript
{
get
;
set
;
}
//
public string WeightScript { get; set; }
}
}
}
}
\ No newline at end of file
performance/Performance.Services/StatisticsService.cs
View file @
064e84b5
This diff is collapsed.
Click to expand it.
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