INSERT INTO `expect_content` (`expect_discren_id`, `stakeholder`, `expectation`, `solutions`, `review`)
VALUES
( #{item.expectDiscrenId}, #{item.stakeholder}, #{item.expectation}, #{item.solutions}, #{item.review})
INSERT INTO `expect_content_mess` ( `expect_content_id`, `expectation`, `solutions`, `review` )
VALUES
( #{item.expectContentId}, #{item.expectation}, #{item.solutions}, #{item.review} )
update expect_content_mess set review = #{item.review} where id = #{item.id}
delete from expect_content where expect_discren_id = #{id}
delete from expect_content_mess where expect_content_id = #{id}