Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Q
qk_backend
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
quanku
qk_backend
Commits
9200c956
Commit
9200c956
authored
Nov 27, 2024
by
shiyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
钱币类型加上朝代信息
parent
299714a9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
ch-wx-api/src/main/java/com/wwdz/ch/wx/config/WebMvcConfiguration.java
.../main/java/com/wwdz/ch/wx/config/WebMvcConfiguration.java
+2
-2
ch-wx-api/src/main/java/com/wwdz/ch/wx/impl/ItemTagQrCodeServiceImpl.java
...in/java/com/wwdz/ch/wx/impl/ItemTagQrCodeServiceImpl.java
+2
-0
No files found.
ch-wx-api/src/main/java/com/wwdz/ch/wx/config/WebMvcConfiguration.java
View file @
9200c956
...
@@ -51,9 +51,9 @@ public class WebMvcConfiguration implements WebMvcConfigurer {
...
@@ -51,9 +51,9 @@ public class WebMvcConfiguration implements WebMvcConfigurer {
"/wx/exchange/findExchangeItem"
,
"/wx/specialPerformance/findInfos"
,
"/wx/specialPerformance/findItemList"
,
"/wx/exchange/findExchangeItem"
,
"/wx/specialPerformance/findInfos"
,
"/wx/specialPerformance/findItemList"
,
"/wx/groupPurchase/findList"
,
"/wx/groupPurchase/findItemDetail"
,
"/wx/exchangeApplyOrder/handleApplyOrder"
,
"/wx/supplierItem/findDiscountList"
,
"/wx/groupPurchase/findList"
,
"/wx/groupPurchase/findItemDetail"
,
"/wx/exchangeApplyOrder/handleApplyOrder"
,
"/wx/supplierItem/findDiscountList"
,
"/wx/storage/uploadVideo"
,
"/wx/storage/uploadVideo"
,
"/wx/appletPageConfig/**"
,
"/wx/blindBox/**"
,
"/wx/userSignIn/**"
"/wx/appletPageConfig/**"
,
"/wx/blindBox/**"
,
"/wx/userSignIn/**"
,
"/wx/sellActivity/**"
//下列路径上线注释
//下列路径上线注释
,
"/wx/sellActivity/**"
,
"/wx/itemTagQrCode/**"
//
"/wx/itemTagQrCode/**"
// ,"/wx/itemTagOperate/**", "/wx/openShop/**", "/wx/earnestRecord/**", "/wx/auctionEarnest/**", "/wx/userAccount/**"
// ,"/wx/itemTagOperate/**", "/wx/openShop/**", "/wx/earnestRecord/**", "/wx/auctionEarnest/**", "/wx/userAccount/**"
/* ,"/wx/specialPerformance/**"
/* ,"/wx/specialPerformance/**"
, "/wx/supplierItem/**", "/wx/shareRecord/**", "/wx/distributionOrder/**", "/wx/selfPage/**", "/wx/auctionRecord/**",
, "/wx/supplierItem/**", "/wx/shareRecord/**", "/wx/distributionOrder/**", "/wx/selfPage/**", "/wx/auctionRecord/**",
...
...
ch-wx-api/src/main/java/com/wwdz/ch/wx/impl/ItemTagQrCodeServiceImpl.java
View file @
9200c956
...
@@ -102,6 +102,8 @@ public class ItemTagQrCodeServiceImpl implements ItemTagQrCodeService {
...
@@ -102,6 +102,8 @@ public class ItemTagQrCodeServiceImpl implements ItemTagQrCodeService {
}
}
int
categoryId
=
itemTagQrCode
.
getCategoryId
();
int
categoryId
=
itemTagQrCode
.
getCategoryId
();
Category
category
=
categoryDao
.
findById
(
categoryId
);
Category
category
=
categoryDao
.
findById
(
categoryId
);
Category
parentCategory
=
categoryDao
.
findById
(
category
.
getPid
());
category
.
setName
(
parentCategory
.
getName
()
+
"-"
+
category
.
getName
());
return
Result
.
success
(
category
);
return
Result
.
success
(
category
);
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
logger
.
error
(
"根据二维码code查询信息失败"
,
e
);
logger
.
error
(
"根据二维码code查询信息失败"
,
e
);
...
...
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