| | |
| | | import com.ruoyi.management.service.InventoriesSuppliesService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | |
| | | @Resource |
| | | private InventoriesSuppliesService inventoriesSuppliesService; |
| | | |
| | | @PostMapping("/scanCodes") |
| | | @GetMapping("/scanCodes") |
| | | @ApiOperation(value = "安卓扫描传输数据") |
| | | public R scanCodes(@RequestBody ScanCodesDTO scanCodesDTO) { |
| | | inventoriesSuppliesService.scanCodes(scanCodesDTO); |