| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?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.ruoyi.project.mapper.ProjectStaffMapper">
- <resultMap id="BaseResultMap" type="com.ruoyi.project.domain.ProjectStaff">
- <id column="id" jdbcType="BIGINT" property="id" />
- <result column="pid" jdbcType="BIGINT" property="pid" />
- <result column="aid" jdbcType="BIGINT" property="aid" />
- <result column="name" jdbcType="VARCHAR" property="name" />
- <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
- <result column="remark" jdbcType="VARCHAR" property="remark" />
- </resultMap>
- <sql id="Base_Column_List">
- id, pid, aid, `name`, create_time, remark
- </sql>
- <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
- select
- <include refid="Base_Column_List" />
- from project_staff
- where id = #{id,jdbcType=BIGINT}
- </select>
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
- delete from project_staff
- where id = #{id,jdbcType=BIGINT}
- </delete>
- <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.ruoyi.project.domain.ProjectStaff" useGeneratedKeys="true">
- insert into project_staff (pid, aid, `name`,
- create_time, remark)
- values (#{pid,jdbcType=BIGINT}, #{aid,jdbcType=BIGINT}, #{name,jdbcType=VARCHAR},
- #{createTime,jdbcType=TIMESTAMP}, #{remark,jdbcType=VARCHAR})
- </insert>
- <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.ruoyi.project.domain.ProjectStaff" useGeneratedKeys="true">
- insert into project_staff
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="pid != null">
- pid,
- </if>
- <if test="aid != null">
- aid,
- </if>
- <if test="name != null">
- `name`,
- </if>
- <if test="createTime != null">
- create_time,
- </if>
- <if test="remark != null">
- remark,
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="pid != null">
- #{pid,jdbcType=BIGINT},
- </if>
- <if test="aid != null">
- #{aid,jdbcType=BIGINT},
- </if>
- <if test="name != null">
- #{name,jdbcType=VARCHAR},
- </if>
- <if test="createTime != null">
- #{createTime,jdbcType=TIMESTAMP},
- </if>
- <if test="remark != null">
- #{remark,jdbcType=VARCHAR},
- </if>
- </trim>
- </insert>
- <update id="updateByPrimaryKeySelective" parameterType="com.ruoyi.project.domain.ProjectStaff">
- update project_staff
- <set>
- <if test="pid != null">
- pid = #{pid,jdbcType=BIGINT},
- </if>
- <if test="aid != null">
- aid = #{aid,jdbcType=BIGINT},
- </if>
- <if test="name != null">
- `name` = #{name,jdbcType=VARCHAR},
- </if>
- <if test="createTime != null">
- create_time = #{createTime,jdbcType=TIMESTAMP},
- </if>
- <if test="remark != null">
- remark = #{remark,jdbcType=VARCHAR},
- </if>
- </set>
- where id = #{id,jdbcType=BIGINT}
- </update>
- <update id="updateByPrimaryKey" parameterType="com.ruoyi.project.domain.ProjectStaff">
- update project_staff
- set pid = #{pid,jdbcType=BIGINT},
- aid = #{aid,jdbcType=BIGINT},
- `name` = #{name,jdbcType=VARCHAR},
- create_time = #{createTime,jdbcType=TIMESTAMP},
- remark = #{remark,jdbcType=VARCHAR}
- where id = #{id,jdbcType=BIGINT}
- </update>
- <delete id="deleteBypid">
- delete from project_staff
- where pid = #{pid}
- </delete>
- <select id="selectByPid" parameterType="java.lang.Long" resultMap="BaseResultMap">
- select
- <include refid="Base_Column_List" />
- from project_staff
- where pid = #{pid}
- </select>
- </mapper>
|