|
|
@ -39,9 +39,9 @@ public interface BsOrderOutsideMapper extends BsOrderOutsideMapperExt { |
|
|
|
|
|
|
|
|
|
|
|
@Delete({ |
|
|
|
@Delete({ |
|
|
|
"delete from bs_order_outside", |
|
|
|
"delete from bs_order_outside", |
|
|
|
"where id = #{id,jdbcType=BIGINT}" |
|
|
|
"where id = #{id,jdbcType=INTEGER}" |
|
|
|
}) |
|
|
|
}) |
|
|
|
int deleteByPrimaryKey(Long id); |
|
|
|
int deleteByPrimaryKey(Integer id); |
|
|
|
|
|
|
|
|
|
|
|
@Insert({ |
|
|
|
@Insert({ |
|
|
|
"insert into bs_order_outside (platform_code, platform_name, ", |
|
|
|
"insert into bs_order_outside (platform_code, platform_name, ", |
|
|
@ -64,7 +64,7 @@ public interface BsOrderOutsideMapper extends BsOrderOutsideMapperExt { |
|
|
|
|
|
|
|
|
|
|
|
@SelectProvider(type=BsOrderOutsideSqlProvider.class, method="selectByExample") |
|
|
|
@SelectProvider(type=BsOrderOutsideSqlProvider.class, method="selectByExample") |
|
|
|
@Results({ |
|
|
|
@Results({ |
|
|
|
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
|
|
|
@Result(column="id", property="id", jdbcType=JdbcType.INTEGER, id=true), |
|
|
|
@Result(column="platform_code", property="platformCode", jdbcType=JdbcType.VARCHAR), |
|
|
|
@Result(column="platform_code", property="platformCode", jdbcType=JdbcType.VARCHAR), |
|
|
|
@Result(column="platform_name", property="platformName", jdbcType=JdbcType.VARCHAR), |
|
|
|
@Result(column="platform_name", property="platformName", jdbcType=JdbcType.VARCHAR), |
|
|
|
@Result(column="login_type_code", property="loginTypeCode", jdbcType=JdbcType.VARCHAR), |
|
|
|
@Result(column="login_type_code", property="loginTypeCode", jdbcType=JdbcType.VARCHAR), |
|
|
@ -84,10 +84,10 @@ public interface BsOrderOutsideMapper extends BsOrderOutsideMapperExt { |
|
|
|
"id, platform_code, platform_name, login_type_code, login_type_name, order_no, ", |
|
|
|
"id, platform_code, platform_name, login_type_code, login_type_name, order_no, ", |
|
|
|
"create_time, update_time, `status`, ext_1, ext_2, ext_3", |
|
|
|
"create_time, update_time, `status`, ext_1, ext_2, ext_3", |
|
|
|
"from bs_order_outside", |
|
|
|
"from bs_order_outside", |
|
|
|
"where id = #{id,jdbcType=BIGINT}" |
|
|
|
"where id = #{id,jdbcType=INTEGER}" |
|
|
|
}) |
|
|
|
}) |
|
|
|
@Results({ |
|
|
|
@Results({ |
|
|
|
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
|
|
|
@Result(column="id", property="id", jdbcType=JdbcType.INTEGER, id=true), |
|
|
|
@Result(column="platform_code", property="platformCode", jdbcType=JdbcType.VARCHAR), |
|
|
|
@Result(column="platform_code", property="platformCode", jdbcType=JdbcType.VARCHAR), |
|
|
|
@Result(column="platform_name", property="platformName", jdbcType=JdbcType.VARCHAR), |
|
|
|
@Result(column="platform_name", property="platformName", jdbcType=JdbcType.VARCHAR), |
|
|
|
@Result(column="login_type_code", property="loginTypeCode", jdbcType=JdbcType.VARCHAR), |
|
|
|
@Result(column="login_type_code", property="loginTypeCode", jdbcType=JdbcType.VARCHAR), |
|
|
@ -100,7 +100,7 @@ public interface BsOrderOutsideMapper extends BsOrderOutsideMapperExt { |
|
|
|
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
|
|
|
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
|
|
|
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
|
|
|
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
|
|
|
}) |
|
|
|
}) |
|
|
|
BsOrderOutside selectByPrimaryKey(Long id); |
|
|
|
BsOrderOutside selectByPrimaryKey(Integer id); |
|
|
|
|
|
|
|
|
|
|
|
@UpdateProvider(type=BsOrderOutsideSqlProvider.class, method="updateByExampleSelective") |
|
|
|
@UpdateProvider(type=BsOrderOutsideSqlProvider.class, method="updateByExampleSelective") |
|
|
|
int updateByExampleSelective(@Param("record") BsOrderOutside record, @Param("example") BsOrderOutsideExample example); |
|
|
|
int updateByExampleSelective(@Param("record") BsOrderOutside record, @Param("example") BsOrderOutsideExample example); |
|
|
@ -124,7 +124,7 @@ public interface BsOrderOutsideMapper extends BsOrderOutsideMapperExt { |
|
|
|
"ext_1 = #{ext1,jdbcType=VARCHAR},", |
|
|
|
"ext_1 = #{ext1,jdbcType=VARCHAR},", |
|
|
|
"ext_2 = #{ext2,jdbcType=VARCHAR},", |
|
|
|
"ext_2 = #{ext2,jdbcType=VARCHAR},", |
|
|
|
"ext_3 = #{ext3,jdbcType=VARCHAR}", |
|
|
|
"ext_3 = #{ext3,jdbcType=VARCHAR}", |
|
|
|
"where id = #{id,jdbcType=BIGINT}" |
|
|
|
"where id = #{id,jdbcType=INTEGER}" |
|
|
|
}) |
|
|
|
}) |
|
|
|
int updateByPrimaryKey(BsOrderOutside record); |
|
|
|
int updateByPrimaryKey(BsOrderOutside record); |
|
|
|
} |
|
|
|
} |