Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wwwanlingxiao
mall
Commits
452b47ec
Commit
452b47ec
authored
Feb 23, 2020
by
macro
Browse files
Update PmsProductAttributeCategoryService.java
parent
7e420f19
Changes
1
Hide whitespace changes
Inline
Side-by-side
mall-admin/src/main/java/com/macro/mall/service/PmsProductAttributeCategoryService.java
View file @
452b47ec
...
@@ -10,15 +10,33 @@ import java.util.List;
...
@@ -10,15 +10,33 @@ import java.util.List;
* Created by macro on 2018/4/26.
* Created by macro on 2018/4/26.
*/
*/
public
interface
PmsProductAttributeCategoryService
{
public
interface
PmsProductAttributeCategoryService
{
/**
* 创建属性分类
*/
int
create
(
String
name
);
int
create
(
String
name
);
/**
* 修改属性分类
*/
int
update
(
Long
id
,
String
name
);
int
update
(
Long
id
,
String
name
);
/**
* 删除属性分类
*/
int
delete
(
Long
id
);
int
delete
(
Long
id
);
/**
* 获取属性分类详情
*/
PmsProductAttributeCategory
getItem
(
Long
id
);
PmsProductAttributeCategory
getItem
(
Long
id
);
/**
* 分页查询属性分类
*/
List
<
PmsProductAttributeCategory
>
getList
(
Integer
pageSize
,
Integer
pageNum
);
List
<
PmsProductAttributeCategory
>
getList
(
Integer
pageSize
,
Integer
pageNum
);
/**
* 获取包含属性的属性分类
*/
List
<
PmsProductAttributeCategoryItem
>
getListWithAttr
();
List
<
PmsProductAttributeCategoryItem
>
getListWithAttr
();
}
}
Write
Preview
Supports
Markdown
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