123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404 |
- <?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.cdu.lys.graduation.repository.dao.MerchantDOMapper" >
- <resultMap id="BaseResultMap" type="com.cdu.lys.graduation.repository.entity.MerchantDO" >
- <constructor >
- <idArg column="id" jdbcType="INTEGER" javaType="java.lang.Integer" />
- <arg column="store_name" jdbcType="VARCHAR" javaType="java.lang.String" />
- <arg column="header_url" jdbcType="VARCHAR" javaType="java.lang.String" />
- <arg column="description" jdbcType="VARCHAR" javaType="java.lang.String" />
- <arg column="business_time" jdbcType="VARCHAR" javaType="java.lang.String" />
- <arg column="province" jdbcType="VARCHAR" javaType="java.lang.String" />
- <arg column="city" jdbcType="VARCHAR" javaType="java.lang.String" />
- <arg column="district" jdbcType="VARCHAR" javaType="java.lang.String" />
- <arg column="address" jdbcType="VARCHAR" javaType="java.lang.String" />
- <arg column="phone" jdbcType="VARCHAR" javaType="java.lang.String" />
- <arg column="announcement" jdbcType="VARCHAR" javaType="java.lang.String" />
- <arg column="score" jdbcType="DOUBLE" javaType="java.lang.Double" />
- <arg column="is_auto_reply" jdbcType="VARCHAR" javaType="java.lang.String" />
- <arg column="auto_reply_content" jdbcType="VARCHAR" javaType="java.lang.String" />
- <arg column="create_time" jdbcType="TIMESTAMP" javaType="java.util.Date" />
- <arg column="update_time" jdbcType="TIMESTAMP" javaType="java.util.Date" />
- <arg column="is_delete" jdbcType="CHAR" javaType="java.lang.String" />
- </constructor>
- </resultMap>
- <sql id="Example_Where_Clause" >
- <where >
- <foreach collection="oredCriteria" item="criteria" separator="or" >
- <if test="criteria.valid" >
- <trim prefix="(" suffix=")" prefixOverrides="and" >
- <foreach collection="criteria.criteria" item="criterion" >
- <choose >
- <when test="criterion.noValue" >
- and ${criterion.condition}
- </when>
- <when test="criterion.singleValue" >
- and ${criterion.condition} #{criterion.value}
- </when>
- <when test="criterion.betweenValue" >
- and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
- </when>
- <when test="criterion.listValue" >
- and ${criterion.condition}
- <foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
- #{listItem}
- </foreach>
- </when>
- </choose>
- </foreach>
- </trim>
- </if>
- </foreach>
- </where>
- </sql>
- <sql id="Update_By_Example_Where_Clause" >
- <where >
- <foreach collection="example.oredCriteria" item="criteria" separator="or" >
- <if test="criteria.valid" >
- <trim prefix="(" suffix=")" prefixOverrides="and" >
- <foreach collection="criteria.criteria" item="criterion" >
- <choose >
- <when test="criterion.noValue" >
- and ${criterion.condition}
- </when>
- <when test="criterion.singleValue" >
- and ${criterion.condition} #{criterion.value}
- </when>
- <when test="criterion.betweenValue" >
- and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
- </when>
- <when test="criterion.listValue" >
- and ${criterion.condition}
- <foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
- #{listItem}
- </foreach>
- </when>
- </choose>
- </foreach>
- </trim>
- </if>
- </foreach>
- </where>
- </sql>
- <sql id="Base_Column_List" >
- id, store_name, header_url, description, business_time, province, city, district,
- address, phone, announcement, score, is_auto_reply, auto_reply_content, create_time,
- update_time, is_delete
- </sql>
- <select id="selectByExample" resultMap="BaseResultMap" parameterType="com.cdu.lys.graduation.repository.entity.MerchantDOExample" >
- select
- <if test="distinct" >
- distinct
- </if>
- 'true' as QUERYID,
- <include refid="Base_Column_List" />
- from tb_merchant
- <if test="_parameter != null" >
- <include refid="Example_Where_Clause" />
- </if>
- <if test="orderByClause != null" >
- order by ${orderByClause}
- </if>
- </select>
- <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
- select
- <include refid="Base_Column_List" />
- from tb_merchant
- where id = #{id,jdbcType=INTEGER}
- </select>
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
- delete from tb_merchant
- where id = #{id,jdbcType=INTEGER}
- </delete>
- <delete id="deleteByExample" parameterType="com.cdu.lys.graduation.repository.entity.MerchantDOExample" >
- delete from tb_merchant
- <if test="_parameter != null" >
- <include refid="Example_Where_Clause" />
- </if>
- </delete>
- <insert id="insert" parameterType="com.cdu.lys.graduation.repository.entity.MerchantDO" >
- <selectKey resultType="java.lang.Integer" keyProperty="id" order="AFTER" >
- SELECT LAST_INSERT_ID()
- </selectKey>
- insert into tb_merchant (store_name, header_url, description,
- business_time, province, city,
- district, address, phone,
- announcement, score, is_auto_reply,
- auto_reply_content, create_time, update_time,
- is_delete)
- values (#{storeName,jdbcType=VARCHAR}, #{headerUrl,jdbcType=VARCHAR}, #{description,jdbcType=VARCHAR},
- #{businessTime,jdbcType=VARCHAR}, #{province,jdbcType=VARCHAR}, #{city,jdbcType=VARCHAR},
- #{district,jdbcType=VARCHAR}, #{address,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR},
- #{announcement,jdbcType=VARCHAR}, #{score,jdbcType=DOUBLE}, #{isAutoReply,jdbcType=VARCHAR},
- #{autoReplyContent,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP},
- #{isDelete,jdbcType=CHAR})
- </insert>
- <insert id="insertSelective" parameterType="com.cdu.lys.graduation.repository.entity.MerchantDO" >
- <selectKey resultType="java.lang.Integer" keyProperty="id" order="AFTER" >
- SELECT LAST_INSERT_ID()
- </selectKey>
- insert into tb_merchant
- <trim prefix="(" suffix=")" suffixOverrides="," >
- <if test="storeName != null" >
- store_name,
- </if>
- <if test="headerUrl != null" >
- header_url,
- </if>
- <if test="description != null" >
- description,
- </if>
- <if test="businessTime != null" >
- business_time,
- </if>
- <if test="province != null" >
- province,
- </if>
- <if test="city != null" >
- city,
- </if>
- <if test="district != null" >
- district,
- </if>
- <if test="address != null" >
- address,
- </if>
- <if test="phone != null" >
- phone,
- </if>
- <if test="announcement != null" >
- announcement,
- </if>
- <if test="score != null" >
- score,
- </if>
- <if test="isAutoReply != null" >
- is_auto_reply,
- </if>
- <if test="autoReplyContent != null" >
- auto_reply_content,
- </if>
- <if test="createTime != null" >
- create_time,
- </if>
- <if test="updateTime != null" >
- update_time,
- </if>
- <if test="isDelete != null" >
- is_delete,
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides="," >
- <if test="storeName != null" >
- #{storeName,jdbcType=VARCHAR},
- </if>
- <if test="headerUrl != null" >
- #{headerUrl,jdbcType=VARCHAR},
- </if>
- <if test="description != null" >
- #{description,jdbcType=VARCHAR},
- </if>
- <if test="businessTime != null" >
- #{businessTime,jdbcType=VARCHAR},
- </if>
- <if test="province != null" >
- #{province,jdbcType=VARCHAR},
- </if>
- <if test="city != null" >
- #{city,jdbcType=VARCHAR},
- </if>
- <if test="district != null" >
- #{district,jdbcType=VARCHAR},
- </if>
- <if test="address != null" >
- #{address,jdbcType=VARCHAR},
- </if>
- <if test="phone != null" >
- #{phone,jdbcType=VARCHAR},
- </if>
- <if test="announcement != null" >
- #{announcement,jdbcType=VARCHAR},
- </if>
- <if test="score != null" >
- #{score,jdbcType=DOUBLE},
- </if>
- <if test="isAutoReply != null" >
- #{isAutoReply,jdbcType=VARCHAR},
- </if>
- <if test="autoReplyContent != null" >
- #{autoReplyContent,jdbcType=VARCHAR},
- </if>
- <if test="createTime != null" >
- #{createTime,jdbcType=TIMESTAMP},
- </if>
- <if test="updateTime != null" >
- #{updateTime,jdbcType=TIMESTAMP},
- </if>
- <if test="isDelete != null" >
- #{isDelete,jdbcType=CHAR},
- </if>
- </trim>
- </insert>
- <select id="countByExample" parameterType="com.cdu.lys.graduation.repository.entity.MerchantDOExample" resultType="java.lang.Integer" >
- select count(*) from tb_merchant
- <if test="_parameter != null" >
- <include refid="Example_Where_Clause" />
- </if>
- </select>
- <update id="updateByExampleSelective" parameterType="map" >
- update tb_merchant
- <set >
- <if test="record.id != null" >
- id = #{record.id,jdbcType=INTEGER},
- </if>
- <if test="record.storeName != null" >
- store_name = #{record.storeName,jdbcType=VARCHAR},
- </if>
- <if test="record.headerUrl != null" >
- header_url = #{record.headerUrl,jdbcType=VARCHAR},
- </if>
- <if test="record.description != null" >
- description = #{record.description,jdbcType=VARCHAR},
- </if>
- <if test="record.businessTime != null" >
- business_time = #{record.businessTime,jdbcType=VARCHAR},
- </if>
- <if test="record.province != null" >
- province = #{record.province,jdbcType=VARCHAR},
- </if>
- <if test="record.city != null" >
- city = #{record.city,jdbcType=VARCHAR},
- </if>
- <if test="record.district != null" >
- district = #{record.district,jdbcType=VARCHAR},
- </if>
- <if test="record.address != null" >
- address = #{record.address,jdbcType=VARCHAR},
- </if>
- <if test="record.phone != null" >
- phone = #{record.phone,jdbcType=VARCHAR},
- </if>
- <if test="record.announcement != null" >
- announcement = #{record.announcement,jdbcType=VARCHAR},
- </if>
- <if test="record.score != null" >
- score = #{record.score,jdbcType=DOUBLE},
- </if>
- <if test="record.isAutoReply != null" >
- is_auto_reply = #{record.isAutoReply,jdbcType=VARCHAR},
- </if>
- <if test="record.autoReplyContent != null" >
- auto_reply_content = #{record.autoReplyContent,jdbcType=VARCHAR},
- </if>
- <if test="record.createTime != null" >
- create_time = #{record.createTime,jdbcType=TIMESTAMP},
- </if>
- <if test="record.updateTime != null" >
- update_time = #{record.updateTime,jdbcType=TIMESTAMP},
- </if>
- <if test="record.isDelete != null" >
- is_delete = #{record.isDelete,jdbcType=CHAR},
- </if>
- </set>
- <if test="_parameter != null" >
- <include refid="Update_By_Example_Where_Clause" />
- </if>
- </update>
- <update id="updateByExample" parameterType="map" >
- update tb_merchant
- set id = #{record.id,jdbcType=INTEGER},
- store_name = #{record.storeName,jdbcType=VARCHAR},
- header_url = #{record.headerUrl,jdbcType=VARCHAR},
- description = #{record.description,jdbcType=VARCHAR},
- business_time = #{record.businessTime,jdbcType=VARCHAR},
- province = #{record.province,jdbcType=VARCHAR},
- city = #{record.city,jdbcType=VARCHAR},
- district = #{record.district,jdbcType=VARCHAR},
- address = #{record.address,jdbcType=VARCHAR},
- phone = #{record.phone,jdbcType=VARCHAR},
- announcement = #{record.announcement,jdbcType=VARCHAR},
- score = #{record.score,jdbcType=DOUBLE},
- is_auto_reply = #{record.isAutoReply,jdbcType=VARCHAR},
- auto_reply_content = #{record.autoReplyContent,jdbcType=VARCHAR},
- create_time = #{record.createTime,jdbcType=TIMESTAMP},
- update_time = #{record.updateTime,jdbcType=TIMESTAMP},
- is_delete = #{record.isDelete,jdbcType=CHAR}
- <if test="_parameter != null" >
- <include refid="Update_By_Example_Where_Clause" />
- </if>
- </update>
- <update id="updateByPrimaryKeySelective" parameterType="com.cdu.lys.graduation.repository.entity.MerchantDO" >
- update tb_merchant
- <set >
- <if test="storeName != null" >
- store_name = #{storeName,jdbcType=VARCHAR},
- </if>
- <if test="headerUrl != null" >
- header_url = #{headerUrl,jdbcType=VARCHAR},
- </if>
- <if test="description != null" >
- description = #{description,jdbcType=VARCHAR},
- </if>
- <if test="businessTime != null" >
- business_time = #{businessTime,jdbcType=VARCHAR},
- </if>
- <if test="province != null" >
- province = #{province,jdbcType=VARCHAR},
- </if>
- <if test="city != null" >
- city = #{city,jdbcType=VARCHAR},
- </if>
- <if test="district != null" >
- district = #{district,jdbcType=VARCHAR},
- </if>
- <if test="address != null" >
- address = #{address,jdbcType=VARCHAR},
- </if>
- <if test="phone != null" >
- phone = #{phone,jdbcType=VARCHAR},
- </if>
- <if test="announcement != null" >
- announcement = #{announcement,jdbcType=VARCHAR},
- </if>
- <if test="score != null" >
- score = #{score,jdbcType=DOUBLE},
- </if>
- <if test="isAutoReply != null" >
- is_auto_reply = #{isAutoReply,jdbcType=VARCHAR},
- </if>
- <if test="autoReplyContent != null" >
- auto_reply_content = #{autoReplyContent,jdbcType=VARCHAR},
- </if>
- <if test="createTime != null" >
- create_time = #{createTime,jdbcType=TIMESTAMP},
- </if>
- <if test="updateTime != null" >
- update_time = #{updateTime,jdbcType=TIMESTAMP},
- </if>
- <if test="isDelete != null" >
- is_delete = #{isDelete,jdbcType=CHAR},
- </if>
- </set>
- where id = #{id,jdbcType=INTEGER}
- </update>
- <update id="updateByPrimaryKey" parameterType="com.cdu.lys.graduation.repository.entity.MerchantDO" >
- update tb_merchant
- set store_name = #{storeName,jdbcType=VARCHAR},
- header_url = #{headerUrl,jdbcType=VARCHAR},
- description = #{description,jdbcType=VARCHAR},
- business_time = #{businessTime,jdbcType=VARCHAR},
- province = #{province,jdbcType=VARCHAR},
- city = #{city,jdbcType=VARCHAR},
- district = #{district,jdbcType=VARCHAR},
- address = #{address,jdbcType=VARCHAR},
- phone = #{phone,jdbcType=VARCHAR},
- announcement = #{announcement,jdbcType=VARCHAR},
- score = #{score,jdbcType=DOUBLE},
- is_auto_reply = #{isAutoReply,jdbcType=VARCHAR},
- auto_reply_content = #{autoReplyContent,jdbcType=VARCHAR},
- create_time = #{createTime,jdbcType=TIMESTAMP},
- update_time = #{updateTime,jdbcType=TIMESTAMP},
- is_delete = #{isDelete,jdbcType=CHAR}
- where id = #{id,jdbcType=INTEGER}
- </update>
- </mapper>
|