修改编译版本
This commit is contained in:
parent
2ccc93fdd9
commit
365daab0fe
|
@ -3,9 +3,11 @@ package com.chint.application.commands;
|
|||
import com.chint.domain.value_object.FinishLegData;
|
||||
import com.chint.infrastructure.echo_framework.command.Command;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import static com.chint.infrastructure.constant.Constant.LEG_EVENT_FINISH;
|
||||
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Data
|
||||
public class LegFinishedCommand extends Command {
|
||||
private final Integer legEventType = LEG_EVENT_FINISH;
|
||||
|
|
|
@ -3,7 +3,9 @@ package com.chint.application.commands;
|
|||
import com.chint.domain.value_object.UserLoginParam;
|
||||
import com.chint.infrastructure.echo_framework.command.Command;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Data
|
||||
public class OrderCreateCommand extends Command {
|
||||
private UserLoginParam loginParam;
|
||||
|
|
|
@ -53,6 +53,7 @@ public class CTripEstimatePrice implements EstimatePrice {
|
|||
|
||||
@Override
|
||||
public FlightPriceData queryFlightPrice(PriceQueryData priceQueryData) {
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,7 +2,9 @@ package com.chint.domain.value_object;
|
|||
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Data
|
||||
public class OrderQueryData extends BaseQuery {
|
||||
private Long routeId;
|
||||
|
|
|
@ -2,9 +2,11 @@ package com.chint.interfaces.rest.ly.dto.search.response.hotel;
|
|||
|
||||
import com.chint.interfaces.rest.ly.dto.LYBaseResponse;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Data
|
||||
public class HotelListResponse extends LYBaseResponse {
|
||||
private List<HotelOrder> orderList;
|
||||
|
|
Loading…
Reference in New Issue