peng
2025-06-13 355c1a7e343e0d3f75befac1cf49be07ec11b4e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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.lili.modules.lmk.mapper.LmkStoreMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="cn.lili.modules.lmk.domain.vo.StoreVO">
        <id column="id" property="id"/>
        <result column="store_name" property="storeName"/>
 
    </resultMap>
 
 
    <select id="getStoreSelectOptions" resultMap="BaseResultMap">
        SELECT
            LS.id,
            LS.store_name
            FROM li_store LS
    </select>
 
</mapper>