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
1af4de12
Commit
1af4de12
authored
Aug 13, 2024
by
王宇航
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.6.6
parent
7458e64d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
mylibrary/build.gradle.kts
+1
-1
mylibrary/src/main/java/com/gingersoft/connect/bean/ResultBean.kt
+1
-1
mylibrary/src/main/java/com/gingersoft/connect/bean/SoldOutFoodInfoBean.java
+7
-7
No files found.
mylibrary/build.gradle.kts
View file @
1af4de12
...
...
@@ -55,7 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect"
artifactId = "Connect"
version = "1.6.
5
"
version = "1.6.
6
"
// 添加 POM 配置
// pom {
// name.set("GingerSoftConnect")
...
...
mylibrary/src/main/java/com/gingersoft/connect/bean/ResultBean.kt
View file @
1af4de12
...
...
@@ -3,5 +3,5 @@ package com.gingersoft.connect.bean
class
ResultBean
(
val
success
:
Boolean
=
true
,
val
errorMsg
:
String
=
""
,
val
data
:
SendMsgType
?
=
null
val
data
:
Any
?
=
null
)
mylibrary/src/main/java/com/gingersoft/connect/bean/SoldOutFoodInfoBean.java
View file @
1af4de12
...
...
@@ -3,7 +3,7 @@ package com.gingersoft.connect.bean;
/**
* 沽清用的食品信息類
*/
public
class
SoldOutFoodInfoBean
{
public
class
SoldOutFoodInfoBean
extends
SendMsgType
{
/**
* 食品id
*/
...
...
@@ -13,9 +13,9 @@ public class SoldOutFoodInfoBean {
*/
private
String
foodName
;
/**
*
食品
數量
*
库存
數量
*/
private
Integer
q
uantity
;
private
String
inventoryQ
uantity
;
/**
* 食品金額
*/
...
...
@@ -51,12 +51,12 @@ public class SoldOutFoodInfoBean {
this
.
foodName
=
foodName
;
}
public
Integer
getQuantity
()
{
return
q
uantity
;
public
String
getQuantity
()
{
return
inventoryQ
uantity
;
}
public
void
setQuantity
(
Integer
quantity
)
{
this
.
q
uantity
=
quantity
;
public
void
setQuantity
(
String
quantity
)
{
this
.
inventoryQ
uantity
=
quantity
;
}
public
double
getPrice
()
{
...
...
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