Browse Source

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

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

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

@ -50,11 +50,11 @@
<insert id="insertSysCustomerOper" parameterType="SysCustomerOper" useGeneratedKeys="true" keyProperty="id"> <insert id="insertSysCustomerOper" parameterType="SysCustomerOper" useGeneratedKeys="true" keyProperty="id">
insert into sys_customer_oper insert into sys_customer_oper
<trim prefix="(" suffix=")" suffixOverrides=","> <trim prefix="(" suffix=")" suffixOverrides=",">
<if test="purser != null and purser != ''"> purser,</if> <if test="purser != null and purser != ''">purser,</if>
<if test="enterpriseCode!= null and enterpriseCode != ''">enterpriseCode,</if> <if test="enterpriseCode!= null and enterpriseCode != ''">enterpriseCode,</if>
<if test="enterpriseName!= null and enterpriseName != ''">enterpriseName,</if> <if test="enterpriseName!= null and enterpriseName != ''">enterpriseName,</if>
<if test="oper != null and oper != ''">opertion,</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="operStatus != null and operStatus != ''">oper_status,</if>
<if test="createTime != null and createTime != ''">create_time,</if> <if test="createTime != null and createTime != ''">create_time,</if>
</trim> </trim>
@ -63,7 +63,7 @@
<if test="enterpriseCode!= null and enterpriseCode != ''">#{enterpriseCode},</if> <if test="enterpriseCode!= null and enterpriseCode != ''">#{enterpriseCode},</if>
<if test="enterpriseName!= null and enterpriseName != ''">#{enterpriseName},</if> <if test="enterpriseName!= null and enterpriseName != ''">#{enterpriseName},</if>
<if test="oper != null and oper != ''">#{oper},</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="operStatus != null and operStatus != ''">#{operStatus},</if>
<if test="createTime != null and createTime != ''">#{createTime},</if> <if test="createTime != null and createTime != ''">#{createTime},</if>
</trim> </trim>

Loading…
Cancel
Save