| | |
| | | import com.ruoyi.management.service.InventoriesSuppliesService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import io.swagger.annotations.ApiParam; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | |
| | | |
| | | @GetMapping("/scanCodes") |
| | | @ApiOperation(value = "安卓扫描传输数据") |
| | | public R scanCodes(@RequestBody ScanCodesDTO scanCodesDTO) { |
| | | inventoriesSuppliesService.scanCodes(scanCodesDTO); |
| | | public R scanCodes(String rkNumber,String code) { |
| | | inventoriesSuppliesService.scanCodes(rkNumber); |
| | | return R.ok(); |
| | | } |
| | | } |