重命名类和接口,新增API端点
在 `ReprintLabel.cs` 文件中,将类名 `ReprintBarcode` 修改为 `RePrintLabel`,并且实现的接口从 `IReprintBarcode` 改为 `IRePrintLabel`。同时,`Init` 方法的返回类型也相应地从 `IReprintBarcode` 改为 `IRePrintLabel`。
在 `WMSController.RePrintLabel.cs` 文件中,新增了一个 `WMSController` 部分类,并添加了三个新的 API 端点:
* `RePrintLabel_GetTransaction`:根据 `ApiAction` 的 `id` 返回一个查询储位补印条码事务。
* `RePrintLabel_CloseTransaction`:关闭事务。
* `RePrintLabel_ScanItemAsync`:扫描入库。
在 `IRePrintLabel.cs` 文件中,将接口名 `IReprintBarcode` 修改为 `IRePrintLabel`,并且 `Init` 方法的返回类型也相应地从 `IReprintBarcode` 改为 `IRePrintLabel`。
这些更改主要是为了重命名类和接口,以更好地反映其功能,并添加了新的 API 端点以支持新的功能。