Commit 15fbcacd by zhangshaowu

排班信息

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