feat:新管家

This commit is contained in:
苏竹红
2025-05-09 15:10:44 +08:00
parent ec2b78b4dd
commit 9939a7c1aa
13 changed files with 499 additions and 6 deletions

View File

@@ -0,0 +1,44 @@
<?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.BigRegionMapper">
<resultMap id="BaseResultMap" type="com.cool.store.entity.BigRegionDO">
<!--
WARNING - @mbg.generated
-->
<id column="id" jdbcType="BIGINT" property="id" />
<result column="region_id" jdbcType="BIGINT" property="regionId" />
<result column="region_name" jdbcType="VARCHAR" property="regionName" />
<result column="org_code" jdbcType="VARCHAR" property="orgCode" />
<result column="org_id" jdbcType="VARCHAR" property="orgId" />
<result column="org_name" jdbcType="VARCHAR" property="orgName" />
<result column="join_mode" jdbcType="TINYINT" property="joinMode" />
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
</resultMap>
<select id="queryAllBigRegion" resultType="com.cool.store.dto.region.BigRegionDTO">
select DISTINCT
region_id as regionId,
region_name as regionName
FROM `xfsg_big_region`
<where>
<if test="keyword!=null and keyword !=''">
and region_name like CONCAT('%',#{keyword},'%')
</if>
</where>
</select>
<select id="queryOrgInfoByBigRegionAndJoinMode" resultMap="BaseResultMap">
select *
FROM `xfsg_big_region`
<where>
<if test="regionId !=null ">
and region_id = #{regionId}
</if>
<if test="joinMode !=null ">
and join_mode = #{joinMode}
</if>
</where>
</select>
</mapper>