forked from binarywang/WxJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
weixin-java-channel/src/main/java/me/chanjar/weixin/channel/bean/order/TelNumberExtInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package me.chanjar.weixin.channel.bean.order; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import lombok.Data; | ||
|
||
/** | ||
* 联系方式信息 | ||
* | ||
* @author <a href="https://github.com/imyzt">imyzt</a> | ||
*/ | ||
@Data | ||
public class TelNumberExtInfo { | ||
|
||
/** | ||
* 脱敏手机号 | ||
*/ | ||
@JsonProperty("real_tel_number") | ||
private String realTelNumber; | ||
|
||
/** | ||
* 完整的虚拟号码 | ||
*/ | ||
@JsonProperty("virtual_tel_number") | ||
private String virtualTelNumber; | ||
|
||
/** | ||
* 主动兑换的虚拟号码过期时间 | ||
*/ | ||
@JsonProperty("virtual_tel_expire_time") | ||
private Long virtualTelExpireTime; | ||
|
||
/** | ||
* 主动兑换虚拟号码次数 | ||
*/ | ||
@JsonProperty("get_virtual_tel_cnt") | ||
private Long getVirtualTelCnt; | ||
} |