SysCarouselMapper.xml 854 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.ydtech.modules.admin.dao.SysCarouselMapper">
  6. <resultMap id="BaseResultMap" type="com.ydtech.modules.admin.model.SysCarousel">
  7. <id property="id" column="id" jdbcType="INTEGER"/>
  8. <result property="title" column="title" jdbcType="VARCHAR"/>
  9. <result property="image" column="image" jdbcType="VARCHAR"/>
  10. <result property="url" column="url" jdbcType="VARCHAR"/>
  11. <result property="sort" column="sort" jdbcType="INTEGER"/>
  12. <result property="enable" column="is_enable" jdbcType="TINYINT"/>
  13. </resultMap>
  14. <sql id="Base_Column_List">
  15. id, title, url,
  16. sort, is_enable, image
  17. </sql>
  18. </mapper>