You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
5.1 KiB
113 lines
5.1 KiB
6 months ago
|
package com.hfkj.dao;
|
||
|
|
||
|
import com.hfkj.entity.BsUserAccount;
|
||
|
import com.hfkj.entity.BsUserAccountExample;
|
||
|
import java.util.List;
|
||
|
import org.apache.ibatis.annotations.Delete;
|
||
|
import org.apache.ibatis.annotations.DeleteProvider;
|
||
|
import org.apache.ibatis.annotations.Insert;
|
||
|
import org.apache.ibatis.annotations.InsertProvider;
|
||
|
import org.apache.ibatis.annotations.Options;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
import org.apache.ibatis.annotations.Result;
|
||
|
import org.apache.ibatis.annotations.Results;
|
||
|
import org.apache.ibatis.annotations.Select;
|
||
|
import org.apache.ibatis.annotations.SelectProvider;
|
||
|
import org.apache.ibatis.annotations.Update;
|
||
|
import org.apache.ibatis.annotations.UpdateProvider;
|
||
|
import org.apache.ibatis.type.JdbcType;
|
||
|
import org.springframework.stereotype.Repository;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* 代码由工具生成,请勿修改!!!
|
||
|
* 如果需要扩展请在其父类进行扩展
|
||
|
*
|
||
|
**/
|
||
|
@Repository
|
||
|
public interface BsUserAccountMapper extends BsUserAccountMapperExt {
|
||
|
@SelectProvider(type=BsUserAccountSqlProvider.class, method="countByExample")
|
||
|
long countByExample(BsUserAccountExample example);
|
||
|
|
||
|
@DeleteProvider(type=BsUserAccountSqlProvider.class, method="deleteByExample")
|
||
|
int deleteByExample(BsUserAccountExample example);
|
||
|
|
||
|
@Delete({
|
||
|
"delete from bs_user_account",
|
||
|
"where id = #{id,jdbcType=BIGINT}"
|
||
|
})
|
||
|
int deleteByPrimaryKey(Long id);
|
||
|
|
||
|
@Insert({
|
||
|
"insert into bs_user_account (user_id, gold_coin, ",
|
||
|
"`status`, create_time, ",
|
||
|
"update_time, ext_1, ",
|
||
|
"ext_2, ext_3)",
|
||
|
"values (#{userId,jdbcType=BIGINT}, #{goldCoin,jdbcType=DECIMAL}, ",
|
||
|
"#{status,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, ",
|
||
|
"#{updateTime,jdbcType=TIMESTAMP}, #{ext1,jdbcType=VARCHAR}, ",
|
||
|
"#{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})"
|
||
|
})
|
||
|
@Options(useGeneratedKeys=true,keyProperty="id")
|
||
|
int insert(BsUserAccount record);
|
||
|
|
||
|
@InsertProvider(type=BsUserAccountSqlProvider.class, method="insertSelective")
|
||
|
@Options(useGeneratedKeys=true,keyProperty="id")
|
||
|
int insertSelective(BsUserAccount record);
|
||
|
|
||
|
@SelectProvider(type=BsUserAccountSqlProvider.class, method="selectByExample")
|
||
|
@Results({
|
||
|
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true),
|
||
|
@Result(column="user_id", property="userId", jdbcType=JdbcType.BIGINT),
|
||
|
@Result(column="gold_coin", property="goldCoin", jdbcType=JdbcType.DECIMAL),
|
||
|
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER),
|
||
|
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP),
|
||
|
@Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP),
|
||
|
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR),
|
||
|
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR),
|
||
|
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR)
|
||
|
})
|
||
|
List<BsUserAccount> selectByExample(BsUserAccountExample example);
|
||
|
|
||
|
@Select({
|
||
|
"select",
|
||
|
"id, user_id, gold_coin, `status`, create_time, update_time, ext_1, ext_2, ext_3",
|
||
|
"from bs_user_account",
|
||
|
"where id = #{id,jdbcType=BIGINT}"
|
||
|
})
|
||
|
@Results({
|
||
|
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true),
|
||
|
@Result(column="user_id", property="userId", jdbcType=JdbcType.BIGINT),
|
||
|
@Result(column="gold_coin", property="goldCoin", jdbcType=JdbcType.DECIMAL),
|
||
|
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER),
|
||
|
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP),
|
||
|
@Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP),
|
||
|
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR),
|
||
|
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR),
|
||
|
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR)
|
||
|
})
|
||
|
BsUserAccount selectByPrimaryKey(Long id);
|
||
|
|
||
|
@UpdateProvider(type=BsUserAccountSqlProvider.class, method="updateByExampleSelective")
|
||
|
int updateByExampleSelective(@Param("record") BsUserAccount record, @Param("example") BsUserAccountExample example);
|
||
|
|
||
|
@UpdateProvider(type=BsUserAccountSqlProvider.class, method="updateByExample")
|
||
|
int updateByExample(@Param("record") BsUserAccount record, @Param("example") BsUserAccountExample example);
|
||
|
|
||
|
@UpdateProvider(type=BsUserAccountSqlProvider.class, method="updateByPrimaryKeySelective")
|
||
|
int updateByPrimaryKeySelective(BsUserAccount record);
|
||
|
|
||
|
@Update({
|
||
|
"update bs_user_account",
|
||
|
"set user_id = #{userId,jdbcType=BIGINT},",
|
||
|
"gold_coin = #{goldCoin,jdbcType=DECIMAL},",
|
||
|
"`status` = #{status,jdbcType=INTEGER},",
|
||
|
"create_time = #{createTime,jdbcType=TIMESTAMP},",
|
||
|
"update_time = #{updateTime,jdbcType=TIMESTAMP},",
|
||
|
"ext_1 = #{ext1,jdbcType=VARCHAR},",
|
||
|
"ext_2 = #{ext2,jdbcType=VARCHAR},",
|
||
|
"ext_3 = #{ext3,jdbcType=VARCHAR}",
|
||
|
"where id = #{id,jdbcType=BIGINT}"
|
||
|
})
|
||
|
int updateByPrimaryKey(BsUserAccount record);
|
||
|
}
|