| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <?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.ProjectStaffRecordMapper">
- <resultMap id="BaseResultMap" type="com.ruoyi.project.domain.ProjectStaffRecord">
- <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="project_status" jdbcType="INTEGER" property="projectStatus" />
- <result column="content" jdbcType="VARCHAR" property="content" />
- <result column="annex_url" jdbcType="VARCHAR" property="annexUrl" />
- <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
- <result column="process_status" jdbcType="INTEGER" property="processStatus" />
- <result column="duration" jdbcType="DOUBLE" property="duration" />
- </resultMap>
- <sql id="Base_Column_List">
- id, pid, aid, `name`, project_status, content, annex_url, create_time, process_status,
- duration
- </sql>
- <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
- select
- <include refid="Base_Column_List" />
- from project_staff_record
- where id = #{id,jdbcType=BIGINT}
- </select>
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
- delete from project_staff_record
- where id = #{id,jdbcType=BIGINT}
- </delete>
- <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.ruoyi.project.domain.ProjectStaffRecord" useGeneratedKeys="true">
- insert into project_staff_record (pid, aid, `name`,
- project_status, content, annex_url,
- create_time, process_status, duration
- )
- values (#{pid,jdbcType=BIGINT}, #{aid,jdbcType=BIGINT}, #{name,jdbcType=VARCHAR},
- #{projectStatus,jdbcType=INTEGER}, #{content,jdbcType=VARCHAR}, #{annexUrl,jdbcType=VARCHAR},
- #{createTime,jdbcType=TIMESTAMP}, #{processStatus,jdbcType=INTEGER}, #{duration,jdbcType=DOUBLE}
- )
- </insert>
- <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.ruoyi.project.domain.ProjectStaffRecord" useGeneratedKeys="true">
- insert into project_staff_record
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="pid != null">
- pid,
- </if>
- <if test="aid != null">
- aid,
- </if>
- <if test="name != null">
- `name`,
- </if>
- <if test="projectStatus != null">
- project_status,
- </if>
- <if test="content != null">
- content,
- </if>
- <if test="annexUrl != null">
- annex_url,
- </if>
- <if test="createTime != null">
- create_time,
- </if>
- <if test="processStatus != null">
- process_status,
- </if>
- <if test="duration != null">
- duration,
- </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="projectStatus != null">
- #{projectStatus,jdbcType=INTEGER},
- </if>
- <if test="content != null">
- #{content,jdbcType=VARCHAR},
- </if>
- <if test="annexUrl != null">
- #{annexUrl,jdbcType=VARCHAR},
- </if>
- <if test="createTime != null">
- #{createTime,jdbcType=TIMESTAMP},
- </if>
- <if test="processStatus != null">
- #{processStatus,jdbcType=INTEGER},
- </if>
- <if test="duration != null">
- #{duration,jdbcType=DOUBLE},
- </if>
- </trim>
- </insert>
- <update id="updateByPrimaryKeySelective" parameterType="com.ruoyi.project.domain.ProjectStaffRecord">
- update project_staff_record
- <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="projectStatus != null">
- project_status = #{projectStatus,jdbcType=INTEGER},
- </if>
- <if test="content != null">
- content = #{content,jdbcType=VARCHAR},
- </if>
- <if test="annexUrl != null">
- annex_url = #{annexUrl,jdbcType=VARCHAR},
- </if>
- <if test="createTime != null">
- create_time = #{createTime,jdbcType=TIMESTAMP},
- </if>
- <if test="processStatus != null">
- process_status = #{processStatus,jdbcType=INTEGER},
- </if>
- <if test="duration != null">
- duration = #{duration,jdbcType=DOUBLE},
- </if>
- </set>
- where id = #{id,jdbcType=BIGINT}
- </update>
- <update id="updateByPrimaryKey" parameterType="com.ruoyi.project.domain.ProjectStaffRecord">
- update project_staff_record
- set pid = #{pid,jdbcType=BIGINT},
- aid = #{aid,jdbcType=BIGINT},
- `name` = #{name,jdbcType=VARCHAR},
- project_status = #{projectStatus,jdbcType=INTEGER},
- content = #{content,jdbcType=VARCHAR},
- annex_url = #{annexUrl,jdbcType=VARCHAR},
- create_time = #{createTime,jdbcType=TIMESTAMP},
- process_status = #{processStatus,jdbcType=INTEGER},
- duration = #{duration,jdbcType=DOUBLE}
- where id = #{id,jdbcType=BIGINT}
- </update>
- <select id="selectList" resultType="com.ruoyi.project.bo.ProjectStaffRecordOut">
- select a.id,a.pid ,a.aid ,a.name ,a.project_status projectStatus,a.content ,
- a.annex_url annexUrl,a.create_time createTimeStr,a.process_status processStatus ,
- a.duration
- from project_staff_record a left join project_task b on a.pid=b.id
- where 1=1
- <if test="roleId==2">
- and a.aid =#{aid}
- </if>
- <if test="roleId==3">
- and b.aid =#{aid}
- </if>
- </select>
- </mapper>
|