修复地点缓存未标记缓存id的问题
This commit is contained in:
parent
c837b131ac
commit
bf21d7bb37
|
@ -5,13 +5,17 @@ import com.chint.domain.aggregates.order.Location;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import org.springframework.data.annotation.Id;
|
import org.springframework.data.annotation.Id;
|
||||||
|
|
||||||
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
import static com.chint.infrastructure.constant.LocationConstant.LOCATION_TYPE_AIRPORT;
|
import static com.chint.infrastructure.constant.LocationConstant.LOCATION_TYPE_AIRPORT;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
public class LocationRes implements Serializable {
|
public class LocationRes implements Serializable {
|
||||||
@Id
|
|
||||||
|
@Serial
|
||||||
|
private static final long serialVersionUID = -5124060029779702233L;
|
||||||
|
|
||||||
private Long locationId;
|
private Long locationId;
|
||||||
private String locationName;
|
private String locationName;
|
||||||
private String continent;
|
private String continent;
|
||||||
|
|
Loading…
Reference in New Issue