Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
GingerSoftLANInterconnection
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
王宇航
GingerSoftLANInterconnection
Commits
3366534d
Commit
3366534d
authored
Aug 14, 2024
by
王宇航
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.7.4
修復KDS沽清後,接受端解析失敗的問題
parent
1261c590
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mylibrary/build.gradle.kts
+1
-1
mylibrary/src/main/java/com/gingersoft/connect/utils/SoldOutMsgProcess.kt
+1
-1
No files found.
mylibrary/build.gradle.kts
View file @
3366534d
...
...
@@ -55,7 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect"
artifactId = "Connect"
version = "1.7.
3
"
version = "1.7.
4
"
// 添加 POM 配置
// pom {
// name.set("GingerSoftConnect")
...
...
mylibrary/src/main/java/com/gingersoft/connect/utils/SoldOutMsgProcess.kt
View file @
3366534d
...
...
@@ -5,7 +5,7 @@ import com.gingersoft.connect.bean.SoldOutMsgBean
interface
SoldOutMsgProcess
:
MsgProcess
{
override
suspend
fun
processMsg
(
data
:
Any
?):
ResultBean
{
val
gsonToBean
=
GsonUtils
.
GsonToBean
(
data
,
SoldOutMsgBean
::
class
.
java
)
val
gsonToBean
=
GsonUtils
.
GsonToBean
(
data
.
toString
()
,
SoldOutMsgBean
::
class
.
java
)
if
(
gsonToBean
==
null
)
{
return
ResultBean
(
false
,
"解析失敗"
)
}
...
...
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