Commit d62a178 1 parent e0c33ea commit d62a178 Copy full SHA for d62a178
File tree 6 files changed +14
-8
lines changed
src/main/java/cn/jiguang/sdk/bean
6 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 14
14
## 1. 集成
15
15
引入sdk包
16
16
``` xml
17
- <!-- 以5.0.8版本为例 -->
17
+ <!-- 以5.0.9版本为例 -->
18
18
<dependencies >
19
19
<!-- jiguang-sdk -->
20
20
<dependency >
21
21
<groupId >io.github.jpush</groupId >
22
22
<artifactId >jiguang-sdk</artifactId >
23
- <version >5.0.8 </version >
23
+ <version >5.0.9 </version >
24
24
</dependency >
25
25
</dependencies >
26
26
```
Original file line number Diff line number Diff line change 13
13
14
14
<groupId >io.github.jpush</groupId >
15
15
<artifactId >example-for-spring</artifactId >
16
- <version >5.0.8 </version >
16
+ <version >5.0.9 </version >
17
17
18
18
<properties >
19
19
<maven .compiler.source>8</maven .compiler.source>
26
26
<dependency >
27
27
<groupId >io.github.jpush</groupId >
28
28
<artifactId >jiguang-sdk</artifactId >
29
- <version >5.0.8 </version >
29
+ <version >5.0.9 </version >
30
30
</dependency >
31
31
<!-- lombok -->
32
32
<dependency >
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >io.github.jpush</groupId >
9
9
<artifactId >jiguang-sdk-java</artifactId >
10
- <version >5.0.8 </version >
10
+ <version >5.0.9 </version >
11
11
<relativePath >../pom.xml</relativePath >
12
12
</parent >
13
13
14
14
<groupId >io.github.jpush</groupId >
15
15
<artifactId >jiguang-sdk</artifactId >
16
- <version >5.0.8 </version >
16
+ <version >5.0.9 </version >
17
17
<packaging >jar</packaging >
18
18
19
19
<properties >
Original file line number Diff line number Diff line change 1
1
package cn .jiguang .sdk .bean .device ;
2
2
3
+ import com .fasterxml .jackson .annotation .JsonInclude ;
3
4
import com .fasterxml .jackson .annotation .JsonProperty ;
4
5
import lombok .Data ;
5
6
9
10
public class DeviceSetParam {
10
11
11
12
@ JsonProperty ("tags" )
13
+ @ JsonInclude (JsonInclude .Include .NON_NULL )
12
14
private Tags tags ;
13
15
14
16
@ JsonProperty ("alias" )
17
+ @ JsonInclude (JsonInclude .Include .NON_NULL )
15
18
private String alias ;
16
19
17
20
@ JsonProperty ("mobile" )
21
+ @ JsonInclude (JsonInclude .Include .NON_NULL )
18
22
private String mobile ;
19
23
20
24
@ Data
21
25
public static class Tags {
22
26
@ JsonProperty ("add" )
27
+ @ JsonInclude (JsonInclude .Include .NON_NULL )
23
28
private List <String > add ;
24
29
25
30
@ JsonProperty ("remove" )
31
+ @ JsonInclude (JsonInclude .Include .NON_NULL )
26
32
private List <String > remove ;
27
33
}
28
34
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public class ReceivedDetailGetResult {
29
29
@ JsonProperty ("ios_msg_received" )
30
30
private Long iosMsgReceived ;
31
31
32
- @ JsonProperty ("live_acivity_send " )
32
+ @ JsonProperty ("live_acivity_sent " )
33
33
private Long liveAcivitySent ;
34
34
35
35
@ JsonProperty ("live_acivity_received" )
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >io.github.jpush</groupId >
8
8
<artifactId >jiguang-sdk-java</artifactId >
9
- <version >5.0.8 </version >
9
+ <version >5.0.9 </version >
10
10
<packaging >pom</packaging >
11
11
12
12
<name >Jiguang SDK For Rest Api</name >
You can’t perform that action at this time.
0 commit comments