feat(quotation): 新增联系信息字段

- 在QuotationGenerateRequest中增加联系人、联系方式、联系邮箱和国家/地区字段
- 在QuotationShoppingOrder中增加联系人、联系方式、联系邮箱和国家/地区字段
- 为新增字段添加了对应的注释说明
This commit is contained in:
曹鹏飞 2026-05-15 14:06:01 +08:00
parent d751e6dbd3
commit f3306d713e
2 changed files with 40 additions and 0 deletions

View File

@ -57,4 +57,24 @@ public class QuotationGenerateRequest {
* 备注 * 备注
*/ */
private String remark; private String remark;
/**
* 联系人
*/
private String contactPerson;
/**
* 联系方式
*/
private String contactInformation;
/**
* 联系邮箱
*/
private String contactEmail;
/**
* 国家/地区
*/
private String contactCountry;
} }

View File

@ -135,4 +135,24 @@ public class QuotationShoppingOrder implements Serializable {
* 备注 * 备注
*/ */
private String remark; private String remark;
/**
* 联系人
*/
private String contactPerson;
/**
* 联系方式
*/
private String contactInformation;
/**
* 联系邮箱
*/
private String contactEmail;
/**
* 国家/地区
*/
private String contactCountry;
} }