|
|
@@ -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();
|
|
|
}
|
|
|
|
|
|
}
|