admin
2021-01-27 e1a62ec62e7331d97af9302e90e1ce44af8235eb
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();
   }