INSERT INTO tb_jj_project
id,
pro_name,
pro_no,
org_id,
vlotage,
pro_type,
del_flag,
construction_nature,
plan_nature,
line,
power,
plan_start_time,
plan_end_time,
start_time,
end_time,
tc_time,
#{id},
#{proName},
#{proNo},
#{orgId},
#{vlotage},
#{proType},
0,
#{constructionNature},
#{planNature},
#{line},
#{power},
#{planStartTime},
#{planEndTime},
#{startTime},
#{endTime},
#{tcTime},
UPDATE tb_jj_project SET pro_name = #{proName},pro_no = #{proNo},org_id = #{orgId},vlotage = #{vlotage},
pro_type = #{proType},construction_nature = #{constructionNature},plan_nature = #{planNature},line = #{line},
power = #{power},plan_start_time = #{planStartTime},plan_end_time = #{planEndTime},start_time = #{startTime},
end_time = #{endTime},tc_time = #{tcTime} WHERE id = #{id}
INSERT INTO tb_sign_project
id,
single_name,
signle_no,
wbs_code,
project_no,
single_desc,
del_flag,
vol_level,
line_length,
subs_cap,
pro_type,
subs_type,
estimate_type,
org_id,
start_date,
end_date,
complete_date,
#{id},
#{singleName},
#{signleNo},
#{wbsCode},
#{proNo},
#{singleDesc},
0,
#{volLevel},
#{lineLength},
#{subsCap},
#{proType},
#{subsType},
#{estimateType},
#{orgId},
#{startDate},
#{endDate},
#{completeDate},
UPDATE tb_sign_project SET single_name = #{singleName},signle_no = #{signleNo},wbs_code = #{wbsCode},project_no = #{proNo},
single_desc = #{singleDesc},vol_level = #{volLevel},line_length = #{lineLength},subs_cap = #{subsCap},pro_type = #{proType},
subs_type = #{subsType},estimate_type = #{estimateType},org_id = #{orgId},start_date = #{startDate},end_date = #{endDate},
complete_date = #{completeDate} WHERE id = #{id}
UPDATE tb_jj_project SET del_flag = 1 WHERE id = #{id}
UPDATE tb_sign_project SET del_flag = 1 WHERE id = #{id}