insert into sys_notice(
user_id,
title,
content,
type,
create_time,
update_time,
is_active
)values(
#{userUpdate},
#{title},
#{content},
#{type},
now(),
now(),
1
)
insert into sys_notice_user(
user_id,
create_time,
update_time,
is_active
)values(
#{userId},
now(),
now(),
1
)