Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
T
tcm-system
Project
Project
Details
Activity
Releases
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
TCM
tcm-system
Commits
0540420d
Commit
0540420d
authored
Dec 30, 2025
by
dmy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
中医药小程序代码提交
parent
4725ed0c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
ProductDaoImpl.java
src/main/java/com/tcm/product/dao/impl/ProductDaoImpl.java
+4
-1
ProductLoadPageReqVo.java
...n/java/com/tcm/util/product/req/ProductLoadPageReqVo.java
+9
-0
No files found.
src/main/java/com/tcm/product/dao/impl/ProductDaoImpl.java
View file @
0540420d
...
...
@@ -32,7 +32,10 @@ public class ProductDaoImpl extends BaseDaoImpl implements ProductDao {
.
add
(
"productType"
,
" AND p.product_type =?"
)
.
add
(
"status"
,
" AND p.status =?"
)
.
add
(
"position"
,
" AND pe.position =?"
)
.
add
(
"categoryType"
,
" AND p.category_type =?"
);
.
add
(
"categoryType"
,
" AND p.category_type =?"
)
.
add
(
"languageType"
,
"and pe.language_type =?"
)
;
}
@Override
...
...
src/main/java/com/tcm/util/product/req/ProductLoadPageReqVo.java
View file @
0540420d
...
...
@@ -9,6 +9,7 @@ public class ProductLoadPageReqVo extends PageSizeReqVo {
private
String
productStatus
;
private
Integer
productType
;
private
Integer
languageType
;
private
Integer
categoryType
;
public
String
getProductId
()
{
return
productId
;
...
...
@@ -57,4 +58,12 @@ public class ProductLoadPageReqVo extends PageSizeReqVo {
public
void
setProductType
(
Integer
productType
)
{
this
.
productType
=
productType
;
}
public
Integer
getCategoryType
()
{
return
categoryType
;
}
public
void
setCategoryType
(
Integer
categoryType
)
{
this
.
categoryType
=
categoryType
;
}
}
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