| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.goafanti.common.dao.TaskSoptLogMapper">
- <resultMap id="BaseResultMap" type="com.goafanti.common.model.TaskSoptLog">
- <id column="id" jdbcType="BIGINT" property="id" />
- <result column="task_sopt_id" jdbcType="INTEGER" property="taskSoptId" />
- <result column="status" jdbcType="INTEGER" property="status" />
- <result column="reason" jdbcType="VARCHAR" property="reason" />
- <result column="create_by" jdbcType="VARCHAR" property="createBy" />
- <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
- </resultMap>
- <sql id="Base_Column_List">
- id, task_sopt_id, `status`, reason, create_by, create_time
- </sql>
- <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
- select
- <include refid="Base_Column_List" />
- from task_sopt_log
- where id = #{id,jdbcType=BIGINT}
- </select>
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
- delete from task_sopt_log
- where id = #{id,jdbcType=BIGINT}
- </delete>
- <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.goafanti.common.model.TaskSoptLog" useGeneratedKeys="true">
- insert into task_sopt_log (task_sopt_id, `status`, reason,
- create_by, create_time)
- values (#{taskSoptId,jdbcType=INTEGER}, #{status,jdbcType=INTEGER}, #{reason,jdbcType=VARCHAR},
- #{createBy,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP})
- </insert>
- <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.goafanti.common.model.TaskSoptLog" useGeneratedKeys="true">
- insert into task_sopt_log
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="taskSoptId != null">
- task_sopt_id,
- </if>
- <if test="status != null">
- `status`,
- </if>
- <if test="reason != null">
- reason,
- </if>
- <if test="createBy != null">
- create_by,
- </if>
- <if test="createTime != null">
- create_time,
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="taskSoptId != null">
- #{taskSoptId,jdbcType=INTEGER},
- </if>
- <if test="status != null">
- #{status,jdbcType=INTEGER},
- </if>
- <if test="reason != null">
- #{reason,jdbcType=VARCHAR},
- </if>
- <if test="createBy != null">
- #{createBy,jdbcType=VARCHAR},
- </if>
- <if test="createTime != null">
- #{createTime,jdbcType=TIMESTAMP},
- </if>
- </trim>
- </insert>
- <update id="updateByPrimaryKeySelective" parameterType="com.goafanti.common.model.TaskSoptLog">
- update task_sopt_log
- <set>
- <if test="taskSoptId != null">
- task_sopt_id = #{taskSoptId,jdbcType=INTEGER},
- </if>
- <if test="status != null">
- `status` = #{status,jdbcType=INTEGER},
- </if>
- <if test="reason != null">
- reason = #{reason,jdbcType=VARCHAR},
- </if>
- <if test="createBy != null">
- create_by = #{createBy,jdbcType=VARCHAR},
- </if>
- <if test="createTime != null">
- create_time = #{createTime,jdbcType=TIMESTAMP},
- </if>
- </set>
- where id = #{id,jdbcType=BIGINT}
- </update>
- <update id="updateByPrimaryKey" parameterType="com.goafanti.common.model.TaskSoptLog">
- update task_sopt_log
- set task_sopt_id = #{taskSoptId,jdbcType=INTEGER},
- `status` = #{status,jdbcType=INTEGER},
- reason = #{reason,jdbcType=VARCHAR},
- create_by = #{createBy,jdbcType=VARCHAR},
- create_time = #{createTime,jdbcType=TIMESTAMP}
- where id = #{id,jdbcType=BIGINT}
- </update>
- </mapper>
|