package com.hai.dao; import com.hai.entity.BsCompany; import com.hai.entity.BsCompanyExample; import org.apache.ibatis.annotations.*; import org.apache.ibatis.type.JdbcType; import org.springframework.stereotype.Repository; import java.util.List; /** * * 代码由工具生成,请勿修改!!! * 如果需要扩展请在其父类进行扩展 * **/ @Repository public interface BsCompanyMapper extends BsCompanyMapperExt { @SelectProvider(type= BsCompanySqlProvider.class, method="countByExample") long countByExample(BsCompanyExample example); @DeleteProvider(type= BsCompanySqlProvider.class, method="deleteByExample") int deleteByExample(BsCompanyExample example); @Delete({ "delete from bs_company", "where id = #{id,jdbcType=BIGINT}" }) int deleteByPrimaryKey(Long id); @Insert({ "insert into bs_company (region_id, `name`, ", "address, phone, ", "email, site_url, ", "logo, introduction, ", "`status`, create_time, ", "update_time, ext_1, ", "ext_2, ext_3)", "values (#{regionId,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, ", "#{address,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, ", "#{email,jdbcType=VARCHAR}, #{siteUrl,jdbcType=VARCHAR}, ", "#{logo,jdbcType=VARCHAR}, #{introduction,jdbcType=VARCHAR}, ", "#{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(BsCompany record); @InsertProvider(type= BsCompanySqlProvider.class, method="insertSelective") @Options(useGeneratedKeys=true,keyProperty="id") int insertSelective(BsCompany record); @SelectProvider(type= BsCompanySqlProvider.class, method="selectByExample") @Results({ @Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), @Result(column="region_id", property="regionId", jdbcType=JdbcType.VARCHAR), @Result(column="name", property="name", jdbcType=JdbcType.VARCHAR), @Result(column="address", property="address", jdbcType=JdbcType.VARCHAR), @Result(column="phone", property="phone", jdbcType=JdbcType.VARCHAR), @Result(column="email", property="email", jdbcType=JdbcType.VARCHAR), @Result(column="site_url", property="siteUrl", jdbcType=JdbcType.VARCHAR), @Result(column="logo", property="logo", jdbcType=JdbcType.VARCHAR), @Result(column="introduction", property="introduction", jdbcType=JdbcType.VARCHAR), @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 selectByExample(BsCompanyExample example); @Select({ "select", "id, region_id, `name`, address, phone, email, site_url, logo, introduction, ", "`status`, create_time, update_time, ext_1, ext_2, ext_3", "from bs_company", "where id = #{id,jdbcType=BIGINT}" }) @Results({ @Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), @Result(column="region_id", property="regionId", jdbcType=JdbcType.VARCHAR), @Result(column="name", property="name", jdbcType=JdbcType.VARCHAR), @Result(column="address", property="address", jdbcType=JdbcType.VARCHAR), @Result(column="phone", property="phone", jdbcType=JdbcType.VARCHAR), @Result(column="email", property="email", jdbcType=JdbcType.VARCHAR), @Result(column="site_url", property="siteUrl", jdbcType=JdbcType.VARCHAR), @Result(column="logo", property="logo", jdbcType=JdbcType.VARCHAR), @Result(column="introduction", property="introduction", jdbcType=JdbcType.VARCHAR), @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) }) BsCompany selectByPrimaryKey(Long id); @UpdateProvider(type= BsCompanySqlProvider.class, method="updateByExampleSelective") int updateByExampleSelective(@Param("record") BsCompany record, @Param("example") BsCompanyExample example); @UpdateProvider(type= BsCompanySqlProvider.class, method="updateByExample") int updateByExample(@Param("record") BsCompany record, @Param("example") BsCompanyExample example); @UpdateProvider(type= BsCompanySqlProvider.class, method="updateByPrimaryKeySelective") int updateByPrimaryKeySelective(BsCompany record); @Update({ "update bs_company", "set region_id = #{regionId,jdbcType=VARCHAR},", "`name` = #{name,jdbcType=VARCHAR},", "address = #{address,jdbcType=VARCHAR},", "phone = #{phone,jdbcType=VARCHAR},", "email = #{email,jdbcType=VARCHAR},", "site_url = #{siteUrl,jdbcType=VARCHAR},", "logo = #{logo,jdbcType=VARCHAR},", "introduction = #{introduction,jdbcType=VARCHAR},", "`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(BsCompany record); }