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.
133 lines
6.4 KiB
133 lines
6.4 KiB
package com.hai.dao;
|
|
|
|
import com.hai.entity.HighStoreUser;
|
|
import com.hai.entity.HighStoreUserExample;
|
|
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 HighStoreUserMapper extends HighStoreUserMapperExt {
|
|
@SelectProvider(type=HighStoreUserSqlProvider.class, method="countByExample")
|
|
long countByExample(HighStoreUserExample example);
|
|
|
|
@DeleteProvider(type=HighStoreUserSqlProvider.class, method="deleteByExample")
|
|
int deleteByExample(HighStoreUserExample example);
|
|
|
|
@Delete({
|
|
"delete from high_store_user",
|
|
"where id = #{id,jdbcType=BIGINT}"
|
|
})
|
|
int deleteByPrimaryKey(Long id);
|
|
|
|
@Insert({
|
|
"insert into high_store_user (user_id, user_name, ",
|
|
"user_phone, store_id, ",
|
|
"store_name, create_time, ",
|
|
"update_time, `status`, ",
|
|
"op_id, op_name, ext_1, ",
|
|
"ext_2, ext_3)",
|
|
"values (#{userId,jdbcType=BIGINT}, #{userName,jdbcType=VARCHAR}, ",
|
|
"#{userPhone,jdbcType=VARCHAR}, #{storeId,jdbcType=BIGINT}, ",
|
|
"#{storeName,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, ",
|
|
"#{updateTime,jdbcType=TIMESTAMP}, #{status,jdbcType=INTEGER}, ",
|
|
"#{opId,jdbcType=BIGINT}, #{opName,jdbcType=VARCHAR}, #{ext1,jdbcType=VARCHAR}, ",
|
|
"#{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})"
|
|
})
|
|
@Options(useGeneratedKeys=true,keyProperty="id")
|
|
int insert(HighStoreUser record);
|
|
|
|
@InsertProvider(type=HighStoreUserSqlProvider.class, method="insertSelective")
|
|
@Options(useGeneratedKeys=true,keyProperty="id")
|
|
int insertSelective(HighStoreUser record);
|
|
|
|
@SelectProvider(type=HighStoreUserSqlProvider.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="user_name", property="userName", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="user_phone", property="userPhone", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="store_id", property="storeId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="store_name", property="storeName", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP),
|
|
@Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP),
|
|
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER),
|
|
@Result(column="op_id", property="opId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="op_name", property="opName", jdbcType=JdbcType.VARCHAR),
|
|
@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<HighStoreUser> selectByExample(HighStoreUserExample example);
|
|
|
|
@Select({
|
|
"select",
|
|
"id, user_id, user_name, user_phone, store_id, store_name, create_time, update_time, ",
|
|
"`status`, op_id, op_name, ext_1, ext_2, ext_3",
|
|
"from high_store_user",
|
|
"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="user_name", property="userName", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="user_phone", property="userPhone", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="store_id", property="storeId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="store_name", property="storeName", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP),
|
|
@Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP),
|
|
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER),
|
|
@Result(column="op_id", property="opId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="op_name", property="opName", jdbcType=JdbcType.VARCHAR),
|
|
@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)
|
|
})
|
|
HighStoreUser selectByPrimaryKey(Long id);
|
|
|
|
@UpdateProvider(type=HighStoreUserSqlProvider.class, method="updateByExampleSelective")
|
|
int updateByExampleSelective(@Param("record") HighStoreUser record, @Param("example") HighStoreUserExample example);
|
|
|
|
@UpdateProvider(type=HighStoreUserSqlProvider.class, method="updateByExample")
|
|
int updateByExample(@Param("record") HighStoreUser record, @Param("example") HighStoreUserExample example);
|
|
|
|
@UpdateProvider(type=HighStoreUserSqlProvider.class, method="updateByPrimaryKeySelective")
|
|
int updateByPrimaryKeySelective(HighStoreUser record);
|
|
|
|
@Update({
|
|
"update high_store_user",
|
|
"set user_id = #{userId,jdbcType=BIGINT},",
|
|
"user_name = #{userName,jdbcType=VARCHAR},",
|
|
"user_phone = #{userPhone,jdbcType=VARCHAR},",
|
|
"store_id = #{storeId,jdbcType=BIGINT},",
|
|
"store_name = #{storeName,jdbcType=VARCHAR},",
|
|
"create_time = #{createTime,jdbcType=TIMESTAMP},",
|
|
"update_time = #{updateTime,jdbcType=TIMESTAMP},",
|
|
"`status` = #{status,jdbcType=INTEGER},",
|
|
"op_id = #{opId,jdbcType=BIGINT},",
|
|
"op_name = #{opName,jdbcType=VARCHAR},",
|
|
"ext_1 = #{ext1,jdbcType=VARCHAR},",
|
|
"ext_2 = #{ext2,jdbcType=VARCHAR},",
|
|
"ext_3 = #{ext3,jdbcType=VARCHAR}",
|
|
"where id = #{id,jdbcType=BIGINT}"
|
|
})
|
|
int updateByPrimaryKey(HighStoreUser record);
|
|
} |