|
|
@ -1,6 +1,6 @@ |
|
|
|
package com.hai.dao; |
|
|
|
package com.hai.dao; |
|
|
|
|
|
|
|
|
|
|
|
import com.hai.entity.BsPushScheduldTask; |
|
|
|
import com.hai.entity.BsPushScheduleTask; |
|
|
|
import com.hai.entity.BsPushScheduldTaskExample; |
|
|
|
import com.hai.entity.BsPushScheduldTaskExample; |
|
|
|
import java.util.List; |
|
|
|
import java.util.List; |
|
|
|
import org.apache.ibatis.annotations.Delete; |
|
|
|
import org.apache.ibatis.annotations.Delete; |
|
|
@ -53,11 +53,11 @@ public interface BsPushScheduldTaskMapper extends BsPushScheduldTaskMapperExt { |
|
|
|
"#{ext6,jdbcType=VARCHAR})" |
|
|
|
"#{ext6,jdbcType=VARCHAR})" |
|
|
|
}) |
|
|
|
}) |
|
|
|
@Options(useGeneratedKeys=true,keyProperty="id") |
|
|
|
@Options(useGeneratedKeys=true,keyProperty="id") |
|
|
|
int insert(BsPushScheduldTask record); |
|
|
|
int insert(BsPushScheduleTask record); |
|
|
|
|
|
|
|
|
|
|
|
@InsertProvider(type=BsPushScheduldTaskSqlProvider.class, method="insertSelective") |
|
|
|
@InsertProvider(type=BsPushScheduldTaskSqlProvider.class, method="insertSelective") |
|
|
|
@Options(useGeneratedKeys=true,keyProperty="id") |
|
|
|
@Options(useGeneratedKeys=true,keyProperty="id") |
|
|
|
int insertSelective(BsPushScheduldTask record); |
|
|
|
int insertSelective(BsPushScheduleTask record); |
|
|
|
|
|
|
|
|
|
|
|
@SelectProvider(type=BsPushScheduldTaskSqlProvider.class, method="selectByExample") |
|
|
|
@SelectProvider(type=BsPushScheduldTaskSqlProvider.class, method="selectByExample") |
|
|
|
@Results({ |
|
|
|
@Results({ |
|
|
@ -76,7 +76,7 @@ public interface BsPushScheduldTaskMapper extends BsPushScheduldTaskMapperExt { |
|
|
|
@Result(column="ext_5", property="ext5", jdbcType=JdbcType.VARCHAR), |
|
|
|
@Result(column="ext_5", property="ext5", jdbcType=JdbcType.VARCHAR), |
|
|
|
@Result(column="ext_6", property="ext6", jdbcType=JdbcType.VARCHAR) |
|
|
|
@Result(column="ext_6", property="ext6", jdbcType=JdbcType.VARCHAR) |
|
|
|
}) |
|
|
|
}) |
|
|
|
List<BsPushScheduldTask> selectByExample(BsPushScheduldTaskExample example); |
|
|
|
List<BsPushScheduleTask> selectByExample(BsPushScheduldTaskExample example); |
|
|
|
|
|
|
|
|
|
|
|
@Select({ |
|
|
|
@Select({ |
|
|
|
"select", |
|
|
|
"select", |
|
|
@ -101,16 +101,16 @@ public interface BsPushScheduldTaskMapper extends BsPushScheduldTaskMapperExt { |
|
|
|
@Result(column="ext_5", property="ext5", jdbcType=JdbcType.VARCHAR), |
|
|
|
@Result(column="ext_5", property="ext5", jdbcType=JdbcType.VARCHAR), |
|
|
|
@Result(column="ext_6", property="ext6", jdbcType=JdbcType.VARCHAR) |
|
|
|
@Result(column="ext_6", property="ext6", jdbcType=JdbcType.VARCHAR) |
|
|
|
}) |
|
|
|
}) |
|
|
|
BsPushScheduldTask selectByPrimaryKey(Long id); |
|
|
|
BsPushScheduleTask selectByPrimaryKey(Long id); |
|
|
|
|
|
|
|
|
|
|
|
@UpdateProvider(type=BsPushScheduldTaskSqlProvider.class, method="updateByExampleSelective") |
|
|
|
@UpdateProvider(type=BsPushScheduldTaskSqlProvider.class, method="updateByExampleSelective") |
|
|
|
int updateByExampleSelective(@Param("record") BsPushScheduldTask record, @Param("example") BsPushScheduldTaskExample example); |
|
|
|
int updateByExampleSelective(@Param("record") BsPushScheduleTask record, @Param("example") BsPushScheduldTaskExample example); |
|
|
|
|
|
|
|
|
|
|
|
@UpdateProvider(type=BsPushScheduldTaskSqlProvider.class, method="updateByExample") |
|
|
|
@UpdateProvider(type=BsPushScheduldTaskSqlProvider.class, method="updateByExample") |
|
|
|
int updateByExample(@Param("record") BsPushScheduldTask record, @Param("example") BsPushScheduldTaskExample example); |
|
|
|
int updateByExample(@Param("record") BsPushScheduleTask record, @Param("example") BsPushScheduldTaskExample example); |
|
|
|
|
|
|
|
|
|
|
|
@UpdateProvider(type=BsPushScheduldTaskSqlProvider.class, method="updateByPrimaryKeySelective") |
|
|
|
@UpdateProvider(type=BsPushScheduldTaskSqlProvider.class, method="updateByPrimaryKeySelective") |
|
|
|
int updateByPrimaryKeySelective(BsPushScheduldTask record); |
|
|
|
int updateByPrimaryKeySelective(BsPushScheduleTask record); |
|
|
|
|
|
|
|
|
|
|
|
@Update({ |
|
|
|
@Update({ |
|
|
|
"update bs_push_scheduld_task", |
|
|
|
"update bs_push_scheduld_task", |
|
|
@ -129,5 +129,5 @@ public interface BsPushScheduldTaskMapper extends BsPushScheduldTaskMapperExt { |
|
|
|
"ext_6 = #{ext6,jdbcType=VARCHAR}", |
|
|
|
"ext_6 = #{ext6,jdbcType=VARCHAR}", |
|
|
|
"where id = #{id,jdbcType=BIGINT}" |
|
|
|
"where id = #{id,jdbcType=BIGINT}" |
|
|
|
}) |
|
|
|
}) |
|
|
|
int updateByPrimaryKey(BsPushScheduldTask record); |
|
|
|
int updateByPrimaryKey(BsPushScheduleTask record); |
|
|
|
} |
|
|
|
} |
|
|
|