id, client_id, money, last_operate, last_operate_time, create_time
  
  
  
    
    delete from se_wallet
    where id = #{id,jdbcType=BIGINT}
  
  
    
    insert into se_wallet (id, client_id, money, 
      last_operate, last_operate_time, create_time
      )
    values (#{id,jdbcType=BIGINT}, #{clientId,jdbcType=BIGINT}, #{money,jdbcType=FLOAT}, 
      #{lastOperate,jdbcType=TINYINT}, #{lastOperateTime,jdbcType=TIMESTAMP}, #{createTime,jdbcType=TIMESTAMP}
      )
  
  
    
    insert into se_wallet
    
      
        id,
      
      
        client_id,
      
      
        money,
      
      
        last_operate,
      
      
        last_operate_time,
      
      
        create_time,
      
    
    
      
        #{id,jdbcType=BIGINT},
      
      
        #{clientId,jdbcType=BIGINT},
      
      
        #{money,jdbcType=FLOAT},
      
      
        #{lastOperate,jdbcType=TINYINT},
      
      
        #{lastOperateTime,jdbcType=TIMESTAMP},
      
      
        #{createTime,jdbcType=TIMESTAMP},
      
    
  
  
    
    update se_wallet
    
      
        client_id = #{clientId,jdbcType=BIGINT},
      
      
        money = #{money,jdbcType=FLOAT},
      
      
        last_operate = #{lastOperate,jdbcType=TINYINT},
      
      
        last_operate_time = #{lastOperateTime,jdbcType=TIMESTAMP},
      
      
        create_time = #{createTime,jdbcType=TIMESTAMP},
      
    
    where id = #{id,jdbcType=BIGINT}
  
  
    
    update se_wallet
    set client_id = #{clientId,jdbcType=BIGINT},
      money = #{money,jdbcType=FLOAT},
      last_operate = #{lastOperate,jdbcType=TINYINT},
      last_operate_time = #{lastOperateTime,jdbcType=TIMESTAMP},
      create_time = #{createTime,jdbcType=TIMESTAMP}
    where id = #{id,jdbcType=BIGINT}