| | |
| | | package com.jcdm.main.da.passingStationCollection.controller; |
| | | |
| | | import java.util.List; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | | import com.jcdm.common.core.domain.R; |
| | | import com.jcdm.common.utils.DateUtils; |
| | | import com.jcdm.main.bs.orderScheduling.domain.BsOrderScheduling; |
| | | import com.jcdm.main.da.passingStationCollection.domain.DaPassingStationCollection; |
| | | import com.jcdm.main.da.passingStationCollection.service.IDaPassingStationCollectionService; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | 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.jcdm.common.annotation.Log; |
| | | import com.jcdm.common.core.controller.BaseController; |
| | | import com.jcdm.common.core.domain.AjaxResult; |
| | | import com.jcdm.common.enums.BusinessType; |
| | | import com.jcdm.common.utils.poi.ExcelUtil; |
| | | import com.jcdm.common.core.domain.R; |
| | | import com.jcdm.common.core.page.TableDataInfo; |
| | | import com.jcdm.common.enums.BusinessType; |
| | | import com.jcdm.common.utils.DateUtils; |
| | | import com.jcdm.common.utils.poi.ExcelUtil; |
| | | import com.jcdm.main.da.passingStationCollection.domain.DaPassingStationCollection; |
| | | import com.jcdm.main.da.passingStationCollection.service.IDaPassingStationCollectionService; |
| | | import com.jcdm.main.da.passingStationCollection.service.impl.DaPassingStationCollectionServiceImpl; |
| | | import com.jcdm.main.da.passingStationCollection.vo.DaPassingStationVO; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 产品过站采集Controller |
| | |
| | | @Autowired |
| | | private IDaPassingStationCollectionService daPassingStationCollectionService; |
| | | |
| | | @Resource |
| | | private DaPassingStationCollectionServiceImpl passingStationCollectionServiceImpl; |
| | | |
| | | /** |
| | | * 查询产品过站采集列表 |
| | | */ |
| | |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | @PreAuthorize("@ss.hasPermi('da:passingStationCollection:list')") |
| | | @GetMapping("/getTopProcess") |
| | | public TableDataInfo getTopProcess() |
| | | { |
| | | DaPassingStationCollection daPassingStationCollection = new DaPassingStationCollection(); |
| | | List<DaPassingStationVO> list = daPassingStationCollectionService.getTopProcess(daPassingStationCollection); |
| | | return getDataTable(list); |
| | | } |
| | | /** |
| | | * 查询产品过站采集列表 |
| | | */ |
| | |
| | | { |
| | | return toAjax(daPassingStationCollectionService.deleteDaPassingStationCollectionByIds(ids)); |
| | | } |
| | | |
| | | //设置定时十秒一次 |
| | | // @Scheduled(cron = "0/10 * * * * ?") |
| | | // @PostMapping("/send") |
| | | // public String sendMessage(String message) throws Exception { |
| | | // if (StringUtils.isEmpty(message)){ |
| | | // message = "TESTMESSAGE"; |
| | | // } |
| | | // return passingStationCollectionServiceImpl.sendMessage(message); |
| | | // } |
| | | } |