SecondhandFlawMapper.xml 935 Bytes
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yoho.product.dal.SecondhandFlawMapper">
  <resultMap id="BaseResultMap" type="com.yoho.product.model.SecondhandFlaw">
    <id column="id" jdbcType="INTEGER" property="id" />
    <result column="type" jdbcType="INTEGER" property="type" />
    <result column="name" jdbcType="VARCHAR" property="name" />
    <result column="attr" jdbcType="VARCHAR" property="attr" />
    <result column="order_by" jdbcType="INTEGER" property="orderBy" />
  </resultMap>

  <select id="selectByType" resultMap="BaseResultMap">
    select id, type, name, attr, order_by
    from secondhand_flaw 
    where type=#{type} 
    order by order_by
  </select>

  <select id="selectByIds" resultMap="BaseResultMap">
    select * from secondhand_flaw where id in(${ids})
  </select>

</mapper>