1.建店通过插入督导信息
2.证照审核权限判断
This commit is contained in:
@@ -374,6 +374,20 @@
|
||||
WHERE id = #{regionId}
|
||||
)
|
||||
</select>
|
||||
<select id="getFightRegionByRegionIds" resultType="com.cool.store.entity.RegionDO">
|
||||
select <include refid="fields"/>
|
||||
from region_${enterpriseId}
|
||||
where deleted = 0
|
||||
and third_region_type = '2'
|
||||
<if test="regionIds != null">
|
||||
AND id in (
|
||||
<foreach collection="regionIds" separator="," item="id">
|
||||
#{id}
|
||||
</foreach>
|
||||
)
|
||||
</if>
|
||||
|
||||
</select>
|
||||
|
||||
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user