How to represent rows as column from details table?

I work on sql server 2012 i face issue ican't represent rows as column .

i need to represent code type from details table to display as column with

values of countparts

join between master zplid and details zplid is zplid

every zplid have group of code type so instead of represent code type as rows

i will represent it as columns

columns will have header as code type and content column will be countparts

so How to do that please ?
create table #zplidmaster
(
zplid int,
zplidname nvarchar(50)
)
insert into #zplidmaster(zplid,zplidname)
values
(4124,'tetanium'),
(4125,'FilmCapacitor'),
(4145,'CeramicCapacitor'),
(4170,'Holetransistor'),
(4190,'resistor')

 create table #zpliddetails
 (
 zplid int,
 CodeType  int,
 CountParts int
 )
 insert into #zpliddetails(zplid,CodeType,CountParts) 
 values
 (4124,9089,9011),
 (4124,7498,7000),
 (4125,9089,2000),
 (4125,7498,1000),
 (4145,9089,3000),
 (4145,7498,8500),
 (4170,9089,7600),
 (4170,7498,6600),
 (4190,9089,9001),
 (4190,7498,9003)

expected result

image

if it always is going to be 2 records for each zplid ... then min , max

 select 
       'SQL Result'
	 , zplid
	 , min (CountParts) 
	 , max(CountParts) 
 from 
    #zpliddetails
 group by 
   zplid 

image