select stand_id,stand_code, stand_name, stand_type, stand_area, stand_property, stand_status, is_lock, remark from app_stand
insert into app_stand
stand_id,
stand_code,
stand_name,
stand_type,
stand_area,
stand_property,
stand_status,
is_lock,
remark,
#{standId},
#{standCode},
#{standName},
#{standType},
#{standArea},
#{standProperty},
#{standStatus},
#{isLock},
#{remark},
update app_stand
stand_code = #{standCode},
stand_name = #{standName},
stand_type = #{standType},
stand_area = #{standArea},
stand_property = #{standProperty},
stand_status = #{standStatus},
is_lock = #{isLock},
remark = #{remark},
where stand_id = #{standId}
delete from app_stand where stand_id = #{standId}
delete from app_stand where stand_id in
#{standId}