Commit 77923ca6 by zhangxingmin

保险公司

parent a1ccb8f5
...@@ -15,7 +15,7 @@ import org.springframework.web.bind.annotation.RequestMapping; ...@@ -15,7 +15,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
/** /**
* 系统用户-销售用户扩展信息 * 保险-转介人(销售员)信息
* *
* @author zxm * @author zxm
* @since 2025-12-19 * @since 2025-12-19
......
...@@ -15,7 +15,7 @@ import org.springframework.web.bind.annotation.RequestMapping; ...@@ -15,7 +15,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
/** /**
* 系统用户-签单用户扩展信息 * 保险-签单员信息
* *
* @author zxm * @author zxm
* @since 2025-12-19 * @since 2025-12-19
......
...@@ -3,12 +3,12 @@ ...@@ -3,12 +3,12 @@
<mapper namespace="com.yd.insurance.base.service.dao.UserSaleExpandMapper"> <mapper namespace="com.yd.insurance.base.service.dao.UserSaleExpandMapper">
<select id="page" resultType="com.yd.insurance.base.feign.response.usersaleexpand.ApiUserSaleExpandPageResponse"> <select id="page" resultType="com.yd.insurance.base.feign.response.usersaleexpand.ApiUserSaleExpandPageResponse">
select use.* from user_sale_expand use select u.* from user_sale_expand u
<where> <where>
<if test="request.realName != null and request.realName != ''"> <if test="request.realName != null and request.realName != ''">
and use.real_name like concat('%', #{request.realName}, '%') and u.real_name like concat('%', #{request.realName}, '%')
</if> </if>
and use.is_deleted = 0 and u.is_deleted = 0
</where> </where>
</select> </select>
</mapper> </mapper>
...@@ -3,12 +3,12 @@ ...@@ -3,12 +3,12 @@
<mapper namespace="com.yd.insurance.base.service.dao.UserSignExpandMapper"> <mapper namespace="com.yd.insurance.base.service.dao.UserSignExpandMapper">
<select id="page" resultType="com.yd.insurance.base.feign.response.usersignexpand.ApiUserSignExpandPageResponse"> <select id="page" resultType="com.yd.insurance.base.feign.response.usersignexpand.ApiUserSignExpandPageResponse">
select use.* from user_sign_expand use select u.* from user_sign_expand u
<where> <where>
<if test="request.realName != null and request.realName != ''"> <if test="request.realName != null and request.realName != ''">
and use.real_name like concat('%', #{request.realName}, '%') and u.real_name like concat('%', #{request.realName}, '%')
</if> </if>
and use.is_deleted = 0 and u.is_deleted = 0
</where> </where>
</select> </select>
</mapper> </mapper>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment