Commit 78b0511f99244fedaebbe4a4b4094fa9ef26ac8a

Authored by 徐烜
2 parents 116c8c44 047e4802

Merge branch 'minhang' of http://222.66.0.204:8090/panzhaov5/bsth_control into minhang

Too many changes to show.

To preserve performance only 2 of 23 files are displayed.

src/main/java/com/bsth/data/arrival/ArrivalData_GPS.java
... ... @@ -50,8 +50,8 @@ public class ArrivalData_GPS implements CommandLineRunner{
50 50  
51 51 @Override
52 52 public void run(String... arg0) throws Exception {
53   - logger.info("ArrivalData_GPS,100,10 @11-10");
54   - //Application.mainServices.scheduleWithFixedDelay(dataLoaderThread, 100, 10, TimeUnit.SECONDS);
  53 + logger.info("ArrivalData_GPS,30,10");
  54 + //Application.mainServices.scheduleWithFixedDelay(dataLoaderThread, 40, 10, TimeUnit.SECONDS);
55 55 }
56 56  
57 57 @Component
... ...
src/main/java/com/bsth/service/realcontrol/dto/ScheduleExecRate.java
1   -package com.bsth.service.realcontrol.dto;
2   -
3   -/**
4   - * 班次执行率DTO
5   - * Created by panzhao on 2016/11/14.
6   - */
7   -public class ScheduleExecRate {
8   -
9   - private long id;
10   - private String dfsj;
11   - private String fcsjActual;
12   - private String zdsj;
13   - private String zdsjActual;
14   - private int status;
15   - private String lineCode;
16   -
17   - public long getId() {
18   - return id;
19   - }
20   -
21   - public void setId(long id) {
22   - this.id = id;
23   - }
24   -
25   - public String getDfsj() {
26   - return dfsj;
27   - }
28   -
29   - public void setDfsj(String dfsj) {
30   - this.dfsj = dfsj;
31   - }
32   -
33   - public String getFcsjActual() {
34   - return fcsjActual;
35   - }
36   -
37   - public void setFcsjActual(String fcsjActual) {
38   - this.fcsjActual = fcsjActual;
39   - }
40   -
41   - public String getZdsj() {
42   - return zdsj;
43   - }
44   -
45   - public void setZdsj(String zdsj) {
46   - this.zdsj = zdsj;
47   - }
48   -
49   - public String getZdsjActual() {
50   - return zdsjActual;
51   - }
52   -
53   - public void setZdsjActual(String zdsjActual) {
54   - this.zdsjActual = zdsjActual;
55   - }
56   -
57   - public int getStatus() {
58   - return status;
59   - }
60   -
61   - public void setStatus(int status) {
62   - this.status = status;
63   - }
64   -
65   - public String getLineCode() {
66   - return lineCode;
67   - }
68   -
69   - public void setLineCode(String lineCode) {
70   - this.lineCode = lineCode;
71   - }
72   -}
  1 +package com.bsth.service.realcontrol.dto;
  2 +
  3 +/**
  4 + * 班次执行率DTO
  5 + * Created by panzhao on 2016/11/14.
  6 + */
  7 +public class ScheduleExecRate {
  8 +
  9 + private long id;
  10 + private String dfsj;
  11 + private String fcsjActual;
  12 + private String zdsj;
  13 + private String zdsjActual;
  14 + private int status;
  15 + private String lineCode;
  16 +
  17 + public long getId() {
  18 + return id;
  19 + }
  20 +
  21 + public void setId(long id) {
  22 + this.id = id;
  23 + }
  24 +
  25 + public String getDfsj() {
  26 + return dfsj;
  27 + }
  28 +
  29 + public void setDfsj(String dfsj) {
  30 + this.dfsj = dfsj;
  31 + }
  32 +
  33 + public String getFcsjActual() {
  34 + return fcsjActual;
  35 + }
  36 +
  37 + public void setFcsjActual(String fcsjActual) {
  38 + this.fcsjActual = fcsjActual;
  39 + }
  40 +
  41 + public String getZdsj() {
  42 + return zdsj;
  43 + }
  44 +
  45 + public void setZdsj(String zdsj) {
  46 + this.zdsj = zdsj;
  47 + }
  48 +
  49 + public String getZdsjActual() {
  50 + return zdsjActual;
  51 + }
  52 +
  53 + public void setZdsjActual(String zdsjActual) {
  54 + this.zdsjActual = zdsjActual;
  55 + }
  56 +
  57 + public int getStatus() {
  58 + return status;
  59 + }
  60 +
  61 + public void setStatus(int status) {
  62 + this.status = status;
  63 + }
  64 +
  65 + public String getLineCode() {
  66 + return lineCode;
  67 + }
  68 +
  69 + public void setLineCode(String lineCode) {
  70 + this.lineCode = lineCode;
  71 + }
  72 +}
... ...