forked from zhairui/gulimall
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. 删除属性与分组的关联关系 API: https://easydoc.xyz/doc/75716633/ZUqEdvA4/qn7A2Fht 2.获取属性分组的关联的所有属性 API:https://easydoc.xyz/doc/75716633/ZUqEdvA4/LnjzZHPj
- Loading branch information
1 parent
30f12ee
commit 89c0bc5
Showing
6 changed files
with
100 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
gulimall-product/src/main/java/com/bigdata/gulimall/product/vo/AttrGroupRelationVo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.bigdata.gulimall.product.vo; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class AttrGroupRelationVo { | ||
|
||
//属性ID | ||
private Long attrId; | ||
|
||
//属性分组ID | ||
private Long attrGroupId; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters