Blame view

dal/src/main/resources/META-INF/mybatis/UnionShareUserApplyMapper.xml 8.76 KB
1 2 3 4 5 6 7
<?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.yoho.unions.dal.UnionShareUserApplyMapper" >
  <resultMap id="BaseResultMap" type="com.yoho.unions.dal.model.UnionShareUserApply" >
    <id column="id" property="id" jdbcType="INTEGER" />
    <result column="uid" property="uid" jdbcType="INTEGER" />
    <result column="name" property="name" jdbcType="VARCHAR" />
mingdan.ge authored
8
    <result column="mobile" property="mobile" jdbcType="VARCHAR" />
mingdan.ge authored
9
    <result column="social_media" property="socialMedia" jdbcType="VARCHAR" />
mingdan.ge authored
10
    <result column="inviter_union_type" property="inviterUnionType" jdbcType="VARCHAR" />
11 12 13 14 15 16
    <result column="status" property="status" jdbcType="TINYINT" />
    <result column="del_flag" property="delFlag" jdbcType="TINYINT" />
    <result column="create_time" property="createTime" jdbcType="INTEGER" />
    <result column="check_time" property="checkTime" jdbcType="INTEGER" />
  </resultMap>
  <sql id="Base_Column_List" >
mingdan.ge authored
17
    id, uid, name, mobile, social_media, status,
mingdan.ge authored
18
    del_flag, create_time, check_time, inviter_union_type
19 20 21 22 23 24 25
  </sql>
  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
    select 
    <include refid="Base_Column_List" />
    from union_share_user_apply
    where id = #{id,jdbcType=INTEGER}
  </select>
mingdan.ge authored
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
  <select id="selectCountByUid" resultType="java.lang.Integer" parameterType="com.yoho.unions.dal.model.UnionShareUserApply" >
    select count(1) from union_share_user_apply
    where uid = #{uid,jdbcType=INTEGER}
    <if test="status != null">
      and status  = #{status,jdbcType=TINYINT}
    </if>
  </select>
  <select id="selectOneByUid" resultMap="BaseResultMap" parameterType="com.yoho.unions.dal.model.UnionShareUserApply" >
    select
    <include refid="Base_Column_List" />
    from union_share_user_apply
    where uid = #{uid,jdbcType=INTEGER}
    <if test="status != null">
      and status  = #{status,jdbcType=TINYINT}
    </if>
41
    order by create_time desc
mingdan.ge authored
42 43
    limit 1
  </select>
44 45 46 47 48 49 50 51 52
  <select id="selectByIds" resultMap="BaseResultMap"  >
    select
    <include refid="Base_Column_List" />
    from union_share_user_apply
    where id in
    <foreach collection="ids" open="(" close=")" item="id" separator=",">
      #{id}
    </foreach>
  </select>
mingdan.ge authored
53 54 55
  <select id="selectUidListByTime" resultType="java.lang.Integer"  >
    select uid
    from union_share_user_apply
mingdan.ge authored
56
    where status=2 and del_flag=1 and check_time >= #{beginTime} and check_time &lt; #{endTime}
mingdan.ge authored
57
  </select>
csgyoho authored
58 59 60
  <select id="selectByCondition"
          resultType="com.yoho.service.model.union.response.UnionShareUserApplyListBo"
          parameterType="com.yoho.service.model.union.request.UnionShareUserApplyListReqBo">
mingdan.ge authored
61
    select id, uid, name,mobile, social_media socialMedia, status,
csgyoho authored
62 63
    del_flag delFlag, create_time createTime, check_time checkTime
    from union_share_user_apply
mingdan.ge authored
64
    where del_flag=1
csgyoho authored
65 66 67 68 69 70
    <if test="uid != null">
      and uid = #{uid}
    </if>
    <if test="name != null">
      and name = #{name}
    </if>
mingdan.ge authored
71 72 73
    <if test="mobile != null">
      and mobile = #{mobile}
    </if>
csgyoho authored
74 75 76
    <if test="status != null">
      and status = #{status}
    </if>
77 78 79 80 81 82
    <if test="endTime != null">
      and create_time &lt;= #{endTime}
    </if>
    <if test="beginTime != null">
      and create_time &gt;= #{beginTime}
    </if>
csgyoho authored
83 84 85 86 87
    order by id desc
    limit #{start},#{size}
  </select>
  <select id="selectTotalByCondition" resultType="java.lang.Integer"
          parameterType="com.yoho.service.model.union.request.UnionShareUserApplyListReqBo">
mingdan.ge authored
88
    select count(id)
csgyoho authored
89
    from union_share_user_apply
mingdan.ge authored
90
    where del_flag=1
csgyoho authored
91 92 93 94 95 96
    <if test="uid != null">
      and uid = #{uid}
    </if>
    <if test="name != null">
      and name = #{name}
    </if>
mingdan.ge authored
97 98 99
    <if test="mobile != null">
      and mobile = #{mobile}
    </if>
csgyoho authored
100 101 102
    <if test="status != null">
      and status = #{status}
    </if>
103 104 105 106 107 108
    <if test="endTime != null">
      and create_time &lt;= #{endTime}
    </if>
    <if test="beginTime != null">
      and create_time &gt;= #{beginTime}
    </if>
csgyoho authored
109
  </select>
110 111 112 113 114
  <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
    delete from union_share_user_apply
    where id = #{id,jdbcType=INTEGER}
  </delete>
  <insert id="insert" parameterType="com.yoho.unions.dal.model.UnionShareUserApply" >
mingdan.ge authored
115
    insert into union_share_user_apply (id, uid, name, mobile,
mingdan.ge authored
116
      social_media,
117 118
      status, del_flag, create_time, 
      check_time)
mingdan.ge authored
119
    values (#{id,jdbcType=INTEGER}, #{uid,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{mobile,jdbcType=VARCHAR},
mingdan.ge authored
120
      #{socialMedia,jdbcType=VARCHAR},
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
      #{status,jdbcType=TINYINT}, #{delFlag,jdbcType=TINYINT}, #{createTime,jdbcType=INTEGER}, 
      #{checkTime,jdbcType=INTEGER})
  </insert>
  <insert id="insertSelective" parameterType="com.yoho.unions.dal.model.UnionShareUserApply" >
    insert into union_share_user_apply
    <trim prefix="(" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        id,
      </if>
      <if test="uid != null" >
        uid,
      </if>
      <if test="name != null" >
        name,
      </if>
mingdan.ge authored
136 137 138
      <if test="mobile != null" >
        mobile,
      </if>
mingdan.ge authored
139 140
      <if test="socialMedia != null" >
        social_media,
141
      </if>
mingdan.ge authored
142 143 144
      <if test="inviterUnionType != null" >
        inviter_union_type,
      </if>
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
      <if test="status != null" >
        status,
      </if>
      <if test="delFlag != null" >
        del_flag,
      </if>
      <if test="createTime != null" >
        create_time,
      </if>
      <if test="checkTime != null" >
        check_time,
      </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        #{id,jdbcType=INTEGER},
      </if>
      <if test="uid != null" >
        #{uid,jdbcType=INTEGER},
      </if>
      <if test="name != null" >
        #{name,jdbcType=VARCHAR},
      </if>
mingdan.ge authored
168 169 170
      <if test="mobile != null" >
        #{mobile,jdbcType=VARCHAR},
      </if>
mingdan.ge authored
171 172
      <if test="socialMedia != null" >
        #{socialMedia,jdbcType=VARCHAR},
173
      </if>
mingdan.ge authored
174 175 176
      <if test="inviterUnionType != null" >
        #{inviterUnionType,jdbcType=VARCHAR},
      </if>
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
      <if test="status != null" >
        #{status,jdbcType=TINYINT},
      </if>
      <if test="delFlag != null" >
        #{delFlag,jdbcType=TINYINT},
      </if>
      <if test="createTime != null" >
        #{createTime,jdbcType=INTEGER},
      </if>
      <if test="checkTime != null" >
        #{checkTime,jdbcType=INTEGER},
      </if>
    </trim>
  </insert>
  <update id="updateByPrimaryKeySelective" parameterType="com.yoho.unions.dal.model.UnionShareUserApply" >
    update union_share_user_apply
    <set >
      <if test="uid != null" >
        uid = #{uid,jdbcType=INTEGER},
      </if>
      <if test="name != null" >
        name = #{name,jdbcType=VARCHAR},
      </if>
mingdan.ge authored
200 201 202
      <if test="mobile != null" >
        mobile = #{mobile,jdbcType=VARCHAR},
      </if>
mingdan.ge authored
203 204
      <if test="socialMedia != null" >
        social_media = #{socialMedia,jdbcType=VARCHAR},
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
      </if>
      <if test="status != null" >
        status = #{status,jdbcType=TINYINT},
      </if>
      <if test="delFlag != null" >
        del_flag = #{delFlag,jdbcType=TINYINT},
      </if>
      <if test="createTime != null" >
        create_time = #{createTime,jdbcType=INTEGER},
      </if>
      <if test="checkTime != null" >
        check_time = #{checkTime,jdbcType=INTEGER},
      </if>
    </set>
    where id = #{id,jdbcType=INTEGER}
  </update>
221 222 223 224 225 226 227 228 229 230 231 232
  <update id="updateStatus" parameterType="com.yoho.unions.dal.model.UnionShareUserApply" >
    update union_share_user_apply
    <set >
        status = #{newState,jdbcType=TINYINT},
        check_time = #{time,jdbcType=INTEGER},
    </set>
    where id in
    <foreach collection="ids" open="(" close=")" item="id" separator=",">
      #{id}
    </foreach>
    and status = #{oldState,jdbcType=TINYINT}
  </update>
233 234 235 236
  <update id="updateStatusByUid" parameterType="com.yoho.unions.dal.model.UnionShareUserApply" >
    update union_share_user_apply
    <set >
        status = #{newState,jdbcType=TINYINT},
mingdan.ge authored
237
      <if test="time != null" >
238
        check_time = #{time,jdbcType=INTEGER},
mingdan.ge authored
239
      </if>
240 241 242 243
    </set>
    where uid =#{uid,jdbcType=INTEGER}
    and status = #{oldState,jdbcType=TINYINT}
  </update>
244 245 246 247
  <update id="updateByPrimaryKey" parameterType="com.yoho.unions.dal.model.UnionShareUserApply" >
    update union_share_user_apply
    set uid = #{uid,jdbcType=INTEGER},
      name = #{name,jdbcType=VARCHAR},
mingdan.ge authored
248
      mobile = #{mobile,jdbcType=VARCHAR},
mingdan.ge authored
249
      social_media = #{socialMedia,jdbcType=VARCHAR},
250 251 252 253 254 255 256
      status = #{status,jdbcType=TINYINT},
      del_flag = #{delFlag,jdbcType=TINYINT},
      create_time = #{createTime,jdbcType=INTEGER},
      check_time = #{checkTime,jdbcType=INTEGER}
    where id = #{id,jdbcType=INTEGER}
  </update>
</mapper>