From c5d51d30305bd402673745cea1abce9fd1c4b443 Mon Sep 17 00:00:00 2001
From: czt <czt18638530771@163.com>
Date: 星期一, 11 十一月 2024 11:52:57 +0800
Subject: [PATCH] 上海接口升级调整V3.0

---
 src/main/java/com/fzzy/push/nx2023/dto/Nx2023Api1507.java |   77 +++++++++++++++++++++++++-------------
 1 files changed, 50 insertions(+), 27 deletions(-)

diff --git a/src/main/java/com/fzzy/push/nx2023/dto/Nx2023Api1507.java b/src/main/java/com/fzzy/push/nx2023/dto/Nx2023Api1507.java
index 8d005d2..0eaae8a 100644
--- a/src/main/java/com/fzzy/push/nx2023/dto/Nx2023Api1507.java
+++ b/src/main/java/com/fzzy/push/nx2023/dto/Nx2023Api1507.java
@@ -2,6 +2,7 @@
 
 import com.alibaba.fastjson.annotation.JSONField;
 import com.bstek.dorado.annotation.PropertyDef;
+import com.fasterxml.jackson.annotation.JsonProperty;
 import lombok.Data;
 
 import java.io.Serializable;
@@ -15,89 +16,111 @@
 @Data
 public class Nx2023Api1507 implements Serializable {
 
+    @PropertyDef(label = "id")
+    @JSONField(serialize = false)
+    private String id;
+
     @PropertyDef(label = "璐﹀鍙�")
-    private Double nAcctId;
+    @JsonProperty("nAcctId")
+    private String nacctid;
 
     @PropertyDef(label = "鍑瘉绫诲瀷")
-    private String cVKind;
+    @JsonProperty("cVKind")
+    private String cvkind;
 
     @PropertyDef(label = "鏈熼棿")
-    private Double cMon;
+    @JsonProperty("cMon")
+    private Integer cmon;
 
     @PropertyDef(label = "骞村害")
-    private Double cYear;
+    @JsonProperty("cYear")
+    private Integer cyear;
 
     @PropertyDef(label = "鍑瘉鍙�")
-    private Double nVNo;
+    @JsonProperty("nVNo")
+    private Integer nvno;
 
     @PropertyDef(label = "鍒嗗綍搴忓彿")
-    private Double nNo;
-
-    @PropertyDef(label = "鍑瘉鍒嗙被")
-    private Double bTmp;
+    @JsonProperty("nNo")
+    private Integer nno;
 
     @PropertyDef(label = "鎽樿")
-    private String Digest;
+    @JsonProperty("Digest")
+    private String digest;
 
     @PropertyDef(label = "绉戠洰缂栫爜")
-    private Double cCode;
+    @JsonProperty("cCode")
+    private String ccode;
 
     @JSONField(format = "yyyy-MM-dd")
     @PropertyDef(label = "鍑瘉鏃ユ湡")
-    private String cVSmallDatetime;
+    @JsonProperty("cVSmallDatetime")
+    private Date ccsmalldatetime;
 
     @PropertyDef(label = "鍒跺崟浜�")
-    private String cMaker;
+    @JsonProperty("cMaker")
+    private String cmaker;
     /**
      * 1:鍊熸柟
      * -1:璐锋柟
      */
     @PropertyDef(label = "鏂瑰悜")
-    private String cDc;
+    @JsonProperty("cDc")
+    private Integer cdc;
 
     @PropertyDef(label = "瀹℃牳浜�")
-    private String cCkEr;
+    @JsonProperty("cCkEr")
+    private String ccker;
 
     @PropertyDef(label = "璁拌处浜�")
-    private String cPtEr;
+    @JsonProperty("cPtEr")
+    private String cpter;
     /**
      * 0:鍚�
      * 1:鏄�
      */
     @PropertyDef(label = "璁拌处鏍囧織")
-    private Double bPt;
+    @JsonProperty("bPt")
+    private Integer bpt;
 
     @PropertyDef(label = "闄勪欢寮犳暟")
-    private Double nANum;
+    @JsonProperty("nANum")
+    private Integer nanum;
 
     @PropertyDef(label = "閲戦")
-    private Double nM;
+    @JsonProperty("nM")
+    private Double nm;
 
     @PropertyDef(label = "鏁伴噺")
-    private Double nQty;
+    @JsonProperty("nQty")
+    private Double nqty;
 
     @PropertyDef(label = "鍗曚环")
-    private Double nPrice;
-
-    @PropertyDef(label = "缁撶畻鍙�")
-    private String cSettleNo;
+    @JsonProperty("nPrice")
+    private Double nprice;
 
     @PropertyDef(label = "鍑虹撼")
-    private String cCashier;
+    @JsonProperty("cCashier")
+    private String ccashier;
 
     @PropertyDef(label = "姹囩巼")
+    @JsonProperty("rate")
     private Double rate;
 
     @PropertyDef(label = "澶栧竵閲戦")
-    private Double nFm;
+    @JsonProperty("nFm")
+    private Double nfm;
 
     @PropertyDef(label = "璁¢噺鍗曚綅",description = "璁¢噺鍗曚綅姹夊瓧")
-    private String meterUnitId;
+    @JsonProperty("meterUnitId")
+    private String meterunitid;
 
     @PropertyDef(label = "鎿嶄綔鏍囧織")
+    @JsonProperty("czbz")
     private String czbz;
 
     @JSONField(format = "yyyy-MM-dd HH:mm:ss")
     @PropertyDef(label = "鏈�鍚庢洿鏂版椂闂�")
+    @JsonProperty("zhgxsj")
     private Date zhgxsj;
 }

--
Gitblit v1.9.3