|  |  | 
 |  |  |         excludeTrash(param); | 
 |  |  |         convert(param, wrapper); | 
 |  |  |         allLike(BasStation.class, param.keySet(), wrapper, condition); | 
 |  |  |         if (!Cools.isEmpty(orderByField)){wrapper.orderBy(humpToLine(orderByField), "asc".equals(orderByType));} | 
 |  |  |         if (!Cools.isEmpty(orderByField)) { | 
 |  |  |             wrapper.orderBy(humpToLine(orderByField), "asc".equals(orderByType)); | 
 |  |  |         } | 
 |  |  |         return R.ok(basStationService.selectPage(new Page<>(curr, limit), wrapper)); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | 
 |  |  |     @RequestMapping(value = "/basStation/add/auth") | 
 |  |  |     @ManagerAuth | 
 |  |  |     public R add(BasStation basStation) { | 
 |  |  |         basStation.setAppeUser(getUserId()); | 
 |  |  |         basStation.setModiUser(getUserId()); | 
 |  |  |         basStation.setIoTime(new Date()); | 
 |  |  |         basStation.setId(null); | 
 |  |  |         basStationService.insert(basStation); | 
 |  |  |         return R.ok(); | 
 |  |  |     } |