Commit 5e3c8af1 by 张晓

技术员技能组织调试

1 parent c6d28c61
...@@ -115,8 +115,11 @@ public class SolveServiceImpl implements SolveService { ...@@ -115,8 +115,11 @@ public class SolveServiceImpl implements SolveService {
Depot depot = new Depot(engineer.getId(), engineer.getEngineerCode(), location, 60 * 8, 60 * 18); Depot depot = new Depot(engineer.getId(), engineer.getEngineerCode(), location, 60 * 8, 60 * 18);
depotList.add(depot); depotList.add(depot);
log.info("组织问题对象, groupId:{}, batchNo:{}, engineer-code:{}", groupId, batchNo, engineer.getEngineerCode());
List<String> skillList = queryEngineerSkills(engineer.getEngineerCode()); List<String> skillList = queryEngineerSkills(engineer.getEngineerCode());
log.info("组织问题对象, groupId:{}, batchNo:{}, engineer-code:{} , skills:{}", groupId, batchNo, engineer.getEngineerCode(), String.join(";",skillList));
// 距离偏好map // 距离偏好map
Map<String, Long> preferedLoctionDistanceMap = new HashMap<String, Long>(); Map<String, Long> preferedLoctionDistanceMap = new HashMap<String, Long>();
customerList.forEach(customer -> { customerList.forEach(customer -> {
......
...@@ -32,6 +32,11 @@ spring: ...@@ -32,6 +32,11 @@ spring:
password: 12345678 password: 12345678
type: com.alibaba.druid.pool.DruidDataSource type: com.alibaba.druid.pool.DruidDataSource
jpa:
show-sql: true
hibernate:
ddl-auto: none
seata: seata:
application-id: ${spring.application.name} application-id: ${spring.application.name}
tx-service-group: ${spring.application.name}-group tx-service-group: ${spring.application.name}-group
......
...@@ -31,6 +31,11 @@ spring: ...@@ -31,6 +31,11 @@ spring:
password: 123456 password: 123456
type: com.alibaba.druid.pool.DruidDataSource type: com.alibaba.druid.pool.DruidDataSource
jpa:
show-sql: true
hibernate:
ddl-auto: none
seata: seata:
application-id: ${spring.application.name} application-id: ${spring.application.name}
tx-service-group: ${spring.application.name}-group tx-service-group: ${spring.application.name}-group
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!