创建数据回推控制层
This commit is contained in:
parent
e5c4b11ec5
commit
e994606496
|
@ -0,0 +1,12 @@
|
|||
package com.chint.application.in;
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* 用车数据回推控制层
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/public/CarBack")
|
||||
public class CarBackController {
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
package com.chint.application.in;
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* 酒店订单数据回推控制层
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/public/hotelBack")
|
||||
public class HotelBackController {
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
package com.chint.application.in;
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* 机票订单数据回推控制层
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/public/ticketBack")
|
||||
public class TicketBackController {
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
package com.chint.application.in;
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* 机票票状推送控制层
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/public/ticketPush")
|
||||
public class TicketPushController {
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
package com.chint.application.in;
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* 火车票订单数据回推控制层
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/public/trainBack")
|
||||
public class TrainBackController {
|
||||
}
|
|
@ -4,6 +4,7 @@ import lombok.AllArgsConstructor;
|
|||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
@AllArgsConstructor
|
||||
|
@ -42,7 +43,7 @@ public class FlightSegment {
|
|||
private String seatName;
|
||||
private String seatDiscount;
|
||||
private String fareBase;
|
||||
private double originalPrice;
|
||||
private BigDecimal originalPrice;
|
||||
private String segmentId;
|
||||
private Integer segmentIndex;
|
||||
private Integer flightTime;
|
||||
|
|
Loading…
Reference in New Issue