Skip to content

Commit 9554336

Browse files
committed
init
1 parent 73c3c7c commit 9554336

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

module-jt808/src/main/java/com/springboot/demo/communication/jt808/vo/Session.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class Session {
2121
// 客户端上次的连接时间,该值改变的情况:
2222
// 1. terminal --> server 心跳包
2323
// 2. terminal --> server 数据包
24-
private long lastCommunicateTimeStamp = 0l;
24+
private long lastCommunicateTimeStamp = 0L;
2525

2626
public Session() {
2727
}

module-web/src/main/java/com/yang/springboot/controller/OAuthController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
@RestController
1515
@Slf4j
1616
@RequestMapping(value = "/web/oauth2")
17-
@Api(tags = "测试用", description = "测试用")
17+
@Api(tags = "测试用")
1818
public class OAuthController {
1919

2020
@GetMapping("/order/{id}")

module-web/src/main/java/com/yang/springboot/controller/WaybillController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
@RestController
3333
@Slf4j
3434
@RequestMapping(value = "/web/neo/waybill")
35-
@Api(tags = "运单管理", description = "运单管理")
35+
@Api(tags = "运单管理")
3636
public class WaybillController {
3737
@Resource
3838
private WaybillService waybillService;

0 commit comments

Comments
 (0)