New file |
| | |
| | | <?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.dy.pipIrrGlobal.daoOp.OpeWorkOrderMapper"> |
| | | <resultMap id="BaseResultMap" type="com.dy.pipIrrGlobal.pojoOp.OpeWorkOrder"> |
| | | <!--@mbg.generated--> |
| | | <!--@Table ope_work_order--> |
| | | <id column="id" jdbcType="BIGINT" property="id" /> |
| | | <result column="dispatcher" jdbcType="BIGINT" property="dispatcher" /> |
| | | <result column="inspector" jdbcType="BIGINT" property="inspector" /> |
| | | <result column="task_type" jdbcType="TINYINT" property="taskType" /> |
| | | <result column="task_content" jdbcType="VARCHAR" property="taskContent" /> |
| | | <result column="complete_criteria" jdbcType="VARCHAR" property="completeCriteria" /> |
| | | <result column="dead_line" jdbcType="TIMESTAMP" property="deadLine" /> |
| | | <result column="dispatch_time" jdbcType="TIMESTAMP" property="dispatchTime" /> |
| | | <result column="task_result" jdbcType="TINYINT" property="taskResult" /> |
| | | <result column="photos" jdbcType="VARCHAR" property="photos" /> |
| | | <result column="complete_time" jdbcType="TIMESTAMP" property="completeTime" /> |
| | | <result column="deleted" jdbcType="BIGINT" property="deleted" /> |
| | | </resultMap> |
| | | <sql id="Base_Column_List"> |
| | | <!--@mbg.generated--> |
| | | id, dispatcher, inspector, task_type, task_content, complete_criteria, dead_line, |
| | | dispatch_time, task_result, photos, complete_time, deleted |
| | | </sql> |
| | | <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> |
| | | <!--@mbg.generated--> |
| | | select |
| | | <include refid="Base_Column_List" /> |
| | | from ope_work_order |
| | | where id = #{id,jdbcType=BIGINT} |
| | | </select> |
| | | <delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> |
| | | <!--@mbg.generated--> |
| | | delete from ope_work_order |
| | | where id = #{id,jdbcType=BIGINT} |
| | | </delete> |
| | | <insert id="insert" parameterType="com.dy.pipIrrGlobal.pojoOp.OpeWorkOrder"> |
| | | <!--@mbg.generated--> |
| | | insert into ope_work_order (id, dispatcher, inspector, |
| | | task_type, task_content, complete_criteria, |
| | | dead_line, dispatch_time, task_result, |
| | | photos, complete_time, deleted |
| | | ) |
| | | values (#{id,jdbcType=BIGINT}, #{dispatcher,jdbcType=BIGINT}, #{inspector,jdbcType=BIGINT}, |
| | | #{taskType,jdbcType=TINYINT}, #{taskContent,jdbcType=VARCHAR}, #{completeCriteria,jdbcType=VARCHAR}, |
| | | #{deadLine,jdbcType=TIMESTAMP}, #{dispatchTime,jdbcType=TIMESTAMP}, #{taskResult,jdbcType=TINYINT}, |
| | | #{photos,jdbcType=VARCHAR}, #{completeTime,jdbcType=TIMESTAMP}, #{deleted,jdbcType=BIGINT} |
| | | ) |
| | | </insert> |
| | | <insert id="insertSelective" parameterType="com.dy.pipIrrGlobal.pojoOp.OpeWorkOrder"> |
| | | <!--@mbg.generated--> |
| | | insert into ope_work_order |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="id != null"> |
| | | id, |
| | | </if> |
| | | <if test="dispatcher != null"> |
| | | dispatcher, |
| | | </if> |
| | | <if test="inspector != null"> |
| | | inspector, |
| | | </if> |
| | | <if test="taskType != null"> |
| | | task_type, |
| | | </if> |
| | | <if test="taskContent != null"> |
| | | task_content, |
| | | </if> |
| | | <if test="completeCriteria != null"> |
| | | complete_criteria, |
| | | </if> |
| | | <if test="deadLine != null"> |
| | | dead_line, |
| | | </if> |
| | | <if test="dispatchTime != null"> |
| | | dispatch_time, |
| | | </if> |
| | | <if test="taskResult != null"> |
| | | task_result, |
| | | </if> |
| | | <if test="photos != null"> |
| | | photos, |
| | | </if> |
| | | <if test="completeTime != null"> |
| | | complete_time, |
| | | </if> |
| | | <if test="deleted != null"> |
| | | deleted, |
| | | </if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="id != null"> |
| | | #{id,jdbcType=BIGINT}, |
| | | </if> |
| | | <if test="dispatcher != null"> |
| | | #{dispatcher,jdbcType=BIGINT}, |
| | | </if> |
| | | <if test="inspector != null"> |
| | | #{inspector,jdbcType=BIGINT}, |
| | | </if> |
| | | <if test="taskType != null"> |
| | | #{taskType,jdbcType=TINYINT}, |
| | | </if> |
| | | <if test="taskContent != null"> |
| | | #{taskContent,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="completeCriteria != null"> |
| | | #{completeCriteria,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="deadLine != null"> |
| | | #{deadLine,jdbcType=TIMESTAMP}, |
| | | </if> |
| | | <if test="dispatchTime != null"> |
| | | #{dispatchTime,jdbcType=TIMESTAMP}, |
| | | </if> |
| | | <if test="taskResult != null"> |
| | | #{taskResult,jdbcType=TINYINT}, |
| | | </if> |
| | | <if test="photos != null"> |
| | | #{photos,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="completeTime != null"> |
| | | #{completeTime,jdbcType=TIMESTAMP}, |
| | | </if> |
| | | <if test="deleted != null"> |
| | | #{deleted,jdbcType=BIGINT}, |
| | | </if> |
| | | </trim> |
| | | </insert> |
| | | <update id="updateByPrimaryKeySelective" parameterType="com.dy.pipIrrGlobal.pojoOp.OpeWorkOrder"> |
| | | <!--@mbg.generated--> |
| | | update ope_work_order |
| | | <set> |
| | | <if test="dispatcher != null"> |
| | | dispatcher = #{dispatcher,jdbcType=BIGINT}, |
| | | </if> |
| | | <if test="inspector != null"> |
| | | inspector = #{inspector,jdbcType=BIGINT}, |
| | | </if> |
| | | <if test="taskType != null"> |
| | | task_type = #{taskType,jdbcType=TINYINT}, |
| | | </if> |
| | | <if test="taskContent != null"> |
| | | task_content = #{taskContent,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="completeCriteria != null"> |
| | | complete_criteria = #{completeCriteria,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="deadLine != null"> |
| | | dead_line = #{deadLine,jdbcType=TIMESTAMP}, |
| | | </if> |
| | | <if test="dispatchTime != null"> |
| | | dispatch_time = #{dispatchTime,jdbcType=TIMESTAMP}, |
| | | </if> |
| | | <if test="taskResult != null"> |
| | | task_result = #{taskResult,jdbcType=TINYINT}, |
| | | </if> |
| | | <if test="photos != null"> |
| | | photos = #{photos,jdbcType=VARCHAR}, |
| | | </if> |
| | | <if test="completeTime != null"> |
| | | complete_time = #{completeTime,jdbcType=TIMESTAMP}, |
| | | </if> |
| | | <if test="deleted != null"> |
| | | deleted = #{deleted,jdbcType=BIGINT}, |
| | | </if> |
| | | </set> |
| | | where id = #{id,jdbcType=BIGINT} |
| | | </update> |
| | | <update id="updateByPrimaryKey" parameterType="com.dy.pipIrrGlobal.pojoOp.OpeWorkOrder"> |
| | | <!--@mbg.generated--> |
| | | update ope_work_order |
| | | set dispatcher = #{dispatcher,jdbcType=BIGINT}, |
| | | inspector = #{inspector,jdbcType=BIGINT}, |
| | | task_type = #{taskType,jdbcType=TINYINT}, |
| | | task_content = #{taskContent,jdbcType=VARCHAR}, |
| | | complete_criteria = #{completeCriteria,jdbcType=VARCHAR}, |
| | | dead_line = #{deadLine,jdbcType=TIMESTAMP}, |
| | | dispatch_time = #{dispatchTime,jdbcType=TIMESTAMP}, |
| | | task_result = #{taskResult,jdbcType=TINYINT}, |
| | | photos = #{photos,jdbcType=VARCHAR}, |
| | | complete_time = #{completeTime,jdbcType=TIMESTAMP}, |
| | | deleted = #{deleted,jdbcType=BIGINT} |
| | | where id = #{id,jdbcType=BIGINT} |
| | | </update> |
| | | </mapper> |