23 lines
895 B
XML
23 lines
895 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.cool.store.mapper.ApplyLicenseMapper">
|
|
|
|
|
|
<select id="licenseList" resultType="com.cool.store.response.LicenseListResponse">
|
|
select
|
|
s.shop_name as storeName,
|
|
s.store_num as storeNum,
|
|
s.shop_manager_user_id as shopManagerUserId,
|
|
l.username as franchiseeName,
|
|
l.mobile as franchiseeMobile,
|
|
l.region_id AS fightRegionId,
|
|
l.investment_manager AS investmentManager,
|
|
s.supervisor_user_id AS supervisorUserId,
|
|
o.create_time as submitTime,
|
|
o.submit_status as status
|
|
FROM
|
|
xfsg_license_transact o
|
|
LEFT JOIN xfsg_shop_info s ON o.shop_id = s.id
|
|
LEFT JOIN xfsg_line_info l ON l.id = s.line_id
|
|
</select>
|
|
</mapper> |