CheckAppVersionMapper.xml 1.62 KB
Newer Older
ilal committed
1 2 3 4 5 6 7 8 9
<?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="cn.timer.api.dao.app.CheckAppVersionMapper">

    <resultMap id="BaseResultMap" type="cn.timer.api.bean.app.CheckAppVersion" >
                <id column="id" property="id" />
                <result column="system" property="system" />
                <result column="version" property="version" />
ilal committed
10
                <result column="limit_version" property="limitVersion" />
ilal committed
11 12 13
                <result column="url" property="url" />
                <result column="download_url" property="downloadUrl" />
                <result column="remark" property="remark" />
ilal committed
14
                <result column="must" property="must" />
ilal committed
15 16 17 18 19 20 21
                <result column="update_time" property="updateTime" />
    </resultMap>

    <sql id="Base_Column_List">
                id,
                system,
                version,
ilal committed
22
                limit_version,
ilal committed
23 24 25
                url,
                download_url,
                remark,
ilal committed
26
                must,
ilal committed
27 28 29 30 31 32 33
                update_time
    </sql>
    
    <sql id="Base_Column_List_Alias">
                id CheckAppVersion_id,
                system CheckAppVersion_system,
                version CheckAppVersion_version,
ilal committed
34
                limit_version CheckAppVersion_limit_version,
ilal committed
35 36 37
                url CheckAppVersion_url,
                download_url CheckAppVersion_download_url,
                remark CheckAppVersion_remark,
ilal committed
38
                must CheckAppVersion_must,
ilal committed
39 40 41 42 43
                update_time CheckAppVersion_update_time
    </sql>


</mapper>