Commit 09c113ee authored by yanghao's avatar yanghao

Merge branch '_dev_yh' into dev

parents f2920c14 83fff53a
...@@ -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,
......
...@@ -325,9 +325,11 @@ public class OrderBackPageVO { ...@@ -325,9 +325,11 @@ public class OrderBackPageVO {
private Date inTime; private Date inTime;
@ApiModelProperty(value = "已装柜时间/到仓时间") @ApiModelProperty(value = "已装柜时间/到仓时间")
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
@JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private Date loadTime; private Date loadTime;
@ApiModelProperty(value = "已卸柜/已到仓时间") @ApiModelProperty(value = "已卸柜/仓时间")
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
@JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) @JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private Date unloadTime; private Date unloadTime;
......
...@@ -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