修改编译版本

This commit is contained in:
lulz1 2024-02-18 21:03:41 +08:00
parent 2ccc93fdd9
commit 365daab0fe
5 changed files with 9 additions and 0 deletions

View File

@ -3,9 +3,11 @@ package com.chint.application.commands;
import com.chint.domain.value_object.FinishLegData; import com.chint.domain.value_object.FinishLegData;
import com.chint.infrastructure.echo_framework.command.Command; import com.chint.infrastructure.echo_framework.command.Command;
import lombok.Data; import lombok.Data;
import lombok.EqualsAndHashCode;
import static com.chint.infrastructure.constant.Constant.LEG_EVENT_FINISH; import static com.chint.infrastructure.constant.Constant.LEG_EVENT_FINISH;
@EqualsAndHashCode(callSuper = true)
@Data @Data
public class LegFinishedCommand extends Command { public class LegFinishedCommand extends Command {
private final Integer legEventType = LEG_EVENT_FINISH; private final Integer legEventType = LEG_EVENT_FINISH;

View File

@ -3,7 +3,9 @@ package com.chint.application.commands;
import com.chint.domain.value_object.UserLoginParam; import com.chint.domain.value_object.UserLoginParam;
import com.chint.infrastructure.echo_framework.command.Command; import com.chint.infrastructure.echo_framework.command.Command;
import lombok.Data; import lombok.Data;
import lombok.EqualsAndHashCode;
@EqualsAndHashCode(callSuper = true)
@Data @Data
public class OrderCreateCommand extends Command { public class OrderCreateCommand extends Command {
private UserLoginParam loginParam; private UserLoginParam loginParam;

View File

@ -53,6 +53,7 @@ public class CTripEstimatePrice implements EstimatePrice {
@Override @Override
public FlightPriceData queryFlightPrice(PriceQueryData priceQueryData) { public FlightPriceData queryFlightPrice(PriceQueryData priceQueryData) {
return null; return null;
} }
} }

View File

@ -2,7 +2,9 @@ package com.chint.domain.value_object;
import lombok.Data; import lombok.Data;
import lombok.EqualsAndHashCode;
@EqualsAndHashCode(callSuper = true)
@Data @Data
public class OrderQueryData extends BaseQuery { public class OrderQueryData extends BaseQuery {
private Long routeId; private Long routeId;

View File

@ -2,9 +2,11 @@ package com.chint.interfaces.rest.ly.dto.search.response.hotel;
import com.chint.interfaces.rest.ly.dto.LYBaseResponse; import com.chint.interfaces.rest.ly.dto.LYBaseResponse;
import lombok.Data; import lombok.Data;
import lombok.EqualsAndHashCode;
import java.util.List; import java.util.List;
@EqualsAndHashCode(callSuper = true)
@Data @Data
public class HotelListResponse extends LYBaseResponse { public class HotelListResponse extends LYBaseResponse {
private List<HotelOrder> orderList; private List<HotelOrder> orderList;