id, username, `password`, user_avatar, user_no, show_tip, updated_at, updated_by, created_at,
created_by, del_flag, email
delete from t_user
where id = #{id,jdbcType=BIGINT}
insert into t_user (username, `password`, user_avatar,
user_no, updated_at, updated_by,
created_at, created_by, del_flag
)
values (#{username,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR}, #{userAvatar,jdbcType=VARCHAR},
#{userNo,jdbcType=INTEGER}, #{updatedAt,jdbcType=TIMESTAMP}, #{updatedBy,jdbcType=VARCHAR},
#{createdAt,jdbcType=TIMESTAMP}, #{createdBy,jdbcType=VARCHAR}, #{delFlag,jdbcType=VARCHAR}
)
insert into t_user
username,
`password`,
user_avatar,
user_no,
email,
updated_at,
updated_by,
created_at,
created_by,
del_flag,
#{username,jdbcType=VARCHAR},
#{password,jdbcType=VARCHAR},
#{userAvatar,jdbcType=VARCHAR},
#{userNo,jdbcType=INTEGER},
#{email,jdbcType=VARCHAR},
#{updatedAt,jdbcType=TIMESTAMP},
#{updatedBy,jdbcType=VARCHAR},
#{createdAt,jdbcType=TIMESTAMP},
#{createdBy,jdbcType=VARCHAR},
#{delFlag,jdbcType=VARCHAR},
update t_user
username = #{username,jdbcType=VARCHAR},
`password` = #{password,jdbcType=VARCHAR},
user_avatar = #{userAvatar,jdbcType=VARCHAR},
email = #{email,jdbcType=VARCHAR},
user_no = #{userNo,jdbcType=INTEGER},
show_tip = #{showTip,jdbcType=VARCHAR},
updated_at = #{updatedAt,jdbcType=TIMESTAMP},
updated_by = #{updatedBy,jdbcType=VARCHAR},
created_at = #{createdAt,jdbcType=TIMESTAMP},
created_by = #{createdBy,jdbcType=VARCHAR},
del_flag = #{delFlag,jdbcType=VARCHAR},
where id = #{id,jdbcType=BIGINT}
update t_user
set username = #{username,jdbcType=VARCHAR},
`password` = #{password,jdbcType=VARCHAR},
user_avatar = #{userAvatar,jdbcType=VARCHAR},
user_no = #{userNo,jdbcType=INTEGER},
updated_at = #{updatedAt,jdbcType=TIMESTAMP},
updated_by = #{updatedBy,jdbcType=VARCHAR},
created_at = #{createdAt,jdbcType=TIMESTAMP},
created_by = #{createdBy,jdbcType=VARCHAR},
del_flag = #{delFlag,jdbcType=VARCHAR}
where id = #{id,jdbcType=BIGINT}