|
@@ -66,8 +66,8 @@ public class IndexController extends BaseController {
|
|
|
String gtClientId = equipmentVo.getGtClientId();
|
|
|
String netWorkingMode = equipmentVo.getNetWorkingMode();
|
|
|
String odorConcentration = equipmentVo.getOdorConcentration();
|
|
|
- String cleaner = equipmentVo.getCleaner();
|
|
|
- String disinfectant = equipmentVo.getDisinfectant();
|
|
|
+ Integer cleaner = equipmentVo.getCleaner();
|
|
|
+ Integer disinfectant = equipmentVo.getDisinfectant();
|
|
|
Long peopleCounting = equipmentVo.getPeopleCounting();
|
|
|
//有记录,则进行修改
|
|
|
Equipment _new = equipmentService.findByClientId(clientId);
|
|
@@ -82,7 +82,6 @@ public class IndexController extends BaseController {
|
|
|
_new.setLatitude(latitude);
|
|
|
_new.setGtClientId(gtClientId);
|
|
|
_new.setOdorConcentration(odorConcentration);
|
|
|
- _new.setOdorConcentration(odorConcentration);
|
|
|
_new.setCleaner(cleaner);
|
|
|
_new.setDisinfectant(disinfectant);
|
|
|
_new.setPeopleCounting(peopleCounting);
|