insert into tb_pluss_merchant_image(merchantCode,photoType,photoUrl,picUrl,createDt,updateDt,aisleSwitch)VALUES(#{merchantCode},#{photoType},#{photoUrl},#{picUrl},#{createDt},#{updateDt},#{aisleSwitch})
insert into tb_pluss_merchant_image(merchantCode,photoType,photoUrl,picUrl,createDt,updateDt) VALUES
(#{merchantCode},#{photoType},#{photoUrl},#{picUrl},#{createDt},#{updateDt} )
update tb_pluss_merchant_image
merchantCode = #{merchantCode},
photoType = #{photoType},
photoUrl = #{photoUrl},
picUrl = #{picUrl},
createDt = #{createDt},
updateDt = #{updateDt},
aisleSwitch = #{aisleSwitch}
where id=#{id}
DELETE FROM tb_pluss_merchant_image where id=#{id}
DELETE FROM tb_pluss_merchant_image where merchantCode=#{merchantCode}