id, partner_line_id, follow_user_id, task_title, communication_type, deadline, communication_content,
task_status, finish_time, deleted, create_time, update_time
insert into hy_follow_task
partner_line_id,
follow_user_id,
task_title,
communication_type,
deadline,
communication_content,
task_status,
finish_time,
deleted,
create_time,
update_time,
#{record.partnerLineId},
#{record.followUserId},
#{record.taskTitle},
#{record.communicationType},
#{record.deadline},
#{record.communicationContent},
#{record.taskStatus},
#{record.finishTime},
#{record.deleted},
#{record.createTime},
#{record.updateTime},
update hy_follow_task
partner_line_id = #{record.partnerLineId},
follow_user_id = #{record.followUserId},
task_title = #{record.taskTitle},
communication_type = #{record.communicationType},
deadline = #{record.deadline},
communication_content = #{record.communicationContent},
task_status = #{record.taskStatus},
finish_time = #{record.finishTime},
deleted = #{record.deleted},
create_time = #{record.createTime},
update_time = #{record.updateTime},
where id = #{record.id}
update hy_follow_task set follow_user_id = #{followUserId} where partner_line_id = #{partnerLineId}
update hy_follow_task set task_status = '3' where partner_line_id = #{partnerLineId} and task_status in ('0', '2')