Project

General

Profile

Specification » History » Version 1

Soh Keong, 01/06/2021 10:58 AM

1 1 Soh Keong
{{toc}}
2
3
h1. Specification
4
5
h2. Programming Guide
6
7
h3. Jar version 
8
9
|_. version |_. Description        |
10
| 1.6       | Init                 |
11
12
h3. Jar File Download
13
14
"Jar":/redmine/attachments/download/553/aliyun-1.6.jar
15
"Lib":/redmine/attachments/download/555/lib.rar
16
"Properties":/redmine/attachments/download/554/aliyun.properties
17
18
h3. properties file
19
20
* *service.properties*
21
22
# *ali.url* 
23
# *app.code*
24
# *log.path*
25
# *log.name*
26
# *report.name*
27
# *http.connection.timeout*
28
# *http.read.timeout*
29
30
h2. Methods
31
32
h3. Common Instance
33
34
<pre>
35
com.bv.service.AliYunService service = new com.bv.service.AliYunService();
36
</pre>
37
38
h3. checkIC
39
40
<pre>
41
com.bv.model.ICResponseBean result = servoce.checkIC(com.bv.model.ICRequestBean bean)
42
</pre>
43
44
* *com.bv.model.ICRequestBean*
45
> * *idCard*        - String
46
> * *name*          - String
47
> * *introducerId*  - String
48
> * *placementId*   - String
49
50
* *com.bv.model.ICResponseBean*
51
> * *idCard*        - String
52
> * *name*          - String
53
> * *introducerId*  - String
54
> * *placementId*   - String
55
> * *responseCode*  - String
56
> * *status*        - String
57
> * *msg*           - String
58
> * *sex*           - String
59
> * *area*          - String
60
> * *province*      - String
61
> * *city*          - String
62
> * *prefecture*    - String
63
> * *birthday*      - String
64
> * *addrCode*      - String
65
> * *lastCode*      - String
66
67
68
69
70
71
72
73