Browse Source

[feat]修改客户操作记录,错误operPeople字段判断查询条件

dev
zhangsiqi 6 months ago
parent
commit
34c4f75699
  1. 4
      ruoyi-admin/src/main/resources/mapper/system/SysCustomerOperMapper.xml

4
ruoyi-admin/src/main/resources/mapper/system/SysCustomerOperMapper.xml

@ -54,7 +54,7 @@
<if test="enterpriseCode!= null and enterpriseCode != ''">enterpriseCode,</if>
<if test="enterpriseName!= null and enterpriseName != ''">enterpriseName,</if>
<if test="oper != null and oper != ''">opertion,</if>
<if test="operPeople != null and operPeopple != ''">oper_user,</if>
<if test="operPeople != null and operPeople != ''">oper_user,</if>
<if test="operStatus != null and operStatus != ''">oper_status,</if>
<if test="createTime != null and createTime != ''">create_time,</if>
</trim>
@ -63,7 +63,7 @@
<if test="enterpriseCode!= null and enterpriseCode != ''">#{enterpriseCode},</if>
<if test="enterpriseName!= null and enterpriseName != ''">#{enterpriseName},</if>
<if test="oper != null and oper != ''">#{oper},</if>
<if test="operPeople != null and operPeopple != ''">#{operPeople},</if>
<if test="operPeople != null and operPeople != ''">#{operPeople},</if>
<if test="operStatus != null and operStatus != ''">#{operStatus},</if>
<if test="createTime != null and createTime != ''">#{createTime},</if>
</trim>

Loading…
Cancel
Save