|
|
@@ -54,7 +54,8 @@ public class TDevicePlanController extends BaseController {
|
|
|
String createTime = String.valueOf(LocalDateTime.now());
|
|
|
long planType = realData.getLongValue("planType");
|
|
|
long status = realData.getLongValue("status");
|
|
|
- long userId = realData.getLongValue("userId");
|
|
|
+ LoginUser loginUser = getLoginUser();
|
|
|
+ Long userId = loginUser.getUserId();
|
|
|
String runTime = realData.getString("runTime");
|
|
|
String ccid = realData.getString("ccid");
|
|
|
LocalDateTime parsedRunTime = null; // 初始化为null
|