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.
142 lines
7.2 KiB
142 lines
7.2 KiB
package com.hfkj.dao;
|
|
|
|
import com.hfkj.entity.BsRebatePartMer;
|
|
import com.hfkj.entity.BsRebatePartMerExample;
|
|
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 BsRebatePartMerMapper extends BsRebatePartMerMapperExt {
|
|
@SelectProvider(type=BsRebatePartMerSqlProvider.class, method="countByExample")
|
|
long countByExample(BsRebatePartMerExample example);
|
|
|
|
@DeleteProvider(type=BsRebatePartMerSqlProvider.class, method="deleteByExample")
|
|
int deleteByExample(BsRebatePartMerExample example);
|
|
|
|
@Delete({
|
|
"delete from bs_rebate_part_mer",
|
|
"where id = #{id,jdbcType=BIGINT}"
|
|
})
|
|
int deleteByPrimaryKey(Long id);
|
|
|
|
@Insert({
|
|
"insert into bs_rebate_part_mer (company_id, agent_id, ",
|
|
"agent_name, salesman_id, ",
|
|
"salesman_name, mer_id, ",
|
|
"mer_no, mer_name, ",
|
|
"mer_abbreviate, create_time, ",
|
|
"update_time, `status`, ",
|
|
"ext_1, ext_2, ext_3)",
|
|
"values (#{companyId,jdbcType=BIGINT}, #{agentId,jdbcType=BIGINT}, ",
|
|
"#{agentName,jdbcType=VARCHAR}, #{salesmanId,jdbcType=BIGINT}, ",
|
|
"#{salesmanName,jdbcType=VARCHAR}, #{merId,jdbcType=BIGINT}, ",
|
|
"#{merNo,jdbcType=VARCHAR}, #{merName,jdbcType=VARCHAR}, ",
|
|
"#{merAbbreviate,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, ",
|
|
"#{updateTime,jdbcType=TIMESTAMP}, #{status,jdbcType=INTEGER}, ",
|
|
"#{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})"
|
|
})
|
|
@Options(useGeneratedKeys=true,keyProperty="id")
|
|
int insert(BsRebatePartMer record);
|
|
|
|
@InsertProvider(type=BsRebatePartMerSqlProvider.class, method="insertSelective")
|
|
@Options(useGeneratedKeys=true,keyProperty="id")
|
|
int insertSelective(BsRebatePartMer record);
|
|
|
|
@SelectProvider(type=BsRebatePartMerSqlProvider.class, method="selectByExample")
|
|
@Results({
|
|
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true),
|
|
@Result(column="company_id", property="companyId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="salesman_id", property="salesmanId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="salesman_name", property="salesmanName", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="mer_id", property="merId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="mer_no", property="merNo", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="mer_name", property="merName", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="mer_abbreviate", property="merAbbreviate", 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="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<BsRebatePartMer> selectByExample(BsRebatePartMerExample example);
|
|
|
|
@Select({
|
|
"select",
|
|
"id, company_id, agent_id, agent_name, salesman_id, salesman_name, mer_id, mer_no, ",
|
|
"mer_name, mer_abbreviate, create_time, update_time, `status`, ext_1, ext_2, ",
|
|
"ext_3",
|
|
"from bs_rebate_part_mer",
|
|
"where id = #{id,jdbcType=BIGINT}"
|
|
})
|
|
@Results({
|
|
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true),
|
|
@Result(column="company_id", property="companyId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="salesman_id", property="salesmanId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="salesman_name", property="salesmanName", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="mer_id", property="merId", jdbcType=JdbcType.BIGINT),
|
|
@Result(column="mer_no", property="merNo", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="mer_name", property="merName", jdbcType=JdbcType.VARCHAR),
|
|
@Result(column="mer_abbreviate", property="merAbbreviate", 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="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)
|
|
})
|
|
BsRebatePartMer selectByPrimaryKey(Long id);
|
|
|
|
@UpdateProvider(type=BsRebatePartMerSqlProvider.class, method="updateByExampleSelective")
|
|
int updateByExampleSelective(@Param("record") BsRebatePartMer record, @Param("example") BsRebatePartMerExample example);
|
|
|
|
@UpdateProvider(type=BsRebatePartMerSqlProvider.class, method="updateByExample")
|
|
int updateByExample(@Param("record") BsRebatePartMer record, @Param("example") BsRebatePartMerExample example);
|
|
|
|
@UpdateProvider(type=BsRebatePartMerSqlProvider.class, method="updateByPrimaryKeySelective")
|
|
int updateByPrimaryKeySelective(BsRebatePartMer record);
|
|
|
|
@Update({
|
|
"update bs_rebate_part_mer",
|
|
"set company_id = #{companyId,jdbcType=BIGINT},",
|
|
"agent_id = #{agentId,jdbcType=BIGINT},",
|
|
"agent_name = #{agentName,jdbcType=VARCHAR},",
|
|
"salesman_id = #{salesmanId,jdbcType=BIGINT},",
|
|
"salesman_name = #{salesmanName,jdbcType=VARCHAR},",
|
|
"mer_id = #{merId,jdbcType=BIGINT},",
|
|
"mer_no = #{merNo,jdbcType=VARCHAR},",
|
|
"mer_name = #{merName,jdbcType=VARCHAR},",
|
|
"mer_abbreviate = #{merAbbreviate,jdbcType=VARCHAR},",
|
|
"create_time = #{createTime,jdbcType=TIMESTAMP},",
|
|
"update_time = #{updateTime,jdbcType=TIMESTAMP},",
|
|
"`status` = #{status,jdbcType=INTEGER},",
|
|
"ext_1 = #{ext1,jdbcType=VARCHAR},",
|
|
"ext_2 = #{ext2,jdbcType=VARCHAR},",
|
|
"ext_3 = #{ext3,jdbcType=VARCHAR}",
|
|
"where id = #{id,jdbcType=BIGINT}"
|
|
})
|
|
int updateByPrimaryKey(BsRebatePartMer record);
|
|
} |