[Taxi Passenger v1.1.0] taxi-p orderNo调整

This commit is contained in:
wangmingjun
2022-03-14 15:02:37 +08:00
parent 9c76bdbff1
commit 6b5f0aafd0

View File

@@ -72,7 +72,7 @@ public class TaxiPassengerOrderQueryRespBean extends BaseData {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Result result = (Result) o;
return orderNo == result.orderNo &&
return Objects.equals(orderNo, result.orderNo) &&
orderType == result.orderType &&
orderStatus == result.orderStatus &&
businessType == result.businessType;