id, task_type, deleted
  
  
  
    
    delete from ope_task_type
    where id = #{id,jdbcType=BIGINT}
  
  
    
    insert into ope_task_type (id, task_type, deleted
      )
    values (#{id,jdbcType=BIGINT}, #{taskType,jdbcType=VARCHAR}, #{deleted,jdbcType=BIGINT}
      )
  
  
    
    insert into ope_task_type
    
      
        id,
      
      
        task_type,
      
      
        deleted,
      
    
    
      
        #{id,jdbcType=BIGINT},
      
      
        #{taskType,jdbcType=VARCHAR},
      
      
        #{deleted,jdbcType=BIGINT},
      
    
  
  
    
    update ope_task_type
    
      
        task_type = #{taskType,jdbcType=VARCHAR},
      
      
        deleted = #{deleted,jdbcType=BIGINT},
      
    
    where id = #{id,jdbcType=BIGINT}
  
  
    
    update ope_task_type
    set task_type = #{taskType,jdbcType=VARCHAR},
      deleted = #{deleted,jdbcType=BIGINT}
    where id = #{id,jdbcType=BIGINT}