| | |
| | | package mes; |
| | | |
| | | import com.mes.GlassStorageApplication; |
| | | import com.mes.rawusage.entity.RawUsage; |
| | | import com.mes.rawusage.service.RawUsageService; |
| | | import com.mes.shelfrack.entity.ShelfRack; |
| | | import com.mes.shelfrack.service.ShelfRackService; |
| | | import com.mes.storagetask.entity.StorageTask; |
| | | import com.mes.storagetask.service.StorageTaskService; |
| | |
| | | private StorageTaskService storageTaskService; |
| | | @Autowired |
| | | private ShelfRackService shelfRackService; |
| | | @Autowired |
| | | private RawUsageService rawUsageService; |
| | | |
| | | |
| | | @Test |
| | |
| | | |
| | | |
| | | |
| | | @Test |
| | | public void updateRawPackageAndStorageRack() { |
| | | RawUsage raw=new RawUsage(); |
| | | |
| | | raw.setId(null); |
| | | rawUsageService.updateRawPackageAndStorageRack(raw); |
| | | } |
| | | |
| | | |
| | | |