This commit is contained in:
2023-06-08 15:45:41 +08:00
parent bdc71e8690
commit 88fdef5ced
2 changed files with 10 additions and 10 deletions

View File

@@ -60,7 +60,7 @@ public class AdapayMemberInfo {
*/ */
private String location; private String location;
private Integer appId; private String appId;
/** /**
* 用户邮箱 * 用户邮箱

View File

@@ -14,7 +14,7 @@
<result column="nickname" jdbcType="VARCHAR" property="nickname" /> <result column="nickname" jdbcType="VARCHAR" property="nickname" />
<result column="disabled" jdbcType="VARCHAR" property="disabled" /> <result column="disabled" jdbcType="VARCHAR" property="disabled" />
<result column="location" jdbcType="VARCHAR" property="location" /> <result column="location" jdbcType="VARCHAR" property="location" />
<result column="app_id" jdbcType="INTEGER" property="appId" /> <result column="app_id" jdbcType="VARCHAR" property="appId" />
<result column="email" jdbcType="VARCHAR" property="email" /> <result column="email" jdbcType="VARCHAR" property="email" />
<result column="object" jdbcType="VARCHAR" property="object" /> <result column="object" jdbcType="VARCHAR" property="object" />
<result column="status" jdbcType="VARCHAR" property="status" /> <result column="status" jdbcType="VARCHAR" property="status" />
@@ -43,13 +43,13 @@
insert into adapay_member_info (merchant_id, member_id, gender, `identified`, insert into adapay_member_info (merchant_id, member_id, gender, `identified`,
tel_no, prod_mode, nickname, tel_no, prod_mode, nickname,
disabled, `location`, app_id, disabled, `location`, app_id,
email, `object`, `status`, email, `object`, `status`
create_time, del_flag) )
values (#{merchantId,jdbcType=VARCHAR}, #{memberId,jdbcType=VARCHAR}, #{gender,jdbcType=VARCHAR}, #{identified,jdbcType=VARCHAR}, values (#{merchantId,jdbcType=VARCHAR}, #{memberId,jdbcType=VARCHAR}, #{gender,jdbcType=VARCHAR}, #{identified,jdbcType=VARCHAR},
#{telNo,jdbcType=INTEGER}, #{prodMode,jdbcType=VARCHAR}, #{nickname,jdbcType=VARCHAR}, #{telNo,jdbcType=INTEGER}, #{prodMode,jdbcType=VARCHAR}, #{nickname,jdbcType=VARCHAR},
#{disabled,jdbcType=VARCHAR}, #{location,jdbcType=VARCHAR}, #{appId,jdbcType=INTEGER}, #{disabled,jdbcType=VARCHAR}, #{location,jdbcType=VARCHAR}, #{appId,jdbcType=VARCHAR},
#{email,jdbcType=VARCHAR}, #{object,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{email,jdbcType=VARCHAR}, #{object,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}
#{createTime,jdbcType=TIMESTAMP}, #{delFlag,jdbcType=VARCHAR}) )
</insert> </insert>
<insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.jsowell.pile.domain.AdapayMemberInfo" useGeneratedKeys="true"> <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.jsowell.pile.domain.AdapayMemberInfo" useGeneratedKeys="true">
<!--@mbg.generated--> <!--@mbg.generated-->
@@ -130,7 +130,7 @@
#{location,jdbcType=VARCHAR}, #{location,jdbcType=VARCHAR},
</if> </if>
<if test="appId != null"> <if test="appId != null">
#{appId,jdbcType=INTEGER}, #{appId,jdbcType=VARCHAR},
</if> </if>
<if test="email != null"> <if test="email != null">
#{email,jdbcType=VARCHAR}, #{email,jdbcType=VARCHAR},
@@ -181,7 +181,7 @@
`location` = #{location,jdbcType=VARCHAR}, `location` = #{location,jdbcType=VARCHAR},
</if> </if>
<if test="appId != null"> <if test="appId != null">
app_id = #{appId,jdbcType=INTEGER}, app_id = #{appId,jdbcType=VARCHAR},
</if> </if>
<if test="email != null"> <if test="email != null">
email = #{email,jdbcType=VARCHAR}, email = #{email,jdbcType=VARCHAR},
@@ -213,7 +213,7 @@
nickname = #{nickname,jdbcType=VARCHAR}, nickname = #{nickname,jdbcType=VARCHAR},
disabled = #{disabled,jdbcType=VARCHAR}, disabled = #{disabled,jdbcType=VARCHAR},
`location` = #{location,jdbcType=VARCHAR}, `location` = #{location,jdbcType=VARCHAR},
app_id = #{appId,jdbcType=INTEGER}, app_id = #{appId,jdbcType=VARCHAR},
email = #{email,jdbcType=VARCHAR}, email = #{email,jdbcType=VARCHAR},
`object` = #{object,jdbcType=VARCHAR}, `object` = #{object,jdbcType=VARCHAR},
`status` = #{status,jdbcType=VARCHAR}, `status` = #{status,jdbcType=VARCHAR},