| | |
| | | <!--@Table ba_log--> |
| | | <id column="id" jdbcType="BIGINT" property="id" /> |
| | | <result column="user_id" jdbcType="BIGINT" property="userId" /> |
| | | <result column="user_name" jdbcType="VARCHAR" property="userName" /> |
| | | <result column="content" jdbcType="VARCHAR" property="content" /> |
| | | <result column="ip" jdbcType="VARCHAR" property="ip" /> |
| | | <result column="code" jdbcType="VARCHAR" property="code" /> |
| | |
| | | </resultMap> |
| | | <sql id="Base_Column_List"> |
| | | <!--@mbg.generated--> |
| | | id, user_id, content, dt,ip,code,msg |
| | | id, user_id,user_name, content, dt,ip,code,msg |
| | | </sql> |
| | | <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> |
| | | <!--@mbg.generated--> |
| | |
| | | </select> |
| | | <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.dy.pmsGlobal.pojoBa.BaLog" useGeneratedKeys="true"> |
| | | <!--@mbg.generated--> |
| | | insert into ba_log (user_id, content, ip,code,msg |
| | | insert into ba_log (user_id,user_name, content, ip,code,msg |
| | | ) |
| | | values (#{userId,jdbcType=BIGINT}, #{content,jdbcType=VARCHAR}, #{ip,jdbcType=VARCHAR}, |
| | | values (#{userId,jdbcType=BIGINT},#{userName,jdbcType=VARCHAR}, #{content,jdbcType=VARCHAR}, #{ip,jdbcType=VARCHAR}, |
| | | #{code,jdbcType=VARCHAR},#{msg,jdbcType=VARCHAR} |
| | | ) |
| | | </insert> |
| | |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="userId != null"> |
| | | user_id, |
| | | </if> |
| | | <if test="userName != null"> |
| | | user_name, |
| | | </if> |
| | | <if test="content != null"> |
| | | content, |
| | |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="userId != null"> |
| | | #{userId,jdbcType=BIGINT}, |
| | | </if> |
| | | <if test="userName != null"> |
| | | #{userName,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="content != null"> |
| | | #{content,jdbcType=VARCHAR}, |
| | |
| | | <if test="userId != null and userId != ''"> |
| | | user_id = #{userId,jdbcType=BIGINT} and |
| | | </if> |
| | | <if test="userName != null and userName != ''"> |
| | | user_name = #{userName,jdbcType=VARCHAR} and |
| | | </if> |
| | | <if test="content != null and content != '' "> |
| | | content like concat('%', #{content}, '%') and |
| | | </if> |
| | |
| | | <if test="userId != null and userId != ''"> |
| | | user_id = #{userId,jdbcType=BIGINT} and |
| | | </if> |
| | | <if test="userName != null and userName != ''"> |
| | | user_name = #{userName,jdbcType=VARCHAR} and |
| | | </if> |
| | | <if test="content != null and content != '' "> |
| | | content like concat('%', #{content}, '%') and |
| | | </if> |