| 1234567891011121314151617181920 |
- <?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.ydtech.modules.admin.dao.SysCarouselMapper">
- <resultMap id="BaseResultMap" type="com.ydtech.modules.admin.model.SysCarousel">
- <id property="id" column="id" jdbcType="INTEGER"/>
- <result property="title" column="title" jdbcType="VARCHAR"/>
- <result property="image" column="image" jdbcType="VARCHAR"/>
- <result property="url" column="url" jdbcType="VARCHAR"/>
- <result property="sort" column="sort" jdbcType="INTEGER"/>
- <result property="enable" column="is_enable" jdbcType="TINYINT"/>
- </resultMap>
- <sql id="Base_Column_List">
- id, title, url,
- sort, is_enable, image
- </sql>
- </mapper>
|