|
|
|
@ -48,4 +48,15 @@ public interface RemoteMesService {
|
|
|
|
|
public R<List<MesBaseStationInfo>> getStations(@RequestHeader(SecurityConstants.FROM_SOURCE) String source);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 通过绑定条码查询条码信息
|
|
|
|
|
*
|
|
|
|
|
* @param bindBarcode 绑定条码信息
|
|
|
|
|
* @param source 请求来源
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/barcode/getBarcodeByBindBarcode/{bindBarcode}")
|
|
|
|
|
public R<MesBaseBarcodeInfo> getBarcodeByBindBarcode(@PathVariable("bindBarcode") String bindBarcode, @RequestHeader(SecurityConstants.FROM_SOURCE) String source);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|