|
@ -429,6 +429,14 @@ public class ServiceNoLoginEndPoint extends EnvelopRestEndpoint {
|
|
return success(deviceService.findByEquNum(equNum));
|
|
return success(deviceService.findByEquNum(equNum));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@GetMapping(value = BaseRequestMapping.BaseDevice.findDictById)
|
|
|
|
@ApiOperation(value = "根据id获取设备版本号", notes = "根据id获取设备版本号")
|
|
|
|
public Envelop findDictById(
|
|
|
|
@ApiParam(name = "id", value = "字典id", required = true)
|
|
|
|
@RequestParam(value = "id") String id) throws Exception {
|
|
|
|
return success(deviceService.findDictById(id));
|
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = BaseRequestMapping.BaseTown.LIST)
|
|
@GetMapping(value = BaseRequestMapping.BaseTown.LIST)
|
|
@ApiOperation(value = "获取列表")
|
|
@ApiOperation(value = "获取列表")
|
|
public ListEnvelop<BaseTownVO> list (
|
|
public ListEnvelop<BaseTownVO> list (
|