1234567891011121314151617181920212223 |
- <?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.juxiao.xchat.module.xbd.mapper.operation.AppChannelMapper" >
- <resultMap id="BaseResultMap" type="com.juxiao.xchat.module.xbd.domain.operation.AppChannel" >
- <id column="id" property="id" jdbcType="INTEGER" />
- <result column="name" property="name" jdbcType="VARCHAR" />
- <result column="type" property="type" jdbcType="INTEGER" />
- <result column="create_time" property="createTime" jdbcType="TIMESTAMP" />
- <result column="system_id" property="systemId" jdbcType="INTEGER" />
- </resultMap>
- <sql id="Base_Column_List" >
- id, name, type, create_time, system_id
- </sql>
- <select id="getAppChannelList" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
- select
- <include refid="Base_Column_List" />
- from app_channel
- </select>
- </mapper>
|