yujian
2020-05-23 28cf328a098334b51a3e9d2d56f983fb8c862211
fanli/src/main/java/com/yeshi/fanli/util/factory/JumpDetailParamsFactory.java
@@ -70,9 +70,11 @@
    * @param auctionId
    * @return
    */
   public static String createGoodsParams(Long auctionId) {
   public static String createGoodsParams(Long auctionId, Integer goodsType) {
      JSONObject data = new JSONObject();
      data.put("id", auctionId);
      if (goodsType != null)
         data.put("goodsType", goodsType);
      return data.toString();
   }