GoodsMapper.xml 904 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.zhentao.mapper.GoodsMapper">
  6. <resultMap id="BaseResultMap" type="com.zhentao.pojo.Goods">
  7. <id property="id" column="id" jdbcType="INTEGER"/>
  8. <result property="goodsName" column="goods_name" jdbcType="VARCHAR"/>
  9. <result property="descriptions" column="descriptions" jdbcType="VARCHAR"/>
  10. <result property="goodsImg" column="goods_img" jdbcType="VARCHAR"/>
  11. <result property="content" column="content" jdbcType="VARCHAR"/>
  12. <result property="createdTime" column="created_time" jdbcType="TIMESTAMP"/>
  13. </resultMap>
  14. <sql id="Base_Column_List">
  15. id,goods_name,descriptions,
  16. goods_img,content,created_time
  17. </sql>
  18. </mapper>