yujian
2020-06-22 652de4214ebe5efcf3abd30e68c83cb38beb2a23
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();
   }