Update PmsProductQueryParam.java
This commit is contained in:
parent
e63f19f819
commit
bf5982ac3e
@ -1,11 +1,15 @@
|
|||||||
package com.macro.mall.dto;
|
package com.macro.mall.dto;
|
||||||
|
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 产品查询参数
|
* 产品查询参数
|
||||||
* Created by macro on 2018/4/27.
|
* Created by macro on 2018/4/27.
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper = false)
|
||||||
public class PmsProductQueryParam {
|
public class PmsProductQueryParam {
|
||||||
@ApiModelProperty("上架状态")
|
@ApiModelProperty("上架状态")
|
||||||
private Integer publishStatus;
|
private Integer publishStatus;
|
||||||
@ -19,52 +23,4 @@ public class PmsProductQueryParam {
|
|||||||
private Long productCategoryId;
|
private Long productCategoryId;
|
||||||
@ApiModelProperty("商品品牌编号")
|
@ApiModelProperty("商品品牌编号")
|
||||||
private Long brandId;
|
private Long brandId;
|
||||||
|
|
||||||
public Integer getPublishStatus() {
|
|
||||||
return publishStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPublishStatus(Integer publishStatus) {
|
|
||||||
this.publishStatus = publishStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getVerifyStatus() {
|
|
||||||
return verifyStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVerifyStatus(Integer verifyStatus) {
|
|
||||||
this.verifyStatus = verifyStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getKeyword() {
|
|
||||||
return keyword;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setKeyword(String keyword) {
|
|
||||||
this.keyword = keyword;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getProductSn() {
|
|
||||||
return productSn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProductSn(String productSn) {
|
|
||||||
this.productSn = productSn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getProductCategoryId() {
|
|
||||||
return productCategoryId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setProductCategoryId(Long productCategoryId) {
|
|
||||||
this.productCategoryId = productCategoryId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getBrandId() {
|
|
||||||
return brandId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setBrandId(Long brandId) {
|
|
||||||
this.brandId = brandId;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user