|
|
@@ -15,6 +15,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="avatar" column="avatar" />
|
|
|
<result property="password" column="password" />
|
|
|
<result property="status" column="status" />
|
|
|
+ <result property="merchantOwnerId" column="merchant_owner_id" />
|
|
|
+ <result property="subaccountStatus" column="subaccount_status" />
|
|
|
+ <result property="lastLoginAt" column="last_login_at" />
|
|
|
<result property="delFlag" column="del_flag" />
|
|
|
<result property="cid" column="cid" />
|
|
|
<result property="cidType" column="cid_type" />
|
|
|
@@ -105,6 +108,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="avatar != null and avatar != ''">avatar,</if>
|
|
|
<if test="password != null">password,</if>
|
|
|
<if test="status != null and status != ''">status,</if>
|
|
|
+ <if test="merchantOwnerId != null">merchant_owner_id,</if>
|
|
|
+ <if test="subaccountStatus != null and subaccountStatus != ''">subaccount_status,</if>
|
|
|
+ <if test="lastLoginAt != null">last_login_at,</if>
|
|
|
<if test="delFlag != null">del_flag,</if>
|
|
|
<if test="cid != null">cid,</if>
|
|
|
<if test="cidType != null">cid_type,</if>
|
|
|
@@ -150,6 +156,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="avatar != null and avatar != ''">#{avatar},</if>
|
|
|
<if test="password != null">#{password},</if>
|
|
|
<if test="status != null and status != ''">#{status},</if>
|
|
|
+ <if test="merchantOwnerId != null">#{merchantOwnerId},</if>
|
|
|
+ <if test="subaccountStatus != null and subaccountStatus != ''">#{subaccountStatus},</if>
|
|
|
+ <if test="lastLoginAt != null">#{lastLoginAt},</if>
|
|
|
<if test="delFlag != null">#{delFlag},</if>
|
|
|
<if test="cid != null">#{cid},</if>
|
|
|
<if test="cidType != null">#{cidType},</if>
|
|
|
@@ -199,6 +208,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="avatar != null and avatar != ''">avatar = #{avatar},</if>
|
|
|
<if test="password != null">password = #{password},</if>
|
|
|
<if test="status != null and status != ''">status = #{status},</if>
|
|
|
+ <if test="merchantOwnerId != null">merchant_owner_id = #{merchantOwnerId},</if>
|
|
|
+ <if test="subaccountStatus != null and subaccountStatus != ''">subaccount_status = #{subaccountStatus},</if>
|
|
|
+ <if test="lastLoginAt != null">last_login_at = #{lastLoginAt},</if>
|
|
|
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
|
<if test="cid != null">cid = #{cid},</if>
|
|
|
<if test="cidType != null">cid_type = #{cidType},</if>
|