Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-api-boot-master
Commits
f6e3039d
Commit
f6e3039d
authored
Sep 06, 2024
by
yanghao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: 查询产品接口添加根据类型(多选)查询产品的请求参数 typeIds。
parent
8e4bcc77
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
ProductMapper.java
...yudao/module/product/dal/mysql/product/ProductMapper.java
+1
-0
ProductExportReqVO.java
...r/yudao/module/product/vo/product/ProductExportReqVO.java
+3
-0
No files found.
yudao-module-product/yudao-module-product-core/src/main/java/cn/iocoder/yudao/module/product/dal/mysql/product/ProductMapper.java
View file @
f6e3039d
...
...
@@ -300,6 +300,7 @@ public interface ProductMapper extends BaseMapperX<ProductDO> {
.
likeIfPresent
(
ProductDO:
:
getProductCode
,
reqVO
.
getProductCode
())
.
likeIfPresent
(
ProductDO:
:
getCustomsCode
,
reqVO
.
getCustomsCode
())
.
eqIfPresent
(
ProductDO:
:
getTypeId
,
reqVO
.
getTypeId
())
.
inIfPresent
(
ProductDO:
:
getTypeId
,
reqVO
.
getTypeIds
())
.
eqIfPresent
(
ProductDO:
:
getAuditStatus
,
reqVO
.
getAuditStatus
())
.
eqIfPresent
(
ProductDO:
:
getStatus
,
reqVO
.
getStatus
())
.
inIfPresent
(
ProductDO:
:
getId
,
idList
)
...
...
yudao-module-product/yudao-module-product-core/src/main/java/cn/iocoder/yudao/module/product/vo/product/ProductExportReqVO.java
View file @
f6e3039d
...
...
@@ -16,6 +16,9 @@ public class ProductExportReqVO {
@ApiModelProperty
(
value
=
"商品类型id"
)
private
Long
typeId
;
@ApiModelProperty
(
value
=
"商品类型ids"
)
private
List
<
Long
>
typeIds
;
@ApiModelProperty
(
value
=
"商品属性id"
)
private
String
attrId
;
...
...
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