Commit cb5826ee by jianan

Fna接口28

parent 538d9a46
...@@ -172,6 +172,11 @@ public class Customer implements Serializable { ...@@ -172,6 +172,11 @@ public class Customer implements Serializable {
private String country; private String country;
/** /**
* 国家名称
*/
private String countryName;
/**
* 通用备注 * 通用备注
*/ */
private String remark; private String remark;
......
...@@ -178,7 +178,6 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper, Customer> ...@@ -178,7 +178,6 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper, Customer>
} }
Map<String, Object> map = new HashMap<>(); Map<String, Object> map = new HashMap<>();
map.put("customerBizId", customer.getCustomerBizId()); map.put("customerBizId", customer.getCustomerBizId());
map.put("countryName", customerAddRequest.getCountryName());
return map; return map;
} }
......
...@@ -196,6 +196,12 @@ public class CustomerVO implements Serializable { ...@@ -196,6 +196,12 @@ public class CustomerVO implements Serializable {
private String country; private String country;
/** /**
* 国家名称
*/
@Schema(description = "国家名称")
private String countryName;
/**
* 创建时间 * 创建时间
*/ */
@Schema(description = "创建时间") @Schema(description = "创建时间")
......
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