From 040976de6f9934b99f30268a28e2ecf42260e217 Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期六, 18 五月 2024 22:13:01 +0800
Subject: [PATCH] 注释整理
---
smart-man-boot/src/main/java/com/qianwen/smartman/modules/cps/service/impl/TrayStorageServiceImpl.java | 13 ++++++-------
1 files changed, 6 insertions(+), 7 deletions(-)
diff --git a/smart-man-boot/src/main/java/com/qianwen/smartman/modules/cps/service/impl/TrayStorageServiceImpl.java b/smart-man-boot/src/main/java/com/qianwen/smartman/modules/cps/service/impl/TrayStorageServiceImpl.java
index 0a955ab..bdb459c 100644
--- a/smart-man-boot/src/main/java/com/qianwen/smartman/modules/cps/service/impl/TrayStorageServiceImpl.java
+++ b/smart-man-boot/src/main/java/com/qianwen/smartman/modules/cps/service/impl/TrayStorageServiceImpl.java
@@ -61,7 +61,6 @@
import cn.hutool.core.lang.Snowflake;
@Service
-/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/service/impl/TrayStorageServiceImpl.class */
public class TrayStorageServiceImpl extends BladeServiceImpl<TrayStorageMapper, TrayStorage> implements ITrayStorageService {
private static final Logger log = LoggerFactory.getLogger(TrayStorageServiceImpl.class);
@Autowired
@@ -80,12 +79,12 @@
@Autowired
private ICommonGroupOfItemService itemService;
- @Override // org.springblade.modules.cps.service.ITrayStorageService
+
public List<WareTrayStorageVO> listTray(Long id) {
return this.baseMapper.listTray(id);
}
- @Override // org.springblade.modules.cps.service.ITrayStorageService
+
@Transactional(rollbackFor = {Exception.class})
public List<TrayStorageVO> addTrayStorage(TrayStorageAddVO vo) {
List<Long> trayIds = vo.getTrayIds();
@@ -135,7 +134,7 @@
this.fmsRealTimeTrayService.saveBatch(fmsRealTimeTrays);
}
- @Override // org.springblade.modules.cps.service.ITrayStorageService
+
@Transactional(rollbackFor = {Exception.class})
public Boolean removeBind(TrayFixRemoveVO vo) {
List<RemoveIdsDTO> ids = vo.getIds();
@@ -177,17 +176,17 @@
}, trayCodes)));*/
}
- @Override // org.springblade.modules.cps.service.ITrayStorageService
+
public List<WarehouseAreaStationVO> areaStationTree() {
return this.warehouseAreaService.areaStationTree();
}
- @Override // org.springblade.modules.cps.service.ITrayStorageService
+
public List<FmsArea> fmsAreaStationTree() {
return this.warehouseAreaService.fmsAreaStationTree();
}
- @Override // org.springblade.modules.cps.service.ITrayStorageService
+
@Transactional(rollbackFor = {Exception.class})
public BladeFile importTrayStorage(MultipartFile file) {
List<TrayStorageImport> rawData = ExcelUtil.read(file, 0, 2, TrayStorageImport.class);
--
Gitblit v1.9.3