Blame view

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