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
c0dd8b80
Commit
c0dd8b80
authored
Jun 25, 2024
by
王宇航
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.5.8
1、訂單新增takeFoodCode取餐碼 2、訂單新增restaurantTableType餐桌類型0:堂食、1:外賣
parent
46aa9907
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
1 deletions
+27
-1
mylibrary/build.gradle.kts
+1
-1
mylibrary/src/main/java/com/gingersoft/connect/bean/OrderInfoBean.java
+26
-0
No files found.
mylibrary/build.gradle.kts
View file @
c0dd8b80
...
...
@@ -55,7 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect"
artifactId = "Connect"
version = "1.5.
7
"
version = "1.5.
8
"
// 添加 POM 配置
// pom {
// name.set("GingerSoftConnect")
...
...
mylibrary/src/main/java/com/gingersoft/connect/bean/OrderInfoBean.java
View file @
c0dd8b80
...
...
@@ -12,6 +12,10 @@ public class OrderInfoBean implements SendMsgType {
*/
private
String
orderNo
;
/**
* 取餐碼
*/
private
String
takeFoodCode
;
/**
* 餐檯名稱
*/
private
String
tableName
;
...
...
@@ -20,6 +24,12 @@ public class OrderInfoBean implements SendMsgType {
*/
private
int
orderType
;
/**
* 餐桌類型
* 0:堂食
* 1:外賣
*/
private
int
restaurantTableType
;
/**
* 用餐人數
*/
private
int
pax
;
...
...
@@ -85,6 +95,14 @@ public class OrderInfoBean implements SendMsgType {
this
.
orderNo
=
orderNo
;
}
public
String
getTakeFoodCode
()
{
return
takeFoodCode
;
}
public
void
setTakeFoodCode
(
String
takeFoodCode
)
{
this
.
takeFoodCode
=
takeFoodCode
;
}
public
String
getTableName
()
{
return
tableName
;
}
...
...
@@ -101,6 +119,14 @@ public class OrderInfoBean implements SendMsgType {
this
.
orderType
=
orderType
;
}
public
int
getRestaurantTableType
()
{
return
restaurantTableType
;
}
public
void
setRestaurantTableType
(
int
restaurantTableType
)
{
this
.
restaurantTableType
=
restaurantTableType
;
}
public
int
getPax
()
{
return
this
.
pax
;
}
...
...
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