自动化立体仓库 - WMS系统
#
1
11 小时以前 955fef9ba80fda70582d926a2c6f2af527447bb5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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.zy.asrs.mapper.LocSuppMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.zy.asrs.entity.LocSupp">
        <result column="owner" property="owner" />
        <result column="id" property="id" />
        <result column="owner_uuid" property="ownerUuid" />
        <result column="status" property="status" />
        <result column="owner_type" property="ownerType" />
        <result column="create_time" property="createTime" />
        <result column="update_time" property="updateTime" />
 
    </resultMap>
    <select id="selectByUuid" resultMap="BaseResultMap">
        select top 1 * from bas_loc_supp where 1=1 and owner_uuid = #{ownerUuid}
    </select>
</mapper>