|
@@ -2,7 +2,9 @@ package com.ruoyi.visitor.controller;
|
|
|
|
|
|
import com.ruoyi.asset.domain.TbAssetInformation;
|
|
|
import com.ruoyi.asset.service.ITbAssetInformationService;
|
|
|
+import com.ruoyi.asset.service.ITbLocationService;
|
|
|
import com.ruoyi.common.core.controller.BaseController;
|
|
|
+import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
@@ -10,6 +12,7 @@ import org.springframework.web.bind.annotation.PathVariable;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
+import javax.annotation.Resource;
|
|
|
import java.util.List;
|
|
|
|
|
|
@RestController
|
|
@@ -18,6 +21,9 @@ public class VController extends BaseController {
|
|
|
@Autowired
|
|
|
private ITbAssetInformationService tbAssetInformationService;
|
|
|
|
|
|
+ @Resource
|
|
|
+ private ITbLocationService locationService;
|
|
|
+
|
|
|
@GetMapping("/list/{number}")
|
|
|
public TableDataInfo list(@PathVariable("number") String number)
|
|
|
{
|
|
@@ -26,4 +32,15 @@ public class VController extends BaseController {
|
|
|
List<TbAssetInformation> list = tbAssetInformationService.selectInfoList(tbAssetInformation);
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
+
|
|
|
+ /*
|
|
|
+ * 接口:/visitor/location/{number}
|
|
|
+ * */
|
|
|
+ @GetMapping(value = "/location/{number}")
|
|
|
+ public AjaxResult getLocationByNumber(@PathVariable("number") String number)
|
|
|
+ {
|
|
|
+ return success(locationService.selectTbLocationByNumber(number));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|