Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
VIZ.H2V
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
刘龙飞
VIZ.H2V
Commits
ae343c4d
Commit
ae343c4d
authored
Sep 17, 2022
by
liulongfei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
窗口日志添加操作名称
parent
e6566edf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
VIZ.H2V.Module/NDIView/VieweModel/NDIViewModel.cs
+1
-0
VIZ.H2V.Storage/CSV/Log/LogOperation.cs
+6
-0
No files found.
VIZ.H2V.Module/NDIView/VieweModel/NDIViewModel.cs
View file @
ae343c4d
...
@@ -382,6 +382,7 @@ namespace VIZ.H2V.Module
...
@@ -382,6 +382,7 @@ namespace VIZ.H2V.Module
LogOperation
log
=
new
LogOperation
();
LogOperation
log
=
new
LogOperation
();
log
.
ViewKey
=
this
.
ViewKey
;
log
.
ViewKey
=
this
.
ViewKey
;
log
.
DisplayName
=
this
.
DisplayName
;
log
.
StrategyType
=
this
.
StrategyType
.
GetDescription
();
log
.
StrategyType
=
this
.
StrategyType
.
GetDescription
();
log
.
Operation
=
strategyMode
.
GetDescription
();
log
.
Operation
=
strategyMode
.
GetDescription
();
log
.
BeginTime
=
now
;
log
.
BeginTime
=
now
;
...
...
VIZ.H2V.Storage/CSV/Log/LogOperation.cs
View file @
ae343c4d
...
@@ -16,6 +16,7 @@ namespace VIZ.H2V.Storage
...
@@ -16,6 +16,7 @@ namespace VIZ.H2V.Storage
{
{
this
.
Map
(
p
=>
p
.
ID
).
Name
(
"编号"
);
this
.
Map
(
p
=>
p
.
ID
).
Name
(
"编号"
);
this
.
Map
(
p
=>
p
.
ViewKey
).
Name
(
"窗口"
);
this
.
Map
(
p
=>
p
.
ViewKey
).
Name
(
"窗口"
);
this
.
Map
(
p
=>
p
.
DisplayName
).
Name
(
"窗口名称"
);
this
.
Map
(
p
=>
p
.
StrategyType
).
Name
(
"机位"
);
this
.
Map
(
p
=>
p
.
StrategyType
).
Name
(
"机位"
);
this
.
Map
(
p
=>
p
.
Operation
).
Name
(
"操作"
);
this
.
Map
(
p
=>
p
.
Operation
).
Name
(
"操作"
);
this
.
Map
(
p
=>
p
.
BeginTime
).
Name
(
"开始时间"
);
this
.
Map
(
p
=>
p
.
BeginTime
).
Name
(
"开始时间"
);
...
@@ -50,6 +51,11 @@ namespace VIZ.H2V.Storage
...
@@ -50,6 +51,11 @@ namespace VIZ.H2V.Storage
public
string
ViewKey
{
get
;
set
;
}
public
string
ViewKey
{
get
;
set
;
}
/// <summary>
/// <summary>
/// 显示名称
/// </summary>
public
string
DisplayName
{
get
;
set
;
}
/// <summary>
/// 算法类型
/// 算法类型
/// </summary>
/// </summary>
public
string
StrategyType
{
get
;
set
;
}
public
string
StrategyType
{
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