INSERT INTO physical_blind_structures (
name,
description,
create_user_id,
update_user_id,
created_at,
updated_at
) VALUES (
#{name},
#{description},
#{createUserId},
#{updateUserId},
NOW(),
NOW()
)
UPDATE physical_blind_structures
name = #{name},
description = #{description},
update_user_id = #{updateUserId},
updated_at = NOW()
WHERE id = #{id}
DELETE FROM physical_blind_structures
id IN
#{id}