判断一个status的状态,如果状态为1开始计时,并将时间存入数据库,请问该怎么做?
// 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)