rock_fintech 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bd2083a1deccba65e685ea129c1b6147cdb3c587
4
- data.tar.gz: d47306f1569b75c463929076de1b9255b0e527c2
3
+ metadata.gz: e4ac83e25979452d343c1cf36d55b0efff9240e6
4
+ data.tar.gz: 6d3c6a8e9a9782ecd60ba201f5c38bb5288486a0
5
5
  SHA512:
6
- metadata.gz: 94e7a413a2f86d73d8948e6ea7717daccccb28a256f5955031006e95c3a0788e855b2cfb8d55549fbdf5507e4a7a29a33f9a2be450d9d308505c88667d0c8041
7
- data.tar.gz: 8adbed2e2d19163da4528daf1686b873eaab64aab2ac9bb8306cecf1ed840aad4b543de258c658613fcdae12599f0b02ee052a7c87a5f50c88cd4771c5db497a
6
+ metadata.gz: 4c080ccf54019aadf48ec660ef45ef5c6a5e1a471eef07d74a46bb42cfe1edea9d3130f682d225384aaa7822ecea65564d21866b74aedf95b61c7f4862898edb
7
+ data.tar.gz: d661a68a43c4151915961b6517a1828fe3876b1ef94aa577c026708ac3118363405cda84b51061db9c992c3520df569d89550f431dd5bdddcec559dcf9a0bfe1
@@ -5,6 +5,8 @@ module RockFintech
5
5
  module BatchEndCreditB
6
6
 
7
7
  # 批量结束债权
8
+ #
9
+ # @param notify_url 回调地址
8
10
  # @param items [ Array ] 还款信息(此参数传入时必须用 to_json 转化)
9
11
  # * :out_card_no
10
12
  # * :in_card_no
@@ -33,7 +35,7 @@ module RockFintech
33
35
  # * :third_reserved [String] 第三方流水号
34
36
  #
35
37
  def batch_end_credit_b(batch_count, batch_no, batch_type,
36
- batch_date, items, remark='')
38
+ batch_date, notify_url, items, remark='')
37
39
 
38
40
 
39
41
  service = 'batch_end_credit_b'
@@ -43,6 +45,7 @@ module RockFintech
43
45
  batch_no: batch_no,
44
46
  batch_type: batch_type,
45
47
  batch_date: batch_date,
48
+ notify_url: notify_url,
46
49
  items: items,
47
50
  custom: remark,
48
51
  }
@@ -5,6 +5,8 @@ module RockFintech
5
5
  module BatchPaymentB
6
6
 
7
7
  # 批量放款
8
+ #
9
+ # @param notify_url 回调地址
8
10
  # @param items [ Array ] 放款信息(此参数传入时必须用 to_json 转化)
9
11
  # * :out_card_no
10
12
  # * :amount
@@ -50,7 +52,7 @@ module RockFintech
50
52
  # * :third_reserved [String] 第三方流水号
51
53
  #
52
54
  def batch_payment_b(batch_count, batch_no, batch_type,
53
- batch_date, items, remark='')
55
+ batch_date, notify_url, items, remark='')
54
56
 
55
57
 
56
58
  service = 'batch_payment_b'
@@ -60,6 +62,7 @@ module RockFintech
60
62
  batch_no: batch_no,
61
63
  batch_type: batch_type,
62
64
  batch_date: batch_date,
65
+ notify_url: notify_url,
63
66
  items: items,
64
67
  custom: remark,
65
68
  }
@@ -5,6 +5,8 @@ module RockFintech
5
5
  module BatchRepaymentB
6
6
 
7
7
  # 批量还款
8
+ #
9
+ # @param notify_url 回调地址
8
10
  # @param items [ Array ] 还款信息 (此参数传入时必须用 to_json 转化)
9
11
  # * :out_card_no
10
12
  # * :amount
@@ -52,7 +54,7 @@ module RockFintech
52
54
  # * :reserved [String] 保留域
53
55
  #
54
56
  def batch_repayment_b(batch_count, batch_no, batch_type,
55
- batch_date, items, remark='')
57
+ batch_date, notify_url, items, remark='')
56
58
 
57
59
 
58
60
  service = 'batch_payment_b'
@@ -62,6 +64,7 @@ module RockFintech
62
64
  batch_no: batch_no,
63
65
  batch_type: batch_type,
64
66
  batch_date: batch_date,
67
+ notify_url: notify_url,
65
68
  items: items,
66
69
  custom: remark,
67
70
  }
@@ -1,3 +1,3 @@
1
1
  module RockFintech
2
- VERSION = "0.6.0"
2
+ VERSION = "0.7.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rock_fintech
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - chenpengyu