Browse Source

地理编码工具

lighter 2 years ago
parent
commit
08d3dc804c

+ 77 - 0
src/main/java/thyyxxk/webserver/entity/markmtfees/EcTokenParams.java

@@ -0,0 +1,77 @@
+package thyyxxk.simzfeeoprnsystm.pojo.onlinepayment;
+
+import lombok.Data;
+
+@Data
+public class EcTokenParams {
+
+    /**
+     * 操作员ID
+     * */
+    private String staffId;
+
+    /**
+     * 门诊ID
+     */
+    private String patientId;
+
+    /**
+     * 就诊次数
+     */
+    private Integer times;
+
+    /**
+     * 用户姓名
+     */
+    private String userName;
+
+    /**
+     * 证件号码
+     */
+    private String idNo;
+
+    /**
+     * 证件类型
+     */
+    private String idType;
+
+    /**
+     * 身份核验令牌
+     */
+    private String ecToken;
+
+    /**
+     * 参保地行政区划
+     */
+    private String insuOrg;
+
+    /**
+     * 授权流水号
+     */
+    private String authNo;
+
+    /**
+     * 外部索引号
+     */
+    private String ecIndexNo;
+
+    /**
+     * 性别
+     */
+    private String gender;
+
+    /**
+     * 出生日期
+     */
+    private String birthday;
+
+    /**
+     * 国籍
+     */
+    private String nationality;
+
+    /**
+     * 电子邮箱
+     */
+    private String email;
+}

+ 1 - 1
src/main/java/thyyxxk/webserver/utils/BaiduMapGeocoderUtil.java

@@ -19,7 +19,7 @@ public class BaiduMapGeocoderUtil {
     /**
      * 百度地图 Api调用相关的百度AK
      */
-    public final static String BAIDU_MAP_AK = "1AHRtXQ262qbxqBj7tTmFRn4r61jmTSz";
+    public final static String BAIDU_MAP_AK = "10rlflGd5szufZSPSrn59FYYxBkl2voy";
 
     public static JSONObject getAddressInfoByLngAndLat(String rawAddress){
         String[] points = getlocation(rawAddress);