id_, organ_id_, user_id_, month_, memo_, operation_, create_time_, update_time_
delete
from inspection
where id_ = #{id}
insert into inspection (organ_id_, user_id_, month_, operation_, create_time_, update_time_)
values (#{organId}, #{userId}, #{month}, #{operation}, #{createTime}, #{updateTime})
update inspection
organ_id_ = #{organId},
user_id_ = #{userId},
month_ = #{month},
memo_ = #{memo},
operation_ = #{operation},
create_time_ = #{createTime},
update_time_ = #{updateTime},
where id_ = #{id}
AND FIND_IN_SET(i.organ_id_,#{organId})
AND i.user_id_ = #{userId}
AND i.operation_ = #{operation}
AND i.month_ >= #{startTime}