判断一个status的状态,如果状态为1开始计时,并将时间存入数据库,请问该怎么做?

发布于 2022-09-12 13:16:56 字数 639 浏览 13 评论 0

// If the status is 1, the time will be recorded and stored in the database, MySQL database
if (status == 1) {
 long start = System.currentTimeMillis();
} else if (status != 1) {
 // 具体的实现逻辑
 // If the status is 0, the recording time is stopped and the start time and stop time are intercepted into the database
 // long end = System.currentTimeMillis();
 // 具体的实现逻辑
}
// 数据保存到数据库中
data.setStVal(Integer.valueOf(status));
data.setUpdateTime(new Date());
iec61850DataService.updateById(data);

问题描述

这个需求是需要对一个程序进行的状态进行判定,如果状态为1,就进行计时,格式为:记录时间 2020-11-09 17:25:21,如果状态为0,则停止计时,请各位大佬帮忙想想办法,谢谢

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

因为看清所以看轻 2022-09-19 13:16:56
if (status == 1) {
 data.setStart(System.currentTimeMillis());
} else {
 data.setEnd(System.currentTimeMillis());
}
updateById(data);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文