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
870e8c77
Commit
870e8c77
authored
Sep 13, 2024
by
王宇航
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.7.9
字段isStop,isSoldOut改為int
parent
2c48ada4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
17 deletions
+17
-17
mylibrary/build.gradle.kts
+1
-1
mylibrary/src/main/java/com/gingersoft/connect/bean/SoldOutFoodInfoBean.java
+16
-16
No files found.
mylibrary/build.gradle.kts
View file @
870e8c77
...
@@ -55,7 +55,7 @@ afterEvaluate {
...
@@ -55,7 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect"
groupId = "com.gingersoft.connect"
artifactId = "Connect"
artifactId = "Connect"
version = "1.7.
8
"
version = "1.7.
9
"
// 添加 POM 配置
// 添加 POM 配置
// pom {
// pom {
// name.set("GingerSoftConnect")
// name.set("GingerSoftConnect")
...
...
mylibrary/src/main/java/com/gingersoft/connect/bean/SoldOutFoodInfoBean.java
View file @
870e8c77
...
@@ -83,6 +83,22 @@ public class SoldOutFoodInfoBean extends SendMsgType {
...
@@ -83,6 +83,22 @@ public class SoldOutFoodInfoBean extends SendMsgType {
this
.
inventoryQuantity
=
inventoryQuantity
;
this
.
inventoryQuantity
=
inventoryQuantity
;
}
}
public
int
getIsStop
()
{
return
isStop
;
}
public
void
setIsStop
(
int
isStop
)
{
this
.
isStop
=
isStop
;
}
public
int
getIsSoldOut
()
{
return
isSoldOut
;
}
public
void
setIsSoldOut
(
int
isSoldOut
)
{
this
.
isSoldOut
=
isSoldOut
;
}
public
double
getPrice
()
{
public
double
getPrice
()
{
return
price
;
return
price
;
}
}
...
@@ -138,20 +154,4 @@ public class SoldOutFoodInfoBean extends SendMsgType {
...
@@ -138,20 +154,4 @@ public class SoldOutFoodInfoBean extends SendMsgType {
public
void
setSoldOutTime
(
String
soldOutTime
)
{
public
void
setSoldOutTime
(
String
soldOutTime
)
{
this
.
soldOutTime
=
soldOutTime
;
this
.
soldOutTime
=
soldOutTime
;
}
}
public
Boolean
getStop
()
{
return
isStop
;
}
public
void
setStop
(
Boolean
stop
)
{
isStop
=
stop
;
}
public
Boolean
getSoldOut
()
{
return
isSoldOut
;
}
public
void
setSoldOut
(
Boolean
soldOut
)
{
isSoldOut
=
soldOut
;
}
}
}
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