添加同步同程订单接口

This commit is contained in:
dengwc 2024-02-06 15:21:12 +08:00
parent 2e0e666e99
commit 6d829e2b5c
3 changed files with 24 additions and 16 deletions

View File

@ -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;
}

View File

@ -9,20 +9,4 @@ import java.util.List;
public class HotelListVo {
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方法
}
}
}

View File

@ -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;
}