This commit is contained in:
77
2024-04-23 23:33:03 +08:00
parent 02cb0db041
commit eaa659b415
11 changed files with 76 additions and 14 deletions

View File

@@ -4,16 +4,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.xq.mapper.AreaCodeMapper">
<resultMap type="com.ruoyi.xq.domain.AreaCode" id="AreaCodeResult">
<result property="code" column="code"/>
<result property="name" column="name"/>
<result property="level" column="level"/>
<result property="pcode" column="pcode"/>
<result property="pname" column="pname"/>
<result property="fullname" column="fullname"/>
<result property="longitude" column="longitude"/>
<result property="latitude" column="latitude"/>
</resultMap>
<select id="homeCity" resultType="com.ruoyi.xq.dto.app.areacode.AreaCodeHomeVo">
select t1.code,t1.name,t1.first_spell
from area_code t1
left join area_code t2 on t1.pcode = t2.code
where t1.level = 'city' and t1.enable_status = 1 and t2.enable_status = 1
</select>
</mapper>

View File

@@ -67,6 +67,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="bo.mobile != null and bo.mobile != ''">
and t2.mobile = #{bo.mobile}
</if>
<if test="bo.auditStatus != null ">
and t1.audit_status = #{bo.auditStatus}
</if>
</where>
order by create_time desc
</select>

View File

@@ -18,6 +18,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="bo.mobile != null and bo.mobile != ''">
and t2.mobile = #{bo.mobile}
</if>
<if test="bo.auditStatus != null ">
and t1.audit_status = #{bo.auditStatus}
</if>
</where>
order by t1.create_time desc
</select>

View File

@@ -18,6 +18,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="bo.mobile != null and bo.mobile != ''">
and t2.mobile = #{bo.mobile}
</if>
<if test="bo.auditStatus != null ">
and t1.audit_status = #{bo.auditStatus}
</if>
</where>
order by create_time desc
</select>

View File

@@ -31,6 +31,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="bo.mobile != null and bo.mobile != ''">
and t2.mobile = #{bo.mobile}
</if>
<if test="bo.auditStatus != null ">
and t1.audit_status = #{bo.auditStatus}
</if>
</where>
order by create_time desc
</select>