It looks like your first and last partitions have been changed to OEM. So you need to use Diskpart to change them back, so first try listing the partitions on that drive so you will be able to select the correct partition.
In Diskpart, you must make sure you are working on the correct disk and partition. An asterisk on the left of the listing will normally indicate which item is selected.
To use Diskpart, open an Administrative Command prompt and type Diskpart.
Then use these commands to list the partitions on the drive, assuming your disk is disk 0. These commands are given one at a time and can be shortened to 3 letters in most cases.
Diskpart
list disk
select disk 0
list partition
This will give you a list of partitions on that drive and you must select the correct one. In you case it will probably be partitions 1 and 6, but make sure.
You then need to select the correct partition and change the partition ID back to a recovery partition. You may want to copy the current Partition Type ID and save it in a Notepad file. You can do that in a Command Prompt window by right clicking, highlighting, and then pasting it.
select partition 6
detail partition
Then set the partition Type ID with the following command.
set id=DE94BBA4-06D1-4D40-A16A-BFD50179D6AC
For some folks this is all it takes to change the partition back to a Recovery partition. Check it to see if it works and then continue to make sure the Attributes are set correctly on the partition. Listing the partitions again may now show Recovery instead of OEM. Again, make sure you are using the correct partition.
gpt attributes=0x8000000000000001 which should be shown in the detail partition listing.
If it does not work, look through the thread, but during my tests, the partition was already set to Recovery and I had to change it to a normal partition, reboot, and then change it back. Hopefully you will not need to do that.
If you have problems, do what you can of the procedure and post the results. You will need to do this for both partitions. Command can be reproduced and then modified in the Command Window by using the up or down arrow.