INSERT INTO class_group
id_,
music_group_id_,
subject_id_list_,
name_,
student_num_,
create_time_,
update_time_,
type_,
VALUES
#{id},
#{musicGroupId},
#{subjectIdList},
#{name},
#{studentNum},
#{createTime},
#{updateTime},
#{type,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
UPDATE class_group
subject_id_list_ = #{subjectIdList},
student_num_ = #{studentNum},
update_time_ = #{updateTime},
music_group_id_ = #{musicGroupId},
type_ = #{type,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
name_ = #{name},
WHERE id_ = #{id}
DELETE FROM class_group WHERE id_ = #{id}