Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
custom-server
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
lizhonghong
custom-server
Commits
9fe6021d
Commit
9fe6021d
authored
Jun 04, 2026
by
HuAnYing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
商品相关dto
parent
d98327cb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
custom-server-app/src/main/java/com/jomalls/custom/app/service/CustomProductInfoService.java
+1
-1
custom-server-webapp/src/main/java/com/jomalls/custom/webapp/controller/CustomProductInfoController.java
+4
-3
No files found.
custom-server-app/src/main/java/com/jomalls/custom/app/service/CustomProductInfoService.java
View file @
9fe6021d
...
...
@@ -26,7 +26,7 @@ public interface CustomProductInfoService {
/**
* 根据条件查询分页列表接口
*
* @param
CustomProductInfoDto
分页入参model
* @param
param
分页入参model
* @return 分页对象
*/
IPage
<
CustomProductInfoVO
>
pageList
(
CustomProductInfoDto
param
);
...
...
custom-server-webapp/src/main/java/com/jomalls/custom/webapp/controller/CustomProductInfoController.java
View file @
9fe6021d
package
com
.
jomalls
.
custom
.
webapp
.
controller
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.jomalls.custom.app.dto.product.CustomProductInfoDto
;
import
com.jomalls.custom.app.vo.CustomProductInfoPageVO
;
import
com.jomalls.custom.app.vo.CustomProductInfoVO
;
import
com.jomalls.custom.app.service.CustomProductInfoService
;
...
...
@@ -45,13 +46,13 @@ public class CustomProductInfoController {
/**
* 根据条件查询分页列表接口
*
* @param
customProductInfoPageVO
分页入参model
* @param
param
分页入参model
* @return 分页对象
*/
@Operation
(
summary
=
"分页列表接口"
,
description
=
"根据条件查询分页列表接口"
)
@RequestMapping
(
value
=
"/pageList"
,
method
=
RequestMethod
.
POST
)
public
IPage
<
CustomProductInfoVO
>
pageList
(
@RequestBody
CustomProductInfo
PageVO
customProductInfoPageVO
)
{
return
customProductInfoService
.
pageList
(
customProductInfoPageVO
);
public
IPage
<
CustomProductInfoVO
>
pageList
(
@RequestBody
CustomProductInfo
Dto
param
)
{
return
customProductInfoService
.
pageList
(
param
);
}
...
...
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