select id, area_id, isStatus, zh_name, approve, create_by, create_time, update_by, update_time, remark from tc_wb
insert into tc_wb
area_id,isStatus,zh_name,approve,create_by,create_time,update_by,update_time,remark,#{areaId},#{isStatus},#{zhName},#{approve},#{createBy},#{createTime},#{updateBy},#{updateTime},#{remark},
update tc_wb
area_id = #{areaId},isStatus = #{isStatus},zh_name = #{zhName},approve = #{approve},create_by = #{createBy},create_time = #{createTime},update_by = #{updateBy},update_time = #{updateTime},remark = #{remark},
where id = #{id}
UPDATE tc_wb
SET isStatus = #{isStatus}
WHERE id IN
#{item}
delete from tc_wb where id = #{id}
delete from tc_wb where id in
#{id}