| | |
| | | import com.whyc.service.QRCodeService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | 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; |
| | | |
| | |
| | | return new Response().set(1,res); |
| | | } |
| | | |
| | | @PostMapping("extractAndGetData") |
| | | private Response extractAndGetData(@RequestBody byte[] data){ |
| | | return service.extractAndGetData(data); |
| | | } |
| | | |
| | | } |