Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in
Toggle navigation
政
政企识别终端
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
终端组
政企识别终端
Commits
23072434
Commit
23072434
authored
Mar 17, 2023
by
姜春辉
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 修正关闭疫情信息后识别记录保存失败的bug
parent
21573200
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
LogicHandler.cs
...fication.Enterprise.Logic/CallbackHandler/LogicHandler.cs
+1
-1
识别历史.cs
src/GS.Terminal.Identification.LocalDbModel/识别历史.cs
+3
-0
No files found.
src/GS.Terminal.Identification.Enterprise.Logic/CallbackHandler/LogicHandler.cs
View file @
23072434
...
...
@@ -109,7 +109,7 @@ namespace GS.Terminal.Identification.Enterprise.Logic
是否访客
=
false
,
面部识别对比结果
=
faceResult
,
进出标识
=
human
.
Tag
,
健康码颜色
=
status
?.
healthcolor
,
健康码颜色
=
status
!=
null
?
status
.
healthcolor
:
""
,
核酸检测结果
=
status
!=
null
?
status
.
nat
:
0
,
疫苗接种剂次
=
status
!=
null
?
status
.
inoculationtimes
:
0
,
现场照片
=
Program
.
config
.
LogicConfig
.
IsTakePhoto
?
Tools
.
SaveFile
(
ViewModel
.
ActiveVideo
)
:
null
,
...
...
src/GS.Terminal.Identification.LocalDbModel/识别历史.cs
View file @
23072434
...
...
@@ -64,8 +64,11 @@ namespace GS.Terminal.Identification.LocalDbModel
/// </summary>
public
int
进出标识
{
get
;
set
;
}
[
SugarColumn
(
IsNullable
=
true
)]
public
string
健康码颜色
{
get
;
set
;
}
[
SugarColumn
(
IsNullable
=
true
)]
public
int
核酸检测结果
{
get
;
set
;
}
[
SugarColumn
(
IsNullable
=
true
)]
public
int
疫苗接种剂次
{
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