doum
2025-12-30 b840d845ce448613d7b9faf4bd12e0f8c93c389b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.doumee.core.tsp;
 
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
 
import java.util.List;
 
@Slf4j
@Data
public class DistanceCustomerSimpleModel {
     private long distance;
     private List<String> locations;
     private String polyline;
     private Integer startId;
     private Integer endId;
 
}