<?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.lyms.talkonlineweb.mapper.LymsChatgroupMapper">
<resultMap id="BaseResultMap" type="com.lyms.talkonlineweb.domain.LymsChatgroup">
<result property="id" column="id" jdbcType="INTEGER"/>
<result property="groupname" column="groupname" jdbcType="VARCHAR"/>
<result property="description" column="description" jdbcType="VARCHAR"/>
<result property="owner" column="owner" jdbcType="INTEGER"/>
<result property="from" column="from" jdbcType="INTEGER"/>
<result property="target" column="target" jdbcType="INTEGER"/>
<result property="ctime" column="ctime" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
id,groupname,description,
owner,from,target,
ctime
</sql>
</mapper>