|
|
@@ -1,5 +1,6 @@
|
|
|
package com.kym.entity.wechat;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.util.List;
|
|
|
@@ -79,23 +80,28 @@ public class FapiaoApplications {
|
|
|
/**
|
|
|
* 发票代码
|
|
|
*/
|
|
|
+ @JsonProperty("fapiao_code")
|
|
|
private String fapiao_code;
|
|
|
/**
|
|
|
* 发票号码
|
|
|
*/
|
|
|
+ @JsonProperty("fapiao_number")
|
|
|
private String fapiao_number;
|
|
|
/**
|
|
|
* 校验码
|
|
|
*/
|
|
|
+ @JsonProperty("check_code")
|
|
|
private String check_code;
|
|
|
/**
|
|
|
* 发票票面密码区内容
|
|
|
*/
|
|
|
+ @JsonProperty("password")
|
|
|
private String password;
|
|
|
/**
|
|
|
* 开票时间,遵循RFC3339标准格式
|
|
|
* 2020-07-01T12:00:00+08:00
|
|
|
*/
|
|
|
+ @JsonProperty("fapiao_time")
|
|
|
private String fapiao_time;
|
|
|
}
|
|
|
|