浏览代码

[积分][修改][用户查询name修改为nick_name]

release_toaliyun_real
hanxueda 7 年前
父节点
当前提交
e6f9562110
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. +4
    -4
      mallinkService/src/main/resources/mapper/WxCreditHistoryMapper.xml

+ 4
- 4
mallinkService/src/main/resources/mapper/WxCreditHistoryMapper.xml 查看文件

@@ -75,10 +75,10 @@

<sql id="customWhereConditions">
where 1 = 1
<if test=" null != name ">
and basic.name like concat('%', #{name},'%')
<if test=" null != name and '' != name">
and basic.nick_name like concat('%', #{name},'%')
</if>
<if test=" null != phone ">
<if test=" null != phone and '' != phone">
and basic.phone like concat('%', #{phone},'%')
</if>
<if test=" null != startTime ">
@@ -100,7 +100,7 @@
<select id="findListMore" parameterType="com.iformall.domain.po.WxCreditHistory" resultType="com.iformall.domain.vo.WxCreditHistoryVo">
SELECT
credit.id creditId,
basic.NAME name,
basic.nick_name name,
basic.phone phone,
basic.sex sex,
credit.tenant_id tenantId,


正在加载...
取消
保存