SELECT id, type, meeting_name, capacity_num, expand_num, indoor_pic_url, start_time, end_date, price_unit, money, is_show, create_by, create_time, update_by, update_time, version, delete_flag, room_id, shape FROM tb_room_content
INSERT INTO tb_room_content
id,
type,
meeting_name,
capacity_num,
expand_num,
indoor_pic_url,
start_time,
end_date,
price_unit,
money,
is_show,
create_by,
create_time,
update_by,
update_time,
version,
delete_flag,
room_id,
shape,
#{id},
#{type},
#{meetingName},
#{capacityNum},
#{expandNum},
#{indoorPicUrl},
#{startTime},
#{endDate},
#{priceUnit},
#{money},
#{isShow},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{version},
#{deleteFlag},
#{roomId},
#{shape},
UPDATE tb_room_content
type = #{type},
meeting_name = #{meetingName},
capacity_num = #{capacityNum},
expand_num = #{expandNum},
indoor_pic_url = #{indoorPicUrl},
start_time = #{startTime},
end_date = #{endDate},
price_unit = #{priceUnit},
money = #{money},
is_show = #{isShow},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
version = #{version},
delete_flag = #{deleteFlag},
room_id = #{roomId},
shape = #{shape},
WHERE id = #{id}
DELETE FROM tb_room_content WHERE id = #{id}
DELETE FROM tb_room_content where id in
#{id}