Commit 538d9a46 by jianan

Fna接口27

parent 633f5e44
......@@ -183,6 +183,12 @@ public class CustomerAddRequest implements Serializable {
@Schema(description = "国籍 (国家/地区)", requiredMode = Schema.RequiredMode.REQUIRED)
private String country;
/**
* 国籍 (国家/地区) 名称
*/
@Schema(description = "国籍 (国家/地区) 名称")
private String countryName;
// region 客户扩展信息
/**
......
......@@ -178,6 +178,7 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper, Customer>
}
Map<String, Object> map = new HashMap<>();
map.put("customerBizId", customer.getCustomerBizId());
map.put("countryName", customerAddRequest.getCountryName());
return map;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment