|
|
@@ -6,18 +6,19 @@
|
|
|
<result column="name" jdbcType="VARCHAR" property="name" />
|
|
|
<result column="identity" jdbcType="INTEGER" property="identity" />
|
|
|
<result column="channel" jdbcType="VARCHAR" property="channel" />
|
|
|
+ <result column="layer_type" jdbcType="VARCHAR" property="layerType" />
|
|
|
<result column="contact_name" jdbcType="VARCHAR" property="contactName" />
|
|
|
<result column="tel_num" jdbcType="VARCHAR" property="telNum" />
|
|
|
<result column="price" jdbcType="VARCHAR" property="price" />
|
|
|
<result column="password" jdbcType="VARCHAR" property="password" />
|
|
|
<result column="token" jdbcType="VARCHAR" property="token" />
|
|
|
<result column="token_expire_timestamp" jdbcType="BIGINT" property="tokenExpireTimestamp" />
|
|
|
+ <result column="reply_secret" jdbcType="VARCHAR" property="replySecret" />
|
|
|
<result column="status" jdbcType="INTEGER" property="status" />
|
|
|
<result column="create_account" jdbcType="VARCHAR" property="createAccount" />
|
|
|
<result column="create_timestamp" jdbcType="BIGINT" property="createTimestamp" />
|
|
|
<result column="update_account" jdbcType="VARCHAR" property="updateAccount" />
|
|
|
<result column="update_timestamp" jdbcType="BIGINT" property="updateTimestamp" />
|
|
|
- <result column="layer_type" jdbcType="VARCHAR" property="layerType" />
|
|
|
</resultMap>
|
|
|
<sql id="Example_Where_Clause">
|
|
|
<where>
|
|
|
@@ -78,9 +79,9 @@
|
|
|
</where>
|
|
|
</sql>
|
|
|
<sql id="Base_Column_List">
|
|
|
- id, `name`, `identity`, channel, contact_name, tel_num, price, `password`, token,
|
|
|
- token_expire_timestamp, `status`, create_account, create_timestamp, update_account,
|
|
|
- update_timestamp, layer_type
|
|
|
+ id, `name`, `identity`, channel, layer_type, contact_name, tel_num, price, `password`,
|
|
|
+ token, token_expire_timestamp, reply_secret, `status`, create_account, create_timestamp,
|
|
|
+ update_account, update_timestamp
|
|
|
</sql>
|
|
|
<select id="selectByExample" parameterType="com.tzld.piaoquan.api.model.po.contentplatform.ContentPlatformAccountExample" resultMap="BaseResultMap">
|
|
|
select
|
|
|
@@ -116,20 +117,18 @@
|
|
|
</if>
|
|
|
</delete>
|
|
|
<insert id="insert" parameterType="com.tzld.piaoquan.api.model.po.contentplatform.ContentPlatformAccount">
|
|
|
- insert into content_platform_account (id, `name`, `identity`,
|
|
|
- channel, contact_name, tel_num,
|
|
|
- price, `password`, token,
|
|
|
- token_expire_timestamp, `status`, create_account,
|
|
|
- create_timestamp, update_account, update_timestamp,
|
|
|
- layer_type
|
|
|
- )
|
|
|
- values (#{id,jdbcType=BIGINT}, #{name,jdbcType=VARCHAR}, #{identity,jdbcType=INTEGER},
|
|
|
- #{channel,jdbcType=VARCHAR}, #{contactName,jdbcType=VARCHAR}, #{telNum,jdbcType=VARCHAR},
|
|
|
- #{price,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR}, #{token,jdbcType=VARCHAR},
|
|
|
- #{tokenExpireTimestamp,jdbcType=BIGINT}, #{status,jdbcType=INTEGER}, #{createAccount,jdbcType=VARCHAR},
|
|
|
- #{createTimestamp,jdbcType=BIGINT}, #{updateAccount,jdbcType=VARCHAR}, #{updateTimestamp,jdbcType=BIGINT},
|
|
|
- #{layerType,jdbcType=VARCHAR}
|
|
|
- )
|
|
|
+ insert into content_platform_account (id, `name`, `identity`,
|
|
|
+ channel, layer_type, contact_name,
|
|
|
+ tel_num, price, `password`,
|
|
|
+ token, token_expire_timestamp, reply_secret,
|
|
|
+ `status`, create_account, create_timestamp,
|
|
|
+ update_account, update_timestamp)
|
|
|
+ values (#{id,jdbcType=BIGINT}, #{name,jdbcType=VARCHAR}, #{identity,jdbcType=INTEGER},
|
|
|
+ #{channel,jdbcType=VARCHAR}, #{layerType,jdbcType=VARCHAR}, #{contactName,jdbcType=VARCHAR},
|
|
|
+ #{telNum,jdbcType=VARCHAR}, #{price,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR},
|
|
|
+ #{token,jdbcType=VARCHAR}, #{tokenExpireTimestamp,jdbcType=BIGINT}, #{replySecret,jdbcType=VARCHAR},
|
|
|
+ #{status,jdbcType=INTEGER}, #{createAccount,jdbcType=VARCHAR}, #{createTimestamp,jdbcType=BIGINT},
|
|
|
+ #{updateAccount,jdbcType=VARCHAR}, #{updateTimestamp,jdbcType=BIGINT})
|
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.tzld.piaoquan.api.model.po.contentplatform.ContentPlatformAccount">
|
|
|
insert into content_platform_account
|
|
|
@@ -146,6 +145,9 @@
|
|
|
<if test="channel != null">
|
|
|
channel,
|
|
|
</if>
|
|
|
+ <if test="layerType != null">
|
|
|
+ layer_type,
|
|
|
+ </if>
|
|
|
<if test="contactName != null">
|
|
|
contact_name,
|
|
|
</if>
|
|
|
@@ -164,6 +166,9 @@
|
|
|
<if test="tokenExpireTimestamp != null">
|
|
|
token_expire_timestamp,
|
|
|
</if>
|
|
|
+ <if test="replySecret != null">
|
|
|
+ reply_secret,
|
|
|
+ </if>
|
|
|
<if test="status != null">
|
|
|
`status`,
|
|
|
</if>
|
|
|
@@ -179,9 +184,6 @@
|
|
|
<if test="updateTimestamp != null">
|
|
|
update_timestamp,
|
|
|
</if>
|
|
|
- <if test="layerType != null">
|
|
|
- layer_type,
|
|
|
- </if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="id != null">
|
|
|
@@ -196,6 +198,9 @@
|
|
|
<if test="channel != null">
|
|
|
#{channel,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="layerType != null">
|
|
|
+ #{layerType,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="contactName != null">
|
|
|
#{contactName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
@@ -214,6 +219,9 @@
|
|
|
<if test="tokenExpireTimestamp != null">
|
|
|
#{tokenExpireTimestamp,jdbcType=BIGINT},
|
|
|
</if>
|
|
|
+ <if test="replySecret != null">
|
|
|
+ #{replySecret,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="status != null">
|
|
|
#{status,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
@@ -229,9 +237,6 @@
|
|
|
<if test="updateTimestamp != null">
|
|
|
#{updateTimestamp,jdbcType=BIGINT},
|
|
|
</if>
|
|
|
- <if test="layerType != null">
|
|
|
- #{layerType,jdbcType=VARCHAR},
|
|
|
- </if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
<select id="countByExample" parameterType="com.tzld.piaoquan.api.model.po.contentplatform.ContentPlatformAccountExample" resultType="java.lang.Long">
|
|
|
@@ -255,6 +260,9 @@
|
|
|
<if test="record.channel != null">
|
|
|
channel = #{record.channel,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="record.layerType != null">
|
|
|
+ layer_type = #{record.layerType,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="record.contactName != null">
|
|
|
contact_name = #{record.contactName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
@@ -273,6 +281,9 @@
|
|
|
<if test="record.tokenExpireTimestamp != null">
|
|
|
token_expire_timestamp = #{record.tokenExpireTimestamp,jdbcType=BIGINT},
|
|
|
</if>
|
|
|
+ <if test="record.replySecret != null">
|
|
|
+ reply_secret = #{record.replySecret,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="record.status != null">
|
|
|
`status` = #{record.status,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
@@ -288,9 +299,6 @@
|
|
|
<if test="record.updateTimestamp != null">
|
|
|
update_timestamp = #{record.updateTimestamp,jdbcType=BIGINT},
|
|
|
</if>
|
|
|
- <if test="record.layerType != null">
|
|
|
- layer_type = #{record.layerType,jdbcType=VARCHAR},
|
|
|
- </if>
|
|
|
</set>
|
|
|
<if test="_parameter != null">
|
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
|
@@ -302,18 +310,19 @@
|
|
|
`name` = #{record.name,jdbcType=VARCHAR},
|
|
|
`identity` = #{record.identity,jdbcType=INTEGER},
|
|
|
channel = #{record.channel,jdbcType=VARCHAR},
|
|
|
+ layer_type = #{record.layerType,jdbcType=VARCHAR},
|
|
|
contact_name = #{record.contactName,jdbcType=VARCHAR},
|
|
|
tel_num = #{record.telNum,jdbcType=VARCHAR},
|
|
|
price = #{record.price,jdbcType=VARCHAR},
|
|
|
`password` = #{record.password,jdbcType=VARCHAR},
|
|
|
token = #{record.token,jdbcType=VARCHAR},
|
|
|
token_expire_timestamp = #{record.tokenExpireTimestamp,jdbcType=BIGINT},
|
|
|
+ reply_secret = #{record.replySecret,jdbcType=VARCHAR},
|
|
|
`status` = #{record.status,jdbcType=INTEGER},
|
|
|
create_account = #{record.createAccount,jdbcType=VARCHAR},
|
|
|
create_timestamp = #{record.createTimestamp,jdbcType=BIGINT},
|
|
|
update_account = #{record.updateAccount,jdbcType=VARCHAR},
|
|
|
- update_timestamp = #{record.updateTimestamp,jdbcType=BIGINT},
|
|
|
- layer_type = #{record.layerType,jdbcType=VARCHAR}
|
|
|
+ update_timestamp = #{record.updateTimestamp,jdbcType=BIGINT}
|
|
|
<if test="_parameter != null">
|
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
|
</if>
|
|
|
@@ -330,6 +339,9 @@
|
|
|
<if test="channel != null">
|
|
|
channel = #{channel,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="layerType != null">
|
|
|
+ layer_type = #{layerType,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="contactName != null">
|
|
|
contact_name = #{contactName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
@@ -348,6 +360,9 @@
|
|
|
<if test="tokenExpireTimestamp != null">
|
|
|
token_expire_timestamp = #{tokenExpireTimestamp,jdbcType=BIGINT},
|
|
|
</if>
|
|
|
+ <if test="replySecret != null">
|
|
|
+ reply_secret = #{replySecret,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="status != null">
|
|
|
`status` = #{status,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
@@ -363,9 +378,6 @@
|
|
|
<if test="updateTimestamp != null">
|
|
|
update_timestamp = #{updateTimestamp,jdbcType=BIGINT},
|
|
|
</if>
|
|
|
- <if test="layerType != null">
|
|
|
- layer_type = #{layerType,jdbcType=VARCHAR},
|
|
|
- </if>
|
|
|
</set>
|
|
|
where id = #{id,jdbcType=BIGINT}
|
|
|
</update>
|
|
|
@@ -374,18 +386,19 @@
|
|
|
set `name` = #{name,jdbcType=VARCHAR},
|
|
|
`identity` = #{identity,jdbcType=INTEGER},
|
|
|
channel = #{channel,jdbcType=VARCHAR},
|
|
|
+ layer_type = #{layerType,jdbcType=VARCHAR},
|
|
|
contact_name = #{contactName,jdbcType=VARCHAR},
|
|
|
tel_num = #{telNum,jdbcType=VARCHAR},
|
|
|
price = #{price,jdbcType=VARCHAR},
|
|
|
`password` = #{password,jdbcType=VARCHAR},
|
|
|
token = #{token,jdbcType=VARCHAR},
|
|
|
token_expire_timestamp = #{tokenExpireTimestamp,jdbcType=BIGINT},
|
|
|
+ reply_secret = #{replySecret,jdbcType=VARCHAR},
|
|
|
`status` = #{status,jdbcType=INTEGER},
|
|
|
create_account = #{createAccount,jdbcType=VARCHAR},
|
|
|
create_timestamp = #{createTimestamp,jdbcType=BIGINT},
|
|
|
update_account = #{updateAccount,jdbcType=VARCHAR},
|
|
|
- update_timestamp = #{updateTimestamp,jdbcType=BIGINT},
|
|
|
- layer_type = #{layerType,jdbcType=VARCHAR}
|
|
|
+ update_timestamp = #{updateTimestamp,jdbcType=BIGINT}
|
|
|
where id = #{id,jdbcType=BIGINT}
|
|
|
</update>
|
|
|
</mapper>
|