22 lines
1016 B
XML
22 lines
1016 B
XML
<?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.hshh.nation.transport.mapper.TransportAbilityMapper">
|
|
|
|
<!-- 通用查询映射结果 -->
|
|
<resultMap id="BaseResultMap" type="com.hshh.nation.transport.entity.TransportAbility">
|
|
<id column="id" property="id" />
|
|
<result column="transportation_id" property="transportationId" />
|
|
<result column="transportation_type" property="transportationType" />
|
|
<result column="fill_type_id" property="fillTypeId" />
|
|
<result column="fill_obj_count" property="fillObjCount" />
|
|
<result column="load_speed" property="loadSpeed" />
|
|
<result column="unload_speed" property="unloadSpeed" />
|
|
</resultMap>
|
|
|
|
<!-- 通用查询结果列 -->
|
|
<sql id="Base_Column_List">
|
|
id, transportation_id, transportation_type, fill_type_id, fill_obj_count, load_speed, unload_speed
|
|
</sql>
|
|
|
|
</mapper>
|