id, phone_number, security_code, expires
  
  
  
    
    delete from se_code_verify
    where id = #{id,jdbcType=BIGINT}
  
  
    
    insert into se_code_verify (id, phone_number, security_code, 
      expires)
    values (#{id,jdbcType=BIGINT}, #{phoneNumber,jdbcType=VARCHAR}, #{securityCode,jdbcType=VARCHAR}, 
      #{expires,jdbcType=BIGINT})
  
  
    
    insert into se_code_verify
    
      
        id,
      
      
        phone_number,
      
      
        security_code,
      
      
        expires,
      
    
    
      
        #{id,jdbcType=BIGINT},
      
      
        #{phoneNumber,jdbcType=VARCHAR},
      
      
        #{securityCode,jdbcType=VARCHAR},
      
      
        #{expires,jdbcType=BIGINT},
      
    
  
  
    
    update se_code_verify
    
      
        phone_number = #{phoneNumber,jdbcType=VARCHAR},
      
      
        security_code = #{securityCode,jdbcType=VARCHAR},
      
      
        expires = #{expires,jdbcType=BIGINT},
      
    
    where id = #{id,jdbcType=BIGINT}
  
  
    
    update se_code_verify
    set phone_number = #{phoneNumber,jdbcType=VARCHAR},
      security_code = #{securityCode,jdbcType=VARCHAR},
      expires = #{expires,jdbcType=BIGINT}
    where id = #{id,jdbcType=BIGINT}