Commit b317c6ec authored by liqin's avatar liqin 💬

bug fixed

parent 40701acb
...@@ -154,7 +154,7 @@ public class ChinaMobileRestApiController extends BaseController { ...@@ -154,7 +154,7 @@ public class ChinaMobileRestApiController extends BaseController {
public Map<String, Object> getActivity(@RequestParam(required = true) String mac) { public Map<String, Object> getActivity(@RequestParam(required = true) String mac) {
try { try {
UpdateWrapper<TBoxOperation> wrapper = new UpdateWrapper<>(); UpdateWrapper<TBoxOperation> wrapper = new UpdateWrapper<>();
wrapper.eq("mac", mac); wrapper.eq("mac", mac.toUpperCase());
TBoxOperation one = boxOperationService.getOne(wrapper); TBoxOperation one = boxOperationService.getOne(wrapper);
HashMap<Object, Object> map = new HashMap<>(); HashMap<Object, Object> map = new HashMap<>();
map.put("activityStatus", false); map.put("activityStatus", false);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment