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.
147 lines
7.3 KiB
147 lines
7.3 KiB
package com.hai.dao;
|
|
|
|
import com.hai.entity.HighAgent;
|
|
import com.hai.entity.HighAgentExample;
|
|
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 HighAgentMapper extends HighAgentMapperExt {
|
|
@SelectProvider(type=HighAgentSqlProvider.class, method="countByExample")
|
|
long countByExample(HighAgentExample example);
|
|
|
|
@DeleteProvider(type=HighAgentSqlProvider.class, method="deleteByExample")
|
|
int deleteByExample(HighAgentExample example);
|
|
|
|
@Delete({
|
|
"delete from high_agent",
|
|
"where id = #{id,jdbcType=BIGINT}"
|
|
})
|
|
int deleteByPrimaryKey(Long id);
|
|
|
|
@Insert({
|
|
"insert into high_agent (`type`, parent_id, ",
|
|
"parent_name, agent_key, ",
|
|
"agent_name, agent_address, ",
|
|
"agent_user, agent_phone, ",
|
|
"create_time, `status`, ",
|
|
"user_name, operator_id, ",
|
|
"operator_name, ext_1, ",
|
|
"ext_2, ext_3)",
|
|
"values (#{type,jdbcType=INTEGER}, #{parentId,jdbcType=BIGINT}, ",
|
|
"#{parentName,jdbcType=VARCHAR}, #{agentKey,jdbcType=VARCHAR}, ",
|
|
"#{agentName,jdbcType=VARCHAR}, #{agentAddress,jdbcType=VARCHAR}, ",
|
|
"#{agentUser,jdbcType=VARCHAR}, #{agentPhone,jdbcType=VARCHAR}, ",
|
|
"#{createTime,jdbcType=TIMESTAMP}, #{status,jdbcType=INTEGER}, ",
|
|
"#{userName,jdbcType=VARCHAR}, #{operatorId,jdbcType=BIGINT}, ",
|
|
"#{operatorName,jdbcType=VARCHAR}, #{ext1,jdbcType=VARCHAR}, ",
|
|
"#{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})"
|
|
})
|
|
@Options(useGeneratedKeys=true,keyProperty="id")
|
|
int insert(HighAgent record);
|
|
|
|
@InsertProvider(type=HighAgentSqlProvider.class, method="insertSelective")
|
|
@Options(useGeneratedKeys=true,keyProperty="id")
|
|
int insertSelective(HighAgent record);
|
|
|
|
@SelectProvider(type=HighAgentSqlProvider.class, method="selectByExample")
|
|
@Results({
|
|
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true),
|
|
@Result(column="type", property="type", jdbcType=JdbcType.INTEGER),
|
|
@Result(column="parent_id", property="parentId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="parent_name", property="parentName", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="agent_key", property="agentKey", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="agent_address", property="agentAddress", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="agent_user", property="agentUser", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="agent_phone", property="agentPhone", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP),
|
|
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER),
|
|
@Result(column="user_name", property="userName", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="operator_id", property="operatorId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="operator_name", property="operatorName", 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<HighAgent> selectByExample(HighAgentExample example);
|
|
|
|
@Select({
|
|
"select",
|
|
"id, `type`, parent_id, parent_name, agent_key, agent_name, agent_address, agent_user, ",
|
|
"agent_phone, create_time, `status`, user_name, operator_id, operator_name, ext_1, ",
|
|
"ext_2, ext_3",
|
|
"from high_agent",
|
|
"where id = #{id,jdbcType=BIGINT}"
|
|
})
|
|
@Results({
|
|
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true),
|
|
@Result(column="type", property="type", jdbcType=JdbcType.INTEGER),
|
|
@Result(column="parent_id", property="parentId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="parent_name", property="parentName", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="agent_key", property="agentKey", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="agent_address", property="agentAddress", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="agent_user", property="agentUser", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="agent_phone", property="agentPhone", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP),
|
|
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER),
|
|
@Result(column="user_name", property="userName", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="operator_id", property="operatorId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="operator_name", property="operatorName", 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)
|
|
})
|
|
HighAgent selectByPrimaryKey(Long id);
|
|
|
|
@UpdateProvider(type=HighAgentSqlProvider.class, method="updateByExampleSelective")
|
|
int updateByExampleSelective(@Param("record") HighAgent record, @Param("example") HighAgentExample example);
|
|
|
|
@UpdateProvider(type=HighAgentSqlProvider.class, method="updateByExample")
|
|
int updateByExample(@Param("record") HighAgent record, @Param("example") HighAgentExample example);
|
|
|
|
@UpdateProvider(type=HighAgentSqlProvider.class, method="updateByPrimaryKeySelective")
|
|
int updateByPrimaryKeySelective(HighAgent record);
|
|
|
|
@Update({
|
|
"update high_agent",
|
|
"set `type` = #{type,jdbcType=INTEGER},",
|
|
"parent_id = #{parentId,jdbcType=BIGINT},",
|
|
"parent_name = #{parentName,jdbcType=VARCHAR},",
|
|
"agent_key = #{agentKey,jdbcType=VARCHAR},",
|
|
"agent_name = #{agentName,jdbcType=VARCHAR},",
|
|
"agent_address = #{agentAddress,jdbcType=VARCHAR},",
|
|
"agent_user = #{agentUser,jdbcType=VARCHAR},",
|
|
"agent_phone = #{agentPhone,jdbcType=VARCHAR},",
|
|
"create_time = #{createTime,jdbcType=TIMESTAMP},",
|
|
"`status` = #{status,jdbcType=INTEGER},",
|
|
"user_name = #{userName,jdbcType=VARCHAR},",
|
|
"operator_id = #{operatorId,jdbcType=BIGINT},",
|
|
"operator_name = #{operatorName,jdbcType=VARCHAR},",
|
|
"ext_1 = #{ext1,jdbcType=VARCHAR},",
|
|
"ext_2 = #{ext2,jdbcType=VARCHAR},",
|
|
"ext_3 = #{ext3,jdbcType=VARCHAR}",
|
|
"where id = #{id,jdbcType=BIGINT}"
|
|
})
|
|
int updateByPrimaryKey(HighAgent record);
|
|
} |