修改b562解状态定义,和gnss模块定义保持一致

This commit is contained in:
weidong 2023-11-22 11:00:05 +08:00
parent fcc9cd5512
commit 0b4b3fb477

View File

@ -49,7 +49,7 @@ public class WarningServiceImpl implements WarningService {
warningMsg.setDevicetype(WarningCfg.TYPE_GNSS);
warningMsg.setCode(WarningCfg.TYPE_LESS_B562);
warningMsg.setLevel((short) threshold[0]);
warningMsg.setInfo("B562过少,固定解:" + numB562Stat[0] + ",非固定解:"+numB562Stat[1]+"无B562:"+numB562Stat[2]);
warningMsg.setInfo(WarningCfg.TYPE_NAME_LESS_B562+",固定解:" + numB562Stat[0] + ",非固定解:"+numB562Stat[1]+"无B562:"+numB562Stat[2]);
warningMsgMapper.insert(warningMsg);
}
}