Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gs1-office-web-sit
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
吴迪
gs1-office-web-sit
Commits
aca90b51
Commit
aca90b51
authored
Jan 12, 2022
by
rongkailun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
【修改】商品管理列表数据添加分类字段
parent
53b9c048
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
ProductEntity.java
...n/java/io/office/modules/manage/entity/ProductEntity.java
+2
-0
ProductDao.xml
src/main/resources/mapper/manage/ProductDao.xml
+1
-1
No files found.
src/main/java/io/office/modules/manage/entity/ProductEntity.java
View file @
aca90b51
...
...
@@ -182,4 +182,6 @@ public class ProductEntity implements Serializable {
*/
private
String
auditor
;
private
String
categoryName
;
}
src/main/resources/mapper/manage/ProductDao.xml
View file @
aca90b51
...
...
@@ -48,7 +48,7 @@
</resultMap>
<select
id=
"selectProductList"
resultMap=
"productMap"
parameterType=
"java.util.Map"
>
select a.* from product a left join Pcategory b on a.categoryid=b.categoryid where levels>0
select a.*
,b.category as categoryName
from product a left join Pcategory b on a.categoryid=b.categoryid where levels>0
<if
test=
"params.keyword !='' and params.keyword !=null"
>
and a.prename like concat('%',#{params.keyword},'%')
</if>
...
...
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