|
@@ -1,26 +1,33 @@
|
|
|
package com.huashe.park.application.web.controller.cons;
|
|
|
|
|
|
+import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
+
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
-import com.huashe.common.domain.AjaxResult;
|
|
|
-import com.huashe.park.core.service.IConsPileHoleInfoService;
|
|
|
-import com.huashe.park.domain.entity.ConsPileHoleInfo;
|
|
|
-import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import org.apache.commons.lang3.ObjectUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import org.springframework.web.bind.annotation.DeleteMapping;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.PathVariable;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.PutMapping;
|
|
|
-import org.springframework.web.bind.annotation.DeleteMapping;
|
|
|
-import org.springframework.web.bind.annotation.PathVariable;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import com.huashe.common.domain.AjaxResult;
|
|
|
+import com.huashe.park.core.service.IConsPileHoleInfoService;
|
|
|
+import com.huashe.park.core.service.IMachineProcessService;
|
|
|
+import com.huashe.park.domain.dto.cons.PileRealtimeIndex;
|
|
|
+import com.huashe.park.domain.entity.ConsPileHoleInfo;
|
|
|
+import com.huashe.park.domain.entity.MachineProcess;
|
|
|
import com.ruoyi.common.annotation.Log;
|
|
|
import com.ruoyi.common.core.controller.BaseController;
|
|
|
+import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
import com.ruoyi.common.enums.BusinessType;
|
|
|
import com.ruoyi.common.utils.poi.ExcelUtil;
|
|
|
-import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
|
|
|
/**
|
|
|
* 施工桩点信息Controller
|
|
@@ -30,31 +37,55 @@ import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
*/
|
|
|
@RestController
|
|
|
@RequestMapping("/cons/pileHoleInfo")
|
|
|
-public class ConsPileHoleInfoController extends BaseController
|
|
|
-{
|
|
|
+public class ConsPileHoleInfoController extends BaseController {
|
|
|
@Autowired
|
|
|
private IConsPileHoleInfoService consPileHoleInfoService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private IMachineProcessService machineProcessService;
|
|
|
+
|
|
|
/**
|
|
|
* 查询施工桩点信息列表
|
|
|
*/
|
|
|
@PreAuthorize("@ss.hasPermi('cons:pileHoleInfo:list')")
|
|
|
@GetMapping("/list")
|
|
|
- public TableDataInfo list(ConsPileHoleInfo consPileHoleInfo)
|
|
|
- {
|
|
|
+ public TableDataInfo list(ConsPileHoleInfo consPileHoleInfo) {
|
|
|
startPage();
|
|
|
List<ConsPileHoleInfo> list = consPileHoleInfoService.selectConsPileHoleInfoList(consPileHoleInfo);
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
|
|
|
+ @PreAuthorize("@ss.hasPermi('cons:pileHoleInfo:list')")
|
|
|
+ @GetMapping("/list/realtime/index")
|
|
|
+ public AjaxResult listIndex(ConsPileHoleInfo consPileHoleInfo) {
|
|
|
+ List<PileRealtimeIndex> pileRealtimeIndices = consPileHoleInfoService
|
|
|
+ .selectConsPileHoleRealtimeIndex(consPileHoleInfo);
|
|
|
+ return AjaxResult.success(pileRealtimeIndices);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PreAuthorize("@ss.hasPermi('cons:pileHoleInfo:list')")
|
|
|
+ @GetMapping("/list/his/index")
|
|
|
+ public AjaxResult listHisIndex(ConsPileHoleInfo consPileHoleInfo) {
|
|
|
+ ConsPileHoleInfo consPileHoleInfoDb = consPileHoleInfoService
|
|
|
+ .selectConsPileHoleInfoById(consPileHoleInfo.getId());
|
|
|
+ List<MachineProcess> machineProcesses = new ArrayList<>();
|
|
|
+ if (ObjectUtils.isEmpty(consPileHoleInfo)) {
|
|
|
+ machineProcesses = machineProcessService.selectMachineProcessList(new MachineProcess() {
|
|
|
+ {
|
|
|
+ setPileId(consPileHoleInfoDb.getByteId());
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ return AjaxResult.success(machineProcesses);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 导出施工桩点信息列表
|
|
|
*/
|
|
|
@PreAuthorize("@ss.hasPermi('cons:pileHoleInfo:export')")
|
|
|
@Log(title = "施工桩点信息", businessType = BusinessType.EXPORT)
|
|
|
@PostMapping("/export")
|
|
|
- public void export(HttpServletResponse response, ConsPileHoleInfo consPileHoleInfo)
|
|
|
- {
|
|
|
+ public void export(HttpServletResponse response, ConsPileHoleInfo consPileHoleInfo) {
|
|
|
List<ConsPileHoleInfo> list = consPileHoleInfoService.selectConsPileHoleInfoList(consPileHoleInfo);
|
|
|
ExcelUtil<ConsPileHoleInfo> util = new ExcelUtil<ConsPileHoleInfo>(ConsPileHoleInfo.class);
|
|
|
util.exportExcel(response, list, "施工桩点信息数据");
|
|
@@ -65,8 +96,7 @@ public class ConsPileHoleInfoController extends BaseController
|
|
|
*/
|
|
|
@PreAuthorize("@ss.hasPermi('cons:pileHoleInfo:query')")
|
|
|
@GetMapping(value = "/{id}")
|
|
|
- public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
|
- {
|
|
|
+ public AjaxResult getInfo(@PathVariable("id") Long id) {
|
|
|
return success(consPileHoleInfoService.selectConsPileHoleInfoById(id));
|
|
|
}
|
|
|
|
|
@@ -76,8 +106,7 @@ public class ConsPileHoleInfoController extends BaseController
|
|
|
@PreAuthorize("@ss.hasPermi('cons:pileHoleInfo:add')")
|
|
|
@Log(title = "施工桩点信息", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
- public AjaxResult add(@RequestBody ConsPileHoleInfo consPileHoleInfo)
|
|
|
- {
|
|
|
+ public AjaxResult add(@RequestBody ConsPileHoleInfo consPileHoleInfo) {
|
|
|
return toAjax(consPileHoleInfoService.insertConsPileHoleInfo(consPileHoleInfo));
|
|
|
}
|
|
|
|
|
@@ -87,8 +116,7 @@ public class ConsPileHoleInfoController extends BaseController
|
|
|
@PreAuthorize("@ss.hasPermi('cons:pileHoleInfo:edit')")
|
|
|
@Log(title = "施工桩点信息", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
- public AjaxResult edit(@RequestBody ConsPileHoleInfo consPileHoleInfo)
|
|
|
- {
|
|
|
+ public AjaxResult edit(@RequestBody ConsPileHoleInfo consPileHoleInfo) {
|
|
|
return toAjax(consPileHoleInfoService.updateConsPileHoleInfo(consPileHoleInfo));
|
|
|
}
|
|
|
|
|
@@ -97,9 +125,8 @@ public class ConsPileHoleInfoController extends BaseController
|
|
|
*/
|
|
|
@PreAuthorize("@ss.hasPermi('cons:pileHoleInfo:remove')")
|
|
|
@Log(title = "施工桩点信息", businessType = BusinessType.DELETE)
|
|
|
- @DeleteMapping("/{ids}")
|
|
|
- public AjaxResult remove(@PathVariable Long[] ids)
|
|
|
- {
|
|
|
+ @DeleteMapping("/{ids}")
|
|
|
+ public AjaxResult remove(@PathVariable Long[] ids) {
|
|
|
return toAjax(consPileHoleInfoService.deleteConsPileHoleInfoByIds(ids));
|
|
|
}
|
|
|
}
|