select id, project_id, expert_id, score, evaluation_state, selection_mode, team_leader, del_flag, create_by, create_time, update_by, update_time, professional_ethics, impartial_honest, comprehensive_coordination, professional_ability, expressing_opinions, others, comprehensive_evaluation, major_dangers, general_hazards, content,
freight_basis, billing_duration, after_tax_amount, open_bank, bank_card,taxable_income,income_tax_payable,tax_expert_fee,billing_instructions from project_expert
insert into project_expert
project_id,
expert_id,
score,
evaluation_state,
selection_mode,
team_leader,
del_flag,
create_by,
create_time,
update_by,
update_time,
professional_ethics,
impartial_honest,
comprehensive_coordination,
professional_ability,
expressing_opinions,
others,
comprehensive_evaluation,
major_dangers,
general_hazards,
content,
freight_basis,
billing_duration,
after_tax_amount,
open_bank,
bank_card,
taxable_income,
income_tax_payable,
tax_expert_fee,
#{projectId},
#{expertId},
#{score},
#{evaluationState},
#{selectionMode},
#{teamLeader},
#{delFlag},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{professionalEthics},
#{impartialHonest},
#{comprehensiveCoordination},
#{professionalAbility},
#{expressingOpinions},
#{others},
#{comprehensiveEvaluation},
#{majorDangers},
#{generalHazards},
#{content},
#{freightBasis},
#{billingDuration},
#{afterTaxAmount},
#{openBank},
#{bankCard},
#{taxableIncome},
#{incomeTaxPayable},
#{taxExpertFee},
insert into project_expert (project_id,expert_id,selection_mode,team_leader,create_by)
values
(#{item.projectId},#{item.expertId},#{item.selectionMode},#{item.teamLeader},#{item.createBy})
update project_expert
project_id = #{projectId},
expert_id = #{expertId},
score = #{score},
evaluation_state = #{evaluationState},
selection_mode = #{selectionMode},
team_leader = #{teamLeader},
del_flag = #{delFlag},
update_by = #{updateBy},
update_time = #{updateTime},
professional_ethics = #{professionalEthics},
impartial_honest = #{impartialHonest},
comprehensive_coordination = #{comprehensiveCoordination},
professional_ability = #{professionalAbility},
expressing_opinions = #{expressingOpinions},
others = #{others},
comprehensive_evaluation = #{comprehensiveEvaluation},
major_dangers = #{majorDangers},
general_hazards = #{generalHazards},
content = #{content},
freight_basis = #{freightBasis},
billing_duration = #{billingDuration},
after_tax_amount = #{afterTaxAmount},
open_bank = #{openBank},
bank_card = #{bankCard},
taxable_income = #{taxableIncome},
income_tax_payable = #{incomeTaxPayable},
tax_expert_fee = #{taxExpertFee},
billing_instructions = #{billingInstructions},
where id = #{id}
update project_expert
project_id = #{item.projectId},
expert_id = #{item.expertId},
score = #{item.score},
evaluation_state = #{item.evaluationState},
selection_mode = #{item.selectionMode},
team_leader = #{item.teamLeader},
update_by = #{item.updateBy}
where id = #{item.id}
update project_expert set del_flag= 1 where id = #{id}
update project_expert set del_flag= 1 where id in
#{id}