Эх сурвалжийг харах

1、增加中煤归属配置【统计】字段

ligang134 3 жил өмнө
parent
commit
05fc72be6e

+ 4 - 0
src/main/java/com/ydtech/modules/order/entity/api/zm/request/QuotedPriceRequest.java

@@ -129,11 +129,15 @@ public class QuotedPriceRequest extends BaseRequest {
             private String city;
             @JsonProperty("district")
             private String district;
+            //2023-08-29 lig 添加   解决统计字段无法传入问题
+            @JsonProperty("accountUser")
+            private String accountUser;
 
             public PolicyLocationDTO(ZmConfigureParameters zmConfigureParameters) {
                 this.province = zmConfigureParameters.getProvince();
                 this.city = zmConfigureParameters.getCity();
                 this.district = zmConfigureParameters.getDistrict();
+                this.accountUser = zmConfigureParameters.getAccountUser();
             }
 
         }

+ 5 - 0
src/main/java/com/ydtech/modules/order/entity/config/ZmConfigureParameters.java

@@ -35,4 +35,9 @@ public class ZmConfigureParameters implements ConfigureParameters {
      * 县
      */
     private String district;
+
+    /**
+     * 统计   2023-08-29 lig 添加
+     */
+    private String accountUser;
 }