liurunyu
3 天以前 a54ebef2950cd0b708ab703bfc551119fa135fec
补充缺失的代码
2个文件已修改
12 ■■■■■ 已修改文件
pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoBa/BaUserMapper.java 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pms-parent/pms-global/src/main/resources/mapper/BaLogMapper.xml 11 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoBa/BaUserMapper.java
@@ -1,7 +1,6 @@
package com.dy.pmsGlobal.daoBa;
import com.dy.pmsGlobal.pojoBa.BaUser;
import com.dy.pmsGlobal.pojoPlt.PltStation;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
pms-parent/pms-global/src/main/resources/mapper/BaLogMapper.xml
@@ -26,10 +26,15 @@
  </select>
  <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.dy.pmsGlobal.pojoBa.BaLog" useGeneratedKeys="true">
    <!--@mbg.generated-->
    insert into ba_log (user_id,user_name, content, ip,code,msg
    insert into ba_log (id, user_id,user_name, content, ip,code,msg
      )
    values (#{userId,jdbcType=BIGINT},#{userName,jdbcType=VARCHAR}, #{content,jdbcType=VARCHAR}, #{ip,jdbcType=VARCHAR},
    #{code,jdbcType=VARCHAR},#{msg,jdbcType=VARCHAR}
    values (#{id,jdbcType=BIGINT},
    #{userId,jdbcType=BIGINT},
    #{userName,jdbcType=VARCHAR},
    #{content,jdbcType=VARCHAR},
    #{ip,jdbcType=VARCHAR},
    #{code,jdbcType=VARCHAR},
    #{msg,jdbcType=VARCHAR}
      )
  </insert>
  <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.dy.pmsGlobal.pojoBa.BaLog" useGeneratedKeys="true">