LocationIdleMapper.xml 839 Bytes
<?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.huaheng.pc.monitor.idle.mapper.LocationIdleMapper">
    
    <resultMap type="com.huaheng.pc.monitor.idle.domain.LocationIdle" id="locationIdleResult">
        <result property="id"    column="id"    />
        <result property="roadway"    column="roadway"    />
        <result property="allCount"    column="allCount"    />
        <result property="highCount"    column="highCount"    />
        <result property="lowCount"    column="lowCount"    />
        <result property="irow"    column="irow"    />
    </resultMap>
	<sql id="selectlocationIdleVo">
        select id, roadway, allCount, highCount, lowCount, irow from location_idle
    </sql>
    
</mapper>