task_id, post_id, ent_user_id, enterprise_id, ent_list_id, list_id, post_list_id, item_title, item_content, start_time, ent_time, task_state, frequency, del_state, create_time, create_by, modify_time, modify_by
insert into ent_post_task (task_id, post_id,ent_user_id,enterprise_id,
ent_list_id,
list_id, post_list_id, item_title,
item_content, start_time,ent_time,task_state,
frequency,
del_state, create_time, create_by,
modify_time, modify_by
)
values
(#{record.taskId,jdbcType=VARCHAR},
#{record.postId,jdbcType=VARCHAR},
#{record.entUserId,jdbcType=VARCHAR},
#{record.enterpriseId,jdbcType=VARCHAR},
#{record.entListId,jdbcType=VARCHAR},
#{record.listId,jdbcType=VARCHAR},
#{record.postListId,jdbcType=VARCHAR},
#{record.itemTitle,jdbcType=VARCHAR},
#{record.itemContent,jdbcType=VARCHAR},
#{record.startTime},
#{record.entTime},
#{record.taskState,jdbcType=INTEGER},
#{record.frequency,jdbcType=INTEGER},
#{record.delState,jdbcType=INTEGER},
#{record.createTime},
#{record.createBy,jdbcType=VARCHAR},
#{record.modifyTime},
#{record.modifyBy,jdbcType=VARCHAR}
)