|
@@ -0,0 +1,465 @@
|
|
|
+<?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.ghsc.partybuild.mapper.LwLeaderAssessMapper">
|
|
|
+ <resultMap id="BaseResultMap" type="com.ghsc.partybuild.model.LwLeaderAssess">
|
|
|
+ <id column="id" jdbcType="VARCHAR" property="id" />
|
|
|
+ <result column="assessType" jdbcType="INTEGER" property="assesstype" />
|
|
|
+ <result column="name" jdbcType="VARCHAR" property="name" />
|
|
|
+ <result column="sex" jdbcType="INTEGER" property="sex" />
|
|
|
+ <result column="idCard" jdbcType="VARCHAR" property="idcard" />
|
|
|
+ <result column="birthDate" jdbcType="VARCHAR" property="birthdate" />
|
|
|
+ <result column="education" jdbcType="VARCHAR" property="education" />
|
|
|
+ <result column="jobTitle" jdbcType="VARCHAR" property="jobtitle" />
|
|
|
+ <result column="workDate" jdbcType="VARCHAR" property="workdate" />
|
|
|
+ <result column="position" jdbcType="VARCHAR" property="position" />
|
|
|
+ <result column="beginDate" jdbcType="VARCHAR" property="begindate" />
|
|
|
+ <result column="endDate" jdbcType="VARCHAR" property="enddate" />
|
|
|
+ <result column="assessBeginDate" jdbcType="VARCHAR" property="assessbegindate" />
|
|
|
+ <result column="assessEndDate" jdbcType="VARCHAR" property="assessenddate" />
|
|
|
+ <result column="grade" jdbcType="INTEGER" property="grade" />
|
|
|
+ <result column="result" jdbcType="VARCHAR" property="result" />
|
|
|
+ <result column="content" jdbcType="VARCHAR" property="content" />
|
|
|
+ <result column="createTime" jdbcType="TIMESTAMP" property="createtime" />
|
|
|
+ <result column="createUserId" jdbcType="VARCHAR" property="createuserid" />
|
|
|
+ <result column="updateTime" jdbcType="TIMESTAMP" property="updatetime" />
|
|
|
+ <result column="updateUserId" jdbcType="VARCHAR" property="updateuserid" />
|
|
|
+ </resultMap>
|
|
|
+ <sql id="Example_Where_Clause">
|
|
|
+ <where>
|
|
|
+ <foreach collection="oredCriteria" item="criteria" separator="or">
|
|
|
+ <if test="criteria.valid">
|
|
|
+ <trim prefix="(" prefixOverrides="and" suffix=")">
|
|
|
+ <foreach collection="criteria.criteria" item="criterion">
|
|
|
+ <choose>
|
|
|
+ <when test="criterion.noValue">
|
|
|
+ and ${criterion.condition}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.singleValue">
|
|
|
+ and ${criterion.condition} #{criterion.value}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.betweenValue">
|
|
|
+ and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.listValue">
|
|
|
+ and ${criterion.condition}
|
|
|
+ <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
|
|
+ #{listItem}
|
|
|
+ </foreach>
|
|
|
+ </when>
|
|
|
+ </choose>
|
|
|
+ </foreach>
|
|
|
+ </trim>
|
|
|
+ </if>
|
|
|
+ </foreach>
|
|
|
+ </where>
|
|
|
+ </sql>
|
|
|
+ <sql id="Update_By_Example_Where_Clause">
|
|
|
+ <where>
|
|
|
+ <foreach collection="example.oredCriteria" item="criteria" separator="or">
|
|
|
+ <if test="criteria.valid">
|
|
|
+ <trim prefix="(" prefixOverrides="and" suffix=")">
|
|
|
+ <foreach collection="criteria.criteria" item="criterion">
|
|
|
+ <choose>
|
|
|
+ <when test="criterion.noValue">
|
|
|
+ and ${criterion.condition}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.singleValue">
|
|
|
+ and ${criterion.condition} #{criterion.value}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.betweenValue">
|
|
|
+ and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
|
|
+ </when>
|
|
|
+ <when test="criterion.listValue">
|
|
|
+ and ${criterion.condition}
|
|
|
+ <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
|
|
+ #{listItem}
|
|
|
+ </foreach>
|
|
|
+ </when>
|
|
|
+ </choose>
|
|
|
+ </foreach>
|
|
|
+ </trim>
|
|
|
+ </if>
|
|
|
+ </foreach>
|
|
|
+ </where>
|
|
|
+ </sql>
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ id, assessType, name, sex, idCard, birthDate, education, jobTitle, workDate, position,
|
|
|
+ beginDate, endDate, assessBeginDate, assessEndDate, grade, result, content, createTime,
|
|
|
+ createUserId, updateTime, updateUserId
|
|
|
+ </sql>
|
|
|
+ <select id="selectByExample" parameterType="com.ghsc.partybuild.model.LwLeaderAssessExample" resultMap="BaseResultMap">
|
|
|
+ select
|
|
|
+ <if test="distinct">
|
|
|
+ distinct
|
|
|
+ </if>
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
+ from lw_leader_assess
|
|
|
+ <if test="_parameter != null">
|
|
|
+ <include refid="Example_Where_Clause" />
|
|
|
+ </if>
|
|
|
+ <if test="orderByClause != null">
|
|
|
+ order by ${orderByClause}
|
|
|
+ </if>
|
|
|
+ </select>
|
|
|
+ <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
+ from lw_leader_assess
|
|
|
+ where id = #{id,jdbcType=VARCHAR}
|
|
|
+ </select>
|
|
|
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
|
|
+ delete from lw_leader_assess
|
|
|
+ where id = #{id,jdbcType=VARCHAR}
|
|
|
+ </delete>
|
|
|
+ <delete id="deleteByExample" parameterType="com.ghsc.partybuild.model.LwLeaderAssessExample">
|
|
|
+ delete from lw_leader_assess
|
|
|
+ <if test="_parameter != null">
|
|
|
+ <include refid="Example_Where_Clause" />
|
|
|
+ </if>
|
|
|
+ </delete>
|
|
|
+ <insert id="insert" parameterType="com.ghsc.partybuild.model.LwLeaderAssess">
|
|
|
+ insert into lw_leader_assess (id, assessType, name,
|
|
|
+ sex, idCard, birthDate,
|
|
|
+ education, jobTitle, workDate,
|
|
|
+ position, beginDate, endDate,
|
|
|
+ assessBeginDate, assessEndDate, grade,
|
|
|
+ result, content, createTime,
|
|
|
+ createUserId, updateTime, updateUserId
|
|
|
+ )
|
|
|
+ values (#{id,jdbcType=VARCHAR}, #{assesstype,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR},
|
|
|
+ #{sex,jdbcType=INTEGER}, #{idcard,jdbcType=VARCHAR}, #{birthdate,jdbcType=VARCHAR},
|
|
|
+ #{education,jdbcType=VARCHAR}, #{jobtitle,jdbcType=VARCHAR}, #{workdate,jdbcType=VARCHAR},
|
|
|
+ #{position,jdbcType=VARCHAR}, #{begindate,jdbcType=VARCHAR}, #{enddate,jdbcType=VARCHAR},
|
|
|
+ #{assessbegindate,jdbcType=VARCHAR}, #{assessenddate,jdbcType=VARCHAR}, #{grade,jdbcType=INTEGER},
|
|
|
+ #{result,jdbcType=VARCHAR}, #{content,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP},
|
|
|
+ #{createuserid,jdbcType=VARCHAR}, #{updatetime,jdbcType=TIMESTAMP}, #{updateuserid,jdbcType=VARCHAR}
|
|
|
+ )
|
|
|
+ </insert>
|
|
|
+ <insert id="insertSelective" parameterType="com.ghsc.partybuild.model.LwLeaderAssess">
|
|
|
+ insert into lw_leader_assess
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="id != null">
|
|
|
+ id,
|
|
|
+ </if>
|
|
|
+ <if test="assesstype != null">
|
|
|
+ assessType,
|
|
|
+ </if>
|
|
|
+ <if test="name != null">
|
|
|
+ name,
|
|
|
+ </if>
|
|
|
+ <if test="sex != null">
|
|
|
+ sex,
|
|
|
+ </if>
|
|
|
+ <if test="idcard != null">
|
|
|
+ idCard,
|
|
|
+ </if>
|
|
|
+ <if test="birthdate != null">
|
|
|
+ birthDate,
|
|
|
+ </if>
|
|
|
+ <if test="education != null">
|
|
|
+ education,
|
|
|
+ </if>
|
|
|
+ <if test="jobtitle != null">
|
|
|
+ jobTitle,
|
|
|
+ </if>
|
|
|
+ <if test="workdate != null">
|
|
|
+ workDate,
|
|
|
+ </if>
|
|
|
+ <if test="position != null">
|
|
|
+ position,
|
|
|
+ </if>
|
|
|
+ <if test="begindate != null">
|
|
|
+ beginDate,
|
|
|
+ </if>
|
|
|
+ <if test="enddate != null">
|
|
|
+ endDate,
|
|
|
+ </if>
|
|
|
+ <if test="assessbegindate != null">
|
|
|
+ assessBeginDate,
|
|
|
+ </if>
|
|
|
+ <if test="assessenddate != null">
|
|
|
+ assessEndDate,
|
|
|
+ </if>
|
|
|
+ <if test="grade != null">
|
|
|
+ grade,
|
|
|
+ </if>
|
|
|
+ <if test="result != null">
|
|
|
+ result,
|
|
|
+ </if>
|
|
|
+ <if test="content != null">
|
|
|
+ content,
|
|
|
+ </if>
|
|
|
+ <if test="createtime != null">
|
|
|
+ createTime,
|
|
|
+ </if>
|
|
|
+ <if test="createuserid != null">
|
|
|
+ createUserId,
|
|
|
+ </if>
|
|
|
+ <if test="updatetime != null">
|
|
|
+ updateTime,
|
|
|
+ </if>
|
|
|
+ <if test="updateuserid != null">
|
|
|
+ updateUserId,
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="id != null">
|
|
|
+ #{id,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="assesstype != null">
|
|
|
+ #{assesstype,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="name != null">
|
|
|
+ #{name,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="sex != null">
|
|
|
+ #{sex,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="idcard != null">
|
|
|
+ #{idcard,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="birthdate != null">
|
|
|
+ #{birthdate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="education != null">
|
|
|
+ #{education,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="jobtitle != null">
|
|
|
+ #{jobtitle,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="workdate != null">
|
|
|
+ #{workdate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="position != null">
|
|
|
+ #{position,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="begindate != null">
|
|
|
+ #{begindate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="enddate != null">
|
|
|
+ #{enddate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="assessbegindate != null">
|
|
|
+ #{assessbegindate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="assessenddate != null">
|
|
|
+ #{assessenddate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="grade != null">
|
|
|
+ #{grade,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="result != null">
|
|
|
+ #{result,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="content != null">
|
|
|
+ #{content,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="createtime != null">
|
|
|
+ #{createtime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="createuserid != null">
|
|
|
+ #{createuserid,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="updatetime != null">
|
|
|
+ #{updatetime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="updateuserid != null">
|
|
|
+ #{updateuserid,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
+ <select id="countByExample" parameterType="com.ghsc.partybuild.model.LwLeaderAssessExample" resultType="java.lang.Long">
|
|
|
+ select count(*) from lw_leader_assess
|
|
|
+ <if test="_parameter != null">
|
|
|
+ <include refid="Example_Where_Clause" />
|
|
|
+ </if>
|
|
|
+ </select>
|
|
|
+ <update id="updateByExampleSelective" parameterType="map">
|
|
|
+ update lw_leader_assess
|
|
|
+ <set>
|
|
|
+ <if test="record.id != null">
|
|
|
+ id = #{record.id,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.assesstype != null">
|
|
|
+ assessType = #{record.assesstype,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="record.name != null">
|
|
|
+ name = #{record.name,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.sex != null">
|
|
|
+ sex = #{record.sex,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="record.idcard != null">
|
|
|
+ idCard = #{record.idcard,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.birthdate != null">
|
|
|
+ birthDate = #{record.birthdate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.education != null">
|
|
|
+ education = #{record.education,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.jobtitle != null">
|
|
|
+ jobTitle = #{record.jobtitle,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.workdate != null">
|
|
|
+ workDate = #{record.workdate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.position != null">
|
|
|
+ position = #{record.position,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.begindate != null">
|
|
|
+ beginDate = #{record.begindate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.enddate != null">
|
|
|
+ endDate = #{record.enddate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.assessbegindate != null">
|
|
|
+ assessBeginDate = #{record.assessbegindate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.assessenddate != null">
|
|
|
+ assessEndDate = #{record.assessenddate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.grade != null">
|
|
|
+ grade = #{record.grade,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="record.result != null">
|
|
|
+ result = #{record.result,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.content != null">
|
|
|
+ content = #{record.content,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.createtime != null">
|
|
|
+ createTime = #{record.createtime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="record.createuserid != null">
|
|
|
+ createUserId = #{record.createuserid,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.updatetime != null">
|
|
|
+ updateTime = #{record.updatetime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="record.updateuserid != null">
|
|
|
+ updateUserId = #{record.updateuserid,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ </set>
|
|
|
+ <if test="_parameter != null">
|
|
|
+ <include refid="Update_By_Example_Where_Clause" />
|
|
|
+ </if>
|
|
|
+ </update>
|
|
|
+ <update id="updateByExample" parameterType="map">
|
|
|
+ update lw_leader_assess
|
|
|
+ set id = #{record.id,jdbcType=VARCHAR},
|
|
|
+ assessType = #{record.assesstype,jdbcType=INTEGER},
|
|
|
+ name = #{record.name,jdbcType=VARCHAR},
|
|
|
+ sex = #{record.sex,jdbcType=INTEGER},
|
|
|
+ idCard = #{record.idcard,jdbcType=VARCHAR},
|
|
|
+ birthDate = #{record.birthdate,jdbcType=VARCHAR},
|
|
|
+ education = #{record.education,jdbcType=VARCHAR},
|
|
|
+ jobTitle = #{record.jobtitle,jdbcType=VARCHAR},
|
|
|
+ workDate = #{record.workdate,jdbcType=VARCHAR},
|
|
|
+ position = #{record.position,jdbcType=VARCHAR},
|
|
|
+ beginDate = #{record.begindate,jdbcType=VARCHAR},
|
|
|
+ endDate = #{record.enddate,jdbcType=VARCHAR},
|
|
|
+ assessBeginDate = #{record.assessbegindate,jdbcType=VARCHAR},
|
|
|
+ assessEndDate = #{record.assessenddate,jdbcType=VARCHAR},
|
|
|
+ grade = #{record.grade,jdbcType=INTEGER},
|
|
|
+ result = #{record.result,jdbcType=VARCHAR},
|
|
|
+ content = #{record.content,jdbcType=VARCHAR},
|
|
|
+ createTime = #{record.createtime,jdbcType=TIMESTAMP},
|
|
|
+ createUserId = #{record.createuserid,jdbcType=VARCHAR},
|
|
|
+ updateTime = #{record.updatetime,jdbcType=TIMESTAMP},
|
|
|
+ updateUserId = #{record.updateuserid,jdbcType=VARCHAR}
|
|
|
+ <if test="_parameter != null">
|
|
|
+ <include refid="Update_By_Example_Where_Clause" />
|
|
|
+ </if>
|
|
|
+ </update>
|
|
|
+ <update id="updateByPrimaryKeySelective" parameterType="com.ghsc.partybuild.model.LwLeaderAssess">
|
|
|
+ update lw_leader_assess
|
|
|
+ <set>
|
|
|
+ <if test="assesstype != null">
|
|
|
+ assessType = #{assesstype,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="name != null">
|
|
|
+ name = #{name,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="sex != null">
|
|
|
+ sex = #{sex,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="idcard != null">
|
|
|
+ idCard = #{idcard,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="birthdate != null">
|
|
|
+ birthDate = #{birthdate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="education != null">
|
|
|
+ education = #{education,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="jobtitle != null">
|
|
|
+ jobTitle = #{jobtitle,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="workdate != null">
|
|
|
+ workDate = #{workdate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="position != null">
|
|
|
+ position = #{position,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="begindate != null">
|
|
|
+ beginDate = #{begindate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="enddate != null">
|
|
|
+ endDate = #{enddate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="assessbegindate != null">
|
|
|
+ assessBeginDate = #{assessbegindate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="assessenddate != null">
|
|
|
+ assessEndDate = #{assessenddate,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="grade != null">
|
|
|
+ grade = #{grade,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="result != null">
|
|
|
+ result = #{result,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="content != null">
|
|
|
+ content = #{content,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="createtime != null">
|
|
|
+ createTime = #{createtime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="createuserid != null">
|
|
|
+ createUserId = #{createuserid,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="updatetime != null">
|
|
|
+ updateTime = #{updatetime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="updateuserid != null">
|
|
|
+ updateUserId = #{updateuserid,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ </set>
|
|
|
+ where id = #{id,jdbcType=VARCHAR}
|
|
|
+ </update>
|
|
|
+ <update id="updateByPrimaryKey" parameterType="com.ghsc.partybuild.model.LwLeaderAssess">
|
|
|
+ update lw_leader_assess
|
|
|
+ set assessType = #{assesstype,jdbcType=INTEGER},
|
|
|
+ name = #{name,jdbcType=VARCHAR},
|
|
|
+ sex = #{sex,jdbcType=INTEGER},
|
|
|
+ idCard = #{idcard,jdbcType=VARCHAR},
|
|
|
+ birthDate = #{birthdate,jdbcType=VARCHAR},
|
|
|
+ education = #{education,jdbcType=VARCHAR},
|
|
|
+ jobTitle = #{jobtitle,jdbcType=VARCHAR},
|
|
|
+ workDate = #{workdate,jdbcType=VARCHAR},
|
|
|
+ position = #{position,jdbcType=VARCHAR},
|
|
|
+ beginDate = #{begindate,jdbcType=VARCHAR},
|
|
|
+ endDate = #{enddate,jdbcType=VARCHAR},
|
|
|
+ assessBeginDate = #{assessbegindate,jdbcType=VARCHAR},
|
|
|
+ assessEndDate = #{assessenddate,jdbcType=VARCHAR},
|
|
|
+ grade = #{grade,jdbcType=INTEGER},
|
|
|
+ result = #{result,jdbcType=VARCHAR},
|
|
|
+ content = #{content,jdbcType=VARCHAR},
|
|
|
+ createTime = #{createtime,jdbcType=TIMESTAMP},
|
|
|
+ createUserId = #{createuserid,jdbcType=VARCHAR},
|
|
|
+ updateTime = #{updatetime,jdbcType=TIMESTAMP},
|
|
|
+ updateUserId = #{updateuserid,jdbcType=VARCHAR}
|
|
|
+ where id = #{id,jdbcType=VARCHAR}
|
|
|
+ </update>
|
|
|
+</mapper>
|