|
|
package com.yohoufo.product.request;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
|
public class ProductSearchReq {
|
...
|
...
|
@@ -33,29 +34,7 @@ public class ProductSearchReq { |
|
|
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return new ToStringBuilder(this)
|
|
|
.append("page", page)
|
|
|
.append("order", order)
|
|
|
.append("gender", gender)
|
|
|
.append("viewNum", viewNum)
|
|
|
.append("brand", brand)
|
|
|
.append("size", size)
|
|
|
.append("query", query)
|
|
|
.append("maxSort", maxSort)
|
|
|
.append("midSort", midSort)
|
|
|
.append("series", series)
|
|
|
.append("pool", pool)
|
|
|
.append("isSoonSale", isSoonSale)
|
|
|
.append("not_id", not_id)
|
|
|
.append("id", id)
|
|
|
.append("isIdFilter", isIdFilter)
|
|
|
.append("filterYearMonth",filterYearMonth)
|
|
|
.append("startTime",startTime)
|
|
|
.append("endTime",endTime)
|
|
|
.append("contain_yoho",containYoho)
|
|
|
.append("businessClient",businessClient)
|
|
|
.append("preSaleFlag", preSaleFlag)
|
|
|
.toString();
|
|
|
return JSONObject.toJSONString(this);
|
|
|
}
|
|
|
|
|
|
|
...
|
...
|
|