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
94d44c29
Commit
94d44c29
authored
Mar 06, 2020
by
macro
Browse files
Update PmsProductAttributeService.java
parent
31191553
Changes
1
Hide whitespace changes
Inline
Side-by-side
mall-admin/src/main/java/com/macro/mall/service/PmsProductAttributeService.java
View file @
94d44c29
...
@@ -14,7 +14,8 @@ import java.util.List;
...
@@ -14,7 +14,8 @@ import java.util.List;
public
interface
PmsProductAttributeService
{
public
interface
PmsProductAttributeService
{
/**
/**
* 根据分类分页获取商品属性
* 根据分类分页获取商品属性
* @param cid 分类id
*
* @param cid 分类id
* @param type 0->属性;2->参数
* @param type 0->属性;2->参数
*/
*/
List
<
PmsProductAttribute
>
getList
(
Long
cid
,
Integer
type
,
Integer
pageSize
,
Integer
pageNum
);
List
<
PmsProductAttribute
>
getList
(
Long
cid
,
Integer
type
,
Integer
pageSize
,
Integer
pageNum
);
...
@@ -35,8 +36,14 @@ public interface PmsProductAttributeService {
...
@@ -35,8 +36,14 @@ public interface PmsProductAttributeService {
*/
*/
PmsProductAttribute
getItem
(
Long
id
);
PmsProductAttribute
getItem
(
Long
id
);
/**
* 批量删除商品属性
*/
@Transactional
@Transactional
int
delete
(
List
<
Long
>
ids
);
int
delete
(
List
<
Long
>
ids
);
/**
* 获取和分类相关的商品属性
*/
List
<
ProductAttrInfo
>
getProductAttrInfo
(
Long
productCategoryId
);
List
<
ProductAttrInfo
>
getProductAttrInfo
(
Long
productCategoryId
);
}
}
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