Commit afdd1ef36f4490aa150afd2015b249b03d565c65
1 parent
1a30b3f9
kafka推送加lineId
Showing
2 changed files
with
10 additions
and
0 deletions
src/main/java/com/example/demo/model/TJRL.java
| ... | ... | @@ -48,6 +48,7 @@ public class TJRL implements Cloneable { |
| 48 | 48 | private String ACTUAL_ARRIVE_TIME;// VARCHAR2(100) Y 实际到达时间实际到达时间 |
| 49 | 49 | private String TRAD_ID; |
| 50 | 50 | private String COUNT;//计数器 |
| 51 | + private String lineId; | |
| 51 | 52 | public TJRL(){ |
| 52 | 53 | |
| 53 | 54 | } |
| ... | ... | @@ -391,4 +392,12 @@ public class TJRL implements Cloneable { |
| 391 | 392 | public Object clone() throws CloneNotSupportedException { |
| 392 | 393 | return super.clone(); |
| 393 | 394 | } |
| 395 | + | |
| 396 | + public String getLineId() { | |
| 397 | + return lineId; | |
| 398 | + } | |
| 399 | + | |
| 400 | + public void setLineId(String lineId) { | |
| 401 | + this.lineId = lineId; | |
| 402 | + } | |
| 394 | 403 | } | ... | ... |
src/main/java/com/example/demo/service/Contrast.java