|
|
<?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.tianbo.warehouse.dao.StaffApartmentMaintainMapper" >
|
|
|
<resultMap id="BaseResultMap" type="com.tianbo.warehouse.model.StaffApartmentMaintain" >
|
|
|
<id column="id" property="id" jdbcType="VARCHAR" />
|
|
|
<result column="repairsDate" property="repairsdate" jdbcType="TIMESTAMP" />
|
|
|
<result column="repairsContent" property="repairscontent" jdbcType="VARCHAR" />
|
|
|
<result column="reflectWay" property="reflectway" jdbcType="VARCHAR" />
|
|
|
<result column="repairsDept" property="repairsdept" jdbcType="VARCHAR" />
|
|
|
<result column="answerThePhoneName" property="answerthephonename" jdbcType="VARCHAR" />
|
|
|
<result column="repairsName" property="repairsname" jdbcType="VARCHAR" />
|
|
|
<result column="repairsPhone" property="repairsphone" jdbcType="VARCHAR" />
|
|
|
<result column="maintainDate" property="maintaindate" jdbcType="TIMESTAMP" />
|
|
|
<result column="maintainCase" property="maintaincase" jdbcType="VARCHAR" />
|
|
|
<result column="cooperateMaintainName" property="cooperatemaintainname" jdbcType="VARCHAR" />
|
|
|
<result column="meno" property="meno" jdbcType="INTEGER" />
|
|
|
<result column="remark1" property="remark1" jdbcType="VARCHAR" />
|
|
|
<result column="remark2" property="remark2" jdbcType="VARCHAR" />
|
|
|
<result column="remark3" property="remark3" jdbcType="VARCHAR" />
|
|
|
<result column="createBy" property="createby" jdbcType="INTEGER" />
|
|
|
<result column="createTime" property="createtime" jdbcType="TIMESTAMP" />
|
|
|
</resultMap>
|
|
|
<sql id="Base_Column_List" >
|
|
|
id, repairsDate, repairsContent, reflectWay, repairsDept, answerThePhoneName, repairsName,
|
|
|
repairsPhone, maintainDate, maintainCase, cooperateMaintainName, meno, remark1, remark2,
|
|
|
remark3, createBy, createTime
|
|
|
</sql>
|
|
|
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
|
|
|
select
|
|
|
<include refid="Base_Column_List" />
|
|
|
from staff_apertment_maintain
|
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
|
</select>
|
|
|
|
|
|
<select id="findAll" resultMap="BaseResultMap" parameterType="java.lang.String" >
|
|
|
select
|
|
|
<include refid="Base_Column_List" />
|
|
|
from staff_apertment_maintain
|
|
|
<if test="repairsname != null and repairsname!=''" >
|
|
|
where repairsName = #{repairsname, jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
</select>
|
|
|
|
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
|
|
|
delete from staff_apertment_maintain
|
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
|
</delete>
|
|
|
<insert id="insert" parameterType="com.tianbo.warehouse.model.StaffApartmentMaintain" >
|
|
|
insert into staff_apertment_maintain (id, repairsDate, repairsContent,
|
|
|
reflectWay, repairsDept, answerThePhoneName,
|
|
|
repairsName, repairsPhone, maintainDate,
|
|
|
maintainCase, cooperateMaintainName, meno,
|
|
|
remark1, remark2, remark3,
|
|
|
createBy, createTime)
|
|
|
values (#{id,jdbcType=VARCHAR}, #{repairsdate,jdbcType=TIMESTAMP}, #{repairscontent,jdbcType=VARCHAR},
|
|
|
#{reflectway,jdbcType=VARCHAR}, #{repairsdept,jdbcType=VARCHAR}, #{answerthephonename,jdbcType=VARCHAR},
|
|
|
#{repairsname,jdbcType=VARCHAR}, #{repairsphone,jdbcType=VARCHAR}, #{maintaindate,jdbcType=TIMESTAMP},
|
|
|
#{maintaincase,jdbcType=VARCHAR}, #{cooperatemaintainname,jdbcType=VARCHAR}, #{meno,jdbcType=INTEGER},
|
|
|
#{remark1,jdbcType=VARCHAR}, #{remark2,jdbcType=VARCHAR}, #{remark3,jdbcType=VARCHAR},
|
|
|
#{createby,jdbcType=INTEGER}, #{createtime,jdbcType=TIMESTAMP})
|
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.tianbo.warehouse.model.StaffApartmentMaintain" >
|
|
|
insert into staff_apertment_maintain
|
|
|
<trim prefix="(" suffix=")" suffixOverrides="," >
|
|
|
<if test="id != null" >
|
|
|
id,
|
|
|
</if>
|
|
|
<if test="repairsdate != null" >
|
|
|
repairsDate,
|
|
|
</if>
|
|
|
<if test="repairscontent != null" >
|
|
|
repairsContent,
|
|
|
</if>
|
|
|
<if test="reflectway != null" >
|
|
|
reflectWay,
|
|
|
</if>
|
|
|
<if test="repairsdept != null" >
|
|
|
repairsDept,
|
|
|
</if>
|
|
|
<if test="answerthephonename != null" >
|
|
|
answerThePhoneName,
|
|
|
</if>
|
|
|
<if test="repairsname != null" >
|
|
|
repairsName,
|
|
|
</if>
|
|
|
<if test="repairsphone != null" >
|
|
|
repairsPhone,
|
|
|
</if>
|
|
|
<if test="maintaindate != null" >
|
|
|
maintainDate,
|
|
|
</if>
|
|
|
<if test="maintaincase != null" >
|
|
|
maintainCase,
|
|
|
</if>
|
|
|
<if test="cooperatemaintainname != null" >
|
|
|
cooperateMaintainName,
|
|
|
</if>
|
|
|
<if test="meno != null" >
|
|
|
meno,
|
|
|
</if>
|
|
|
<if test="remark1 != null" >
|
|
|
remark1,
|
|
|
</if>
|
|
|
<if test="remark2 != null" >
|
|
|
remark2,
|
|
|
</if>
|
|
|
<if test="remark3 != null" >
|
|
|
remark3,
|
|
|
</if>
|
|
|
<if test="createby != null" >
|
|
|
createBy,
|
|
|
</if>
|
|
|
<if test="createtime != null" >
|
|
|
createTime,
|
|
|
</if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides="," >
|
|
|
<if test="id != null" >
|
|
|
#{id,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="repairsdate != null" >
|
|
|
#{repairsdate,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
<if test="repairscontent != null" >
|
|
|
#{repairscontent,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="reflectway != null" >
|
|
|
#{reflectway,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="repairsdept != null" >
|
|
|
#{repairsdept,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="answerthephonename != null" >
|
|
|
#{answerthephonename,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="repairsname != null" >
|
|
|
#{repairsname,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="repairsphone != null" >
|
|
|
#{repairsphone,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="maintaindate != null" >
|
|
|
#{maintaindate,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
<if test="maintaincase != null" >
|
|
|
#{maintaincase,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="cooperatemaintainname != null" >
|
|
|
#{cooperatemaintainname,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="meno != null" >
|
|
|
#{meno,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="remark1 != null" >
|
|
|
#{remark1,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="remark2 != null" >
|
|
|
#{remark2,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="remark3 != null" >
|
|
|
#{remark3,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="createby != null" >
|
|
|
#{createby,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="createtime != null" >
|
|
|
#{createtime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.tianbo.warehouse.model.StaffApartmentMaintain" >
|
|
|
update staff_apertment_maintain
|
|
|
<set >
|
|
|
<if test="repairsdate != null" >
|
|
|
repairsDate = #{repairsdate,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
<if test="repairscontent != null" >
|
|
|
repairsContent = #{repairscontent,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="reflectway != null" >
|
|
|
reflectWay = #{reflectway,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="repairsdept != null" >
|
|
|
repairsDept = #{repairsdept,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="answerthephonename != null" >
|
|
|
answerThePhoneName = #{answerthephonename,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="repairsname != null" >
|
|
|
repairsName = #{repairsname,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="repairsphone != null" >
|
|
|
repairsPhone = #{repairsphone,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="maintaindate != null" >
|
|
|
maintainDate = #{maintaindate,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
<if test="maintaincase != null" >
|
|
|
maintainCase = #{maintaincase,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="cooperatemaintainname != null" >
|
|
|
cooperateMaintainName = #{cooperatemaintainname,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="meno != null" >
|
|
|
meno = #{meno,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="remark1 != null" >
|
|
|
remark1 = #{remark1,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="remark2 != null" >
|
|
|
remark2 = #{remark2,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="remark3 != null" >
|
|
|
remark3 = #{remark3,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="createby != null" >
|
|
|
createBy = #{createby,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="createtime != null" >
|
|
|
createTime = #{createtime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
</set>
|
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
|
</update>
|
|
|
<update id="updateByPrimaryKey" parameterType="com.tianbo.warehouse.model.StaffApartmentMaintain" >
|
|
|
update staff_apertment_maintain
|
|
|
set repairsDate = #{repairsdate,jdbcType=TIMESTAMP},
|
|
|
repairsContent = #{repairscontent,jdbcType=VARCHAR},
|
|
|
reflectWay = #{reflectway,jdbcType=VARCHAR},
|
|
|
repairsDept = #{repairsdept,jdbcType=VARCHAR},
|
|
|
answerThePhoneName = #{answerthephonename,jdbcType=VARCHAR},
|
|
|
repairsName = #{repairsname,jdbcType=VARCHAR},
|
|
|
repairsPhone = #{repairsphone,jdbcType=VARCHAR},
|
|
|
maintainDate = #{maintaindate,jdbcType=TIMESTAMP},
|
|
|
maintainCase = #{maintaincase,jdbcType=VARCHAR},
|
|
|
cooperateMaintainName = #{cooperatemaintainname,jdbcType=VARCHAR},
|
|
|
meno = #{meno,jdbcType=INTEGER},
|
|
|
remark1 = #{remark1,jdbcType=VARCHAR},
|
|
|
remark2 = #{remark2,jdbcType=VARCHAR},
|
|
|
remark3 = #{remark3,jdbcType=VARCHAR},
|
|
|
createBy = #{createby,jdbcType=INTEGER},
|
|
|
createTime = #{createtime,jdbcType=TIMESTAMP}
|
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
|
</update>
|
|
|
</mapper> |
|
|
\ No newline at end of file |
...
|
...
|
|