|
|
@ -22,7 +22,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
</resultMap>
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
<sql id="selectBaseLocationInfoVo">
|
|
|
|
<sql id="selectBaseLocationInfoVo">
|
|
|
|
select objid, location_code, location_name, material_type, store_code, location_area, location_row, location_line, location_tier, location_status, efficiency, remark, delete_flag, record_time from base_location_info
|
|
|
|
select objid, location_code, location_name, material_type, store_code,
|
|
|
|
|
|
|
|
location_area, location_row, location_line, location_tier,
|
|
|
|
|
|
|
|
location_status, efficiency, remark, delete_flag, record_time
|
|
|
|
|
|
|
|
from base_location_info
|
|
|
|
</sql>
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -40,6 +43,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectBaseLocationInfoByObjid" parameterType="String" resultMap="BaseLocationInfoResult">
|
|
|
|
<select id="selectBaseLocationInfoByObjid" parameterType="String" resultMap="BaseLocationInfoResult">
|
|
|
|
<include refid="selectBaseLocationInfoVo"/>
|
|
|
|
<include refid="selectBaseLocationInfoVo"/>
|
|
|
|
|
|
|
|
where objid = #{objid}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|