Commit e154d949 authored by macro's avatar macro
Browse files

Update PmsProductResult.java

parent bf5982ac
package com.macro.mall.dto; package com.macro.mall.dto;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
/** /**
* 查询单个产品进行修改时返回的结果 * 查询单个产品进行修改时返回的结果
* Created by macro on 2018/4/26. * Created by macro on 2018/4/26.
*/ */
public class PmsProductResult extends PmsProductParam { public class PmsProductResult extends PmsProductParam {
@Getter
@Setter
@ApiModelProperty("商品所选分类的父id") @ApiModelProperty("商品所选分类的父id")
private Long cateParentId; private Long cateParentId;
public Long getCateParentId() {
return cateParentId;
}
public void setCateParentId(Long cateParentId) {
this.cateParentId = cateParentId;
}
} }
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment