|
|
@@ -0,0 +1,243 @@
|
|
|
+<?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.sckw.slope.detection.dao.mysql.KwsCompanyMapper">
|
|
|
+ <resultMap id="BaseResultMap" type="com.sckw.slope.detection.model.dos.mysql.KwsCompany">
|
|
|
+ <!--@mbg.generated-->
|
|
|
+ <!--@Table kws_company-->
|
|
|
+ <id column="id" jdbcType="BIGINT" property="id" />
|
|
|
+ <result column="name" jdbcType="VARCHAR" property="name" />
|
|
|
+ <result column="type" jdbcType="VARCHAR" property="type" />
|
|
|
+ <result column="code" jdbcType="VARCHAR" property="code" />
|
|
|
+ <result column="address" jdbcType="VARCHAR" property="address" />
|
|
|
+ <result column="phone" jdbcType="VARCHAR" property="phone" />
|
|
|
+ <result column="fence" jdbcType="VARCHAR" property="fence" />
|
|
|
+ <result column="person" jdbcType="VARCHAR" property="person" />
|
|
|
+ <result column="person_mobile" jdbcType="VARCHAR" property="personMobile" />
|
|
|
+ <result column="platform_name" jdbcType="VARCHAR" property="platformName" />
|
|
|
+ <result column="platform_address" jdbcType="VARCHAR" property="platformAddress" />
|
|
|
+ <result column="status" jdbcType="TINYINT" property="status" />
|
|
|
+ <result column="create_by" jdbcType="BIGINT" property="createBy" />
|
|
|
+ <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
|
|
+ <result column="update_by" jdbcType="BIGINT" property="updateBy" />
|
|
|
+ <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
|
|
+ <result column="del_flag" jdbcType="TINYINT" property="delFlag" />
|
|
|
+ </resultMap>
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ <!--@mbg.generated-->
|
|
|
+ id, `name`, `type`, code, address, phone, fence, person, person_mobile, platform_name,
|
|
|
+ platform_address, `status`, create_by, create_time, update_by, update_time, del_flag
|
|
|
+ </sql>
|
|
|
+ <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
|
|
|
+ <!--@mbg.generated-->
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
+ from kws_company
|
|
|
+ where id = #{id,jdbcType=BIGINT}
|
|
|
+ </select>
|
|
|
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
|
|
+ <!--@mbg.generated-->
|
|
|
+ delete from kws_company
|
|
|
+ where id = #{id,jdbcType=BIGINT}
|
|
|
+ </delete>
|
|
|
+ <insert id="insert" parameterType="com.sckw.slope.detection.model.dos.mysql.KwsCompany">
|
|
|
+ <!--@mbg.generated-->
|
|
|
+ insert into kws_company (id, `name`, `type`,
|
|
|
+ code,code_all, address, phone,
|
|
|
+ fence, person, person_mobile,
|
|
|
+ platform_name, platform_address, `status`,
|
|
|
+ create_by, create_time, update_by,
|
|
|
+ update_time,company_id,code_area)
|
|
|
+ values (#{id,jdbcType=BIGINT}, #{name,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR},
|
|
|
+ #{code,jdbcType=VARCHAR}, #{codeAll,jdbcType=VARCHAR}, #{address,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR},
|
|
|
+ #{fence,jdbcType=VARCHAR}, #{person,jdbcType=VARCHAR}, #{personMobile,jdbcType=VARCHAR},
|
|
|
+ #{platformName,jdbcType=VARCHAR}, #{platformAddress,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR},
|
|
|
+ #{createBy,jdbcType=BIGINT}, #{createTime,jdbcType=TIMESTAMP}, #{updateBy,jdbcType=BIGINT},
|
|
|
+ #{updateTime,jdbcType=TIMESTAMP},#{companyId,jdbcType=BIGINT},#{codeArea,jdbcType=VARCHAR})
|
|
|
+ </insert>
|
|
|
+ <insert id="insertSelective" parameterType="com.sckw.slope.detection.model.dos.mysql.KwsCompany">
|
|
|
+ <!--@mbg.generated-->
|
|
|
+ insert into kws_company
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="id != null">
|
|
|
+ id,
|
|
|
+ </if>
|
|
|
+ <if test="name != null">
|
|
|
+ `name`,
|
|
|
+ </if>
|
|
|
+ <if test="type != null">
|
|
|
+ `type`,
|
|
|
+ </if>
|
|
|
+ <if test="code != null">
|
|
|
+ code,
|
|
|
+ </if>
|
|
|
+ <if test="address != null">
|
|
|
+ address,
|
|
|
+ </if>
|
|
|
+ <if test="phone != null">
|
|
|
+ phone,
|
|
|
+ </if>
|
|
|
+ <if test="fence != null">
|
|
|
+ fence,
|
|
|
+ </if>
|
|
|
+ <if test="person != null">
|
|
|
+ person,
|
|
|
+ </if>
|
|
|
+ <if test="personMobile != null">
|
|
|
+ person_mobile,
|
|
|
+ </if>
|
|
|
+ <if test="platformName != null">
|
|
|
+ platform_name,
|
|
|
+ </if>
|
|
|
+ <if test="platformAddress != null">
|
|
|
+ platform_address,
|
|
|
+ </if>
|
|
|
+ <if test="status != null">
|
|
|
+ `status`,
|
|
|
+ </if>
|
|
|
+ <if test="createBy != null">
|
|
|
+ create_by,
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">
|
|
|
+ create_time,
|
|
|
+ </if>
|
|
|
+ <if test="updateBy != null">
|
|
|
+ update_by,
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">
|
|
|
+ update_time,
|
|
|
+ </if>
|
|
|
+ <if test="delFlag != null">
|
|
|
+ del_flag,
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="id != null">
|
|
|
+ #{id,jdbcType=BIGINT},
|
|
|
+ </if>
|
|
|
+ <if test="name != null">
|
|
|
+ #{name,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="type != null">
|
|
|
+ #{type,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="code != null">
|
|
|
+ #{code,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="address != null">
|
|
|
+ #{address,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="phone != null">
|
|
|
+ #{phone,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="fence != null">
|
|
|
+ #{fence,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="person != null">
|
|
|
+ #{person,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="personMobile != null">
|
|
|
+ #{personMobile,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="platformName != null">
|
|
|
+ #{platformName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="platformAddress != null">
|
|
|
+ #{platformAddress,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="status != null">
|
|
|
+ #{status,jdbcType=TINYINT},
|
|
|
+ </if>
|
|
|
+ <if test="createBy != null">
|
|
|
+ #{createBy,jdbcType=BIGINT},
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">
|
|
|
+ #{createTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="updateBy != null">
|
|
|
+ #{updateBy,jdbcType=BIGINT},
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">
|
|
|
+ #{updateTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="delFlag != null">
|
|
|
+ #{delFlag,jdbcType=TINYINT},
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
+ <update id="updateByPrimaryKeySelective" parameterType="com.sckw.slope.detection.model.dos.mysql.KwsCompany">
|
|
|
+ <!--@mbg.generated-->
|
|
|
+ update kws_company
|
|
|
+ <set>
|
|
|
+ <if test="name != null">
|
|
|
+ `name` = #{name,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="type != null">
|
|
|
+ `type` = #{type,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="code != null">
|
|
|
+ code = #{code,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="address != null">
|
|
|
+ address = #{address,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="phone != null">
|
|
|
+ phone = #{phone,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="fence != null">
|
|
|
+ fence = #{fence,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="person != null">
|
|
|
+ person = #{person,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="personMobile != null">
|
|
|
+ person_mobile = #{personMobile,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="platformName != null">
|
|
|
+ platform_name = #{platformName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="platformAddress != null">
|
|
|
+ platform_address = #{platformAddress,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="status != null">
|
|
|
+ `status` = #{status,jdbcType=TINYINT},
|
|
|
+ </if>
|
|
|
+ <if test="createBy != null">
|
|
|
+ create_by = #{createBy,jdbcType=BIGINT},
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">
|
|
|
+ create_time = #{createTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="updateBy != null">
|
|
|
+ update_by = #{updateBy,jdbcType=BIGINT},
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">
|
|
|
+ update_time = #{updateTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="delFlag != null">
|
|
|
+ del_flag = #{delFlag,jdbcType=TINYINT},
|
|
|
+ </if>
|
|
|
+ </set>
|
|
|
+ where id = #{id,jdbcType=BIGINT}
|
|
|
+ </update>
|
|
|
+ <update id="updateByPrimaryKey" parameterType="com.sckw.slope.detection.model.dos.mysql.KwsCompany">
|
|
|
+ <!--@mbg.generated-->
|
|
|
+ update kws_company
|
|
|
+ set `name` = #{name,jdbcType=VARCHAR},
|
|
|
+ `type` = #{type,jdbcType=VARCHAR},
|
|
|
+ code = #{code,jdbcType=VARCHAR},
|
|
|
+ address = #{address,jdbcType=VARCHAR},
|
|
|
+ phone = #{phone,jdbcType=VARCHAR},
|
|
|
+ fence = #{fence,jdbcType=VARCHAR},
|
|
|
+ person = #{person,jdbcType=VARCHAR},
|
|
|
+ person_mobile = #{personMobile,jdbcType=VARCHAR},
|
|
|
+ platform_name = #{platformName,jdbcType=VARCHAR},
|
|
|
+ platform_address = #{platformAddress,jdbcType=VARCHAR},
|
|
|
+ `status` = #{status,jdbcType=TINYINT},
|
|
|
+ create_by = #{createBy,jdbcType=BIGINT},
|
|
|
+ create_time = #{createTime,jdbcType=TIMESTAMP},
|
|
|
+ update_by = #{updateBy,jdbcType=BIGINT},
|
|
|
+ update_time = #{updateTime,jdbcType=TIMESTAMP},
|
|
|
+ del_flag = #{delFlag,jdbcType=TINYINT}
|
|
|
+ where id = #{id,jdbcType=BIGINT}
|
|
|
+ </update>
|
|
|
+</mapper>
|