id, general_id, audit_status, audit_opinion, `operator`, operate_dt
  
  
  
    
    delete from se_audits
    where id = #{id,jdbcType=BIGINT}
  
  
    
    insert into se_audits (id, general_id, audit_status, 
      audit_opinion, `operator`, operate_dt
      )
    values (#{id,jdbcType=BIGINT}, #{generalId,jdbcType=BIGINT}, #{auditStatus,jdbcType=TINYINT}, 
      #{auditOpinion,jdbcType=VARCHAR}, #{operator,jdbcType=BIGINT}, #{operateDt,jdbcType=TIMESTAMP}
      )
  
  
    
    insert into se_audits
    
      
        id,
      
      
        general_id,
      
      
        audit_status,
      
      
        audit_opinion,
      
      
        `operator`,
      
      
        operate_dt,
      
    
    
      
        #{id,jdbcType=BIGINT},
      
      
        #{generalId,jdbcType=BIGINT},
      
      
        #{auditStatus,jdbcType=TINYINT},
      
      
        #{auditOpinion,jdbcType=VARCHAR},
      
      
        #{operator,jdbcType=BIGINT},
      
      
        #{operateDt,jdbcType=TIMESTAMP},
      
    
  
  
    
    update se_audits
    
      
        general_id = #{generalId,jdbcType=BIGINT},
      
      
        audit_status = #{auditStatus,jdbcType=TINYINT},
      
      
        audit_opinion = #{auditOpinion,jdbcType=VARCHAR},
      
      
        `operator` = #{operator,jdbcType=BIGINT},
      
      
        operate_dt = #{operateDt,jdbcType=TIMESTAMP},
      
    
    where id = #{id,jdbcType=BIGINT}
  
  
    
    update se_audits
    set general_id = #{generalId,jdbcType=BIGINT},
      audit_status = #{auditStatus,jdbcType=TINYINT},
      audit_opinion = #{auditOpinion,jdbcType=VARCHAR},
      `operator` = #{operator,jdbcType=BIGINT},
      operate_dt = #{operateDt,jdbcType=TIMESTAMP}
    where id = #{id,jdbcType=BIGINT}