forked from macrozheng/mall
-
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.
- Loading branch information
1 parent
bf5982a
commit e154d94
Showing
1 changed file
with
4 additions
and
8 deletions.
There are no files selected for viewing
12 changes: 4 additions & 8 deletions
12
mall-admin/src/main/java/com/macro/mall/dto/PmsProductResult.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 |
---|---|---|
@@ -1,20 +1,16 @@ | ||
package com.macro.mall.dto; | ||
|
||
import io.swagger.annotations.ApiModelProperty; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
/** | ||
* 查询单个产品进行修改时返回的结果 | ||
* Created by macro on 2018/4/26. | ||
*/ | ||
public class PmsProductResult extends PmsProductParam { | ||
@Getter | ||
@Setter | ||
@ApiModelProperty("商品所选分类的父id") | ||
private Long cateParentId; | ||
|
||
public Long getCateParentId() { | ||
return cateParentId; | ||
} | ||
|
||
public void setCateParentId(Long cateParentId) { | ||
this.cateParentId = cateParentId; | ||
} | ||
} |