Commit 83fff53a authored by yanghao's avatar yanghao

chore: 客户详情报价单返回报价id

parent e7f405a5
...@@ -14,6 +14,9 @@ import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_ ...@@ -14,6 +14,9 @@ import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_
@ApiModel("管理后台 - 客户基本信息客户报价 Response VO") @ApiModel("管理后台 - 客户基本信息客户报价 Response VO")
@Data @Data
public class CustomerOfferBackVo { public class CustomerOfferBackVo {
@ApiModelProperty(value = "报价单ID")
private String offerId;
@ApiModelProperty(value = "报价单号") @ApiModelProperty(value = "报价单号")
private String number; private String number;
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
</select> </select>
<select id="selectCustomerOfferPage" <select id="selectCustomerOfferPage"
resultType="cn.iocoder.yudao.module.customer.vo.customerDetail.CustomerOfferBackVo"> resultType="cn.iocoder.yudao.module.customer.vo.customerDetail.CustomerOfferBackVo">
select t.number as number, select t.offer_id, t.number as number,
t.order_no as order_no, t.order_no as order_no,
s.title_zh as objective_name, s.title_zh as objective_name,
s.title_en as objective_name_en, s.title_en as objective_name_en,
......
...@@ -74,7 +74,7 @@ tenant-id: {{adminTenentId}} ...@@ -74,7 +74,7 @@ tenant-id: {{adminTenentId}}
### 查询前20条 ### 查询前20条
GET {{baseUrl}}/ecw/order/customer-order-page?page=2&customerDetailId=12925 GET {{baseUrl}}/ecw/order/customer-order-page?customerDetailId=41694&rows=10&page=1&pageNo=1&destCountryId%5B0%5D=4174&destCountryId%5B1%5D=4175&objectiveId%5B0%5D=4181&objectiveId%5B1%5D=4184&destWarehouseId%5B0%5D=2&destWarehouseId%5B1%5D=4&destWarehouseId%5B2%5D=6
Authorization: Bearer {{token}} Authorization: Bearer {{token}}
tenant-id: {{adminTenentId}} tenant-id: {{adminTenentId}}
......
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