2 Commits

3 changed files with 1 additions and 3 deletions
Split View
  1. +0
    -1
      src/main/java/com/binary/weight/service/OrderService.java
  2. +0
    -1
      src/main/java/com/binary/weight/service/SyncService.java
  3. +1
    -1
      src/main/java/com/binary/weight/service/WeightService.java

+ 0
- 1
src/main/java/com/binary/weight/service/OrderService.java View File

@ -1,7 +1,6 @@
package com.binary.weight.service;
import com.binary.weight.entity.Order;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.dao.EmptyResultDataAccessException;
import org.springframework.jdbc.core.BeanPropertyRowMapper;

+ 0
- 1
src/main/java/com/binary/weight/service/SyncService.java View File

@ -32,7 +32,6 @@ public class SyncService {
}
public void sync() {
long start = System.currentTimeMillis();
String sql = "SELECT TOP 1000 * FROM tbl_weight_info WHERE id > ?";
String id = jdbcTemplate.queryForObject("select max(id) from tbl_weight_info", String.class);

+ 1
- 1
src/main/java/com/binary/weight/service/WeightService.java View File

@ -19,7 +19,7 @@ public class WeightService {
private JdbcTemplate jdbcTemplate;
public byte[] getWeightData() {
String sql = "SELECT net, carno, receiver, remark, goods, YEAR(gross_time) as `year`, MONTH(gross_time) as `month`, DAY(gross_time) as `day`, TIME(gross_time) as `time` FROM tbl_weight_info";
String sql = "SELECT net, carNo, receiver, remark, goods, YEAR(gross_time) as `year`, MONTH(gross_time) as `month`, DAY(gross_time) as `day`, TIME(gross_time) as `time`, orderNo, salesTy, shipNo, transportInfo, wharf, car_team as carTeam FROM tbl_weight_info";
if (cache == null) {
ObjectMapper objectMapper = new ObjectMapper();

Loading…
Cancel
Save