Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/resources/mapper/TPeopleMapper.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from t_people
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.fangxuele.tool.push.domain.TPeople" keyProperty="id" useGeneratedKeys="true">
<insert id="insert" parameterType="com.fangxuele.tool.push.domain.TPeople">
insert into t_people (id, msg_type, account_id,
people_name, app_version, remark,
create_time, modified_time)
Expand Down
3 changes: 1 addition & 2 deletions src/main/resources/mapper/TTaskHisMapper.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@
delete from t_task_his
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.fangxuele.tool.push.domain.TTaskHis" keyProperty="id"
useGeneratedKeys="true">
<insert id="insert" parameterType="com.fangxuele.tool.push.domain.TTaskHis">
insert into t_task_his (id, task_id, start_time,
end_time, total_cnt, success_cnt,
fail_cnt, status, dry_run,
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/mapper/TTaskMapper.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
delete from t_task
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.fangxuele.tool.push.domain.TTask" keyProperty="id" useGeneratedKeys="true">
<insert id="insert" parameterType="com.fangxuele.tool.push.domain.TTask">
insert into t_task (id, title, msg_type,
account_id, message_id, people_id,
task_mode, task_period, period_type,
Expand Down