Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
haoban3.0
haoban-manage3.0
Commits
e0708648
Commit
e0708648
authored
Apr 25, 2025
by
xiehongfei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: get-real-time-sales-data接口修改
parent
506e9405
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
DataController.java
...gic/haoban/manage/web/controller/data/DataController.java
+1
-1
StoreRealTimeSalesApiQO.java
...ic/haoban/manage/web/qo/data/StoreRealTimeSalesApiQO.java
+15
-1
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/data/DataController.java
View file @
e0708648
...
...
@@ -387,7 +387,7 @@ public class DataController {
apiParam
.
setIsClerk
(
1
);
}
return
handle
(
getHandel
(
qo
,
"data_sales_perf_real_time_overview_hb
"
,
return
handle
(
getHandel
(
qo
,
Objects
.
equals
(
qo
.
getApiParam
().
getUrlType
(),
"sales_data"
)
?
"data_sales_perf_real_time_overview_hb"
:
"data_sales_perf_real_time_overview_hb_home
"
,
JSONObject
.
toJSONString
(
qo
.
getApiParam
())));
}
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/qo/data/StoreRealTimeSalesApiQO.java
View file @
e0708648
package
com
.
gic
.
haoban
.
manage
.
web
.
qo
.
data
;
import
lombok.Data
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
lombok.ToString
;
import
java.io.Serializable
;
...
...
@@ -10,6 +10,7 @@ import java.io.Serializable;
* @Date 2024/4/29 15:29
*/
@ToString
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
class
StoreRealTimeSalesApiQO
implements
Serializable
{
private
String
storeId
;
...
...
@@ -33,6 +34,19 @@ public class StoreRealTimeSalesApiQO implements Serializable {
*/
private
Integer
isClerk
;
/**
* 特殊参数,不知道有啥用
*/
private
String
urlType
;
public
String
getUrlType
()
{
return
urlType
;
}
public
void
setUrlType
(
String
urlType
)
{
this
.
urlType
=
urlType
;
}
public
String
getStoreId
()
{
return
storeId
;
}
...
...
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