添加同步同程订单接口
This commit is contained in:
parent
2e0e666e99
commit
6d829e2b5c
|
@ -0,0 +1,11 @@
|
||||||
|
package com.chint.interfaces.rest.ly.vo.estimateprice;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class HotelInfo {
|
||||||
|
private String hotelId;
|
||||||
|
private List<PriceInfo> priceList;
|
||||||
|
}
|
|
@ -9,20 +9,4 @@ import java.util.List;
|
||||||
public class HotelListVo {
|
public class HotelListVo {
|
||||||
|
|
||||||
private List<HotelInfo> hotelList;
|
private List<HotelInfo> hotelList;
|
||||||
|
|
||||||
@Data
|
|
||||||
public static class HotelInfo {
|
|
||||||
private String hotelId;
|
|
||||||
private List<PriceInfo> priceList;
|
|
||||||
|
|
||||||
// 构造函数、getter和setter方法
|
|
||||||
@Data
|
|
||||||
public static class PriceInfo {
|
|
||||||
private LocalDateTime saleDate;
|
|
||||||
private int paymentType;
|
|
||||||
private double price;
|
|
||||||
|
|
||||||
// 构造函数、getter和setter方法
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
package com.chint.interfaces.rest.ly.vo.estimateprice;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class PriceInfo {
|
||||||
|
private LocalDateTime saleDate;
|
||||||
|
private int paymentType;
|
||||||
|
private double price;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue