Toggle navigation
Toggle navigation
This project
Loading...
Sign in
jiujian
/
client-customer-order-api
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
wangyingyang
2024-12-10 15:16:26 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
74176b43d19c2525d4cc10cbc614b1fbfa4292dd
74176b43
1 parent
e759abc7
fix
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletions
src/main/java/com/infoloop/tianting/model/dto/SettlementDTO.java
src/main/java/com/infoloop/tianting/service/impl/SettlementServiceImpl.java
src/main/java/com/infoloop/tianting/model/dto/SettlementDTO.java
View file @
74176b4
...
...
@@ -48,7 +48,16 @@ public class SettlementDTO {
@Data
@Builder
@ApiModel
(
description
=
"SettlementRequestDto"
)
@ApiModel
(
description
=
"SettlementMenuMealDto"
)
public
static
class
SettlementMenuMealDto
{
private
String
skuName
;
private
Integer
price
;
private
Integer
count
;
}
@Data
@Builder
@ApiModel
(
description
=
"SettlementDataDto"
)
public
static
class
SettlementDataDto
{
private
String
client
;
private
String
startTime
;
...
...
@@ -56,6 +65,16 @@ public class SettlementDTO {
private
Map
<
String
,
Map
<
String
,
List
<
SettlementMenuSkuDto
>>>
classifyOrders
;
}
@Data
@Builder
@ApiModel
(
description
=
"SettlementDataByMealDto"
)
public
static
class
SettlementDataByMealDto
{
private
String
client
;
private
LocalDateTime
startTime
;
private
LocalDateTime
endTime
;
private
Map
<
String
,
Map
<
String
,
Map
<
String
,
List
<
SettlementMenuMealDto
>>>>
classifyOrders
;
}
}
...
...
src/main/java/com/infoloop/tianting/service/impl/SettlementServiceImpl.java
View file @
74176b4
This diff is collapsed. Click to expand it.
Please
register
or
login
to post a comment