From 931afbf9c4216a5a9f784026382cce2270303439 Mon Sep 17 00:00:00 2001
From: CZT <czt18638530771@163.com>
Date: 星期四, 17 八月 2023 19:41:49 +0800
Subject: [PATCH] 调整上海市2023接口架构2
---
src/main/java/com/fzzy/push/gd2022/dto/GDFinanceDto.java | 16 ++++++++++++++--
1 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/src/main/java/com/fzzy/push/gd2022/dto/GDFinanceDto.java b/src/main/java/com/fzzy/push/gd2022/dto/GDFinanceDto.java
index e911122..29b32c2 100644
--- a/src/main/java/com/fzzy/push/gd2022/dto/GDFinanceDto.java
+++ b/src/main/java/com/fzzy/push/gd2022/dto/GDFinanceDto.java
@@ -1,6 +1,7 @@
package com.fzzy.push.gd2022.dto;
import com.bstek.dorado.annotation.PropertyDef;
+import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.io.Serializable;
@@ -19,7 +20,8 @@
private String bbm;
@PropertyDef(label = " 鎸囨爣搴忓彿")
- private String Zbxh;
+ @JsonProperty("Zbxh")
+ private Integer Zbxh;
@PropertyDef(label = " 鎸囨爣鍚嶇О")
private String zbmc;
@@ -36,10 +38,20 @@
@PropertyDef(label = " 鏈�鍚庢洿鏂版椂闂�")
private String zhgxsj;
+ @JsonProperty("Zbxh")
+ public void setZbxh(Integer zbxh) {
+ Zbxh = zbxh;
+ }
+
+ @JsonProperty("Zbxh")
+ public Integer getZbxh() {
+ return Zbxh;
+ }
+
public GDFinanceDto() {
}
- public GDFinanceDto(String zbxh, String zbmc, String zbz1, String zbz2) {
+ public GDFinanceDto(Integer zbxh, String zbmc, String zbz1, String zbz2) {
this.Zbxh = zbxh;
this.zbmc = zbmc;
this.zbz1 = zbz1;
--
Gitblit v1.9.3