Commit 15fbcacd by zhangshaowu

排班信息

1 parent ebc9ed34
...@@ -40,6 +40,10 @@ import java.util.stream.Collectors; ...@@ -40,6 +40,10 @@ import java.util.stream.Collectors;
@Service @Service
public class RosteringServiceImpl implements RosteringService { public class RosteringServiceImpl implements RosteringService {
@Autowired @Autowired
private RosteringStaffDao rosteringStaffDao; private RosteringStaffDao rosteringStaffDao;
...@@ -117,6 +121,21 @@ public class RosteringServiceImpl implements RosteringService { ...@@ -117,6 +121,21 @@ public class RosteringServiceImpl implements RosteringService {
} }
@Override @Override
public void createStaff(RosteringStaff rosteringStaff) {
}
@Override
public void deleteStaff(Integer id) {
}
@Override
public void updateStaff(RosteringStaff rosteringStaff) {
}
@Override
public List<RosteringStaff> findAllStaff() { public List<RosteringStaff> findAllStaff() {
return rosteringStaffDao.findAll(); return rosteringStaffDao.findAll();
} }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!