feat:证照相关

This commit is contained in:
guohb
2024-04-24 17:47:32 +08:00
parent 2a508cf1c5
commit 10bd82792d
13 changed files with 554 additions and 12 deletions

View File

@@ -0,0 +1,23 @@
<?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>