加盟模式
This commit is contained in:
@@ -24,6 +24,7 @@
|
||||
<result column="user_portrait" jdbcType="VARCHAR" property="userPortrait" />
|
||||
<result column="join_status" jdbcType="BIT" property="joinStatus" />
|
||||
<result column="line_status" jdbcType="TINYINT" property="lineStatus" />
|
||||
<result column="join_mode" jdbcType="TINYINT" property="joinMode" />
|
||||
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
||||
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
<result column="create_user_id" jdbcType="VARCHAR" property="createUserId" />
|
||||
@@ -101,6 +102,9 @@
|
||||
<if test="param.joinStatus != null">
|
||||
join_status,
|
||||
</if>
|
||||
<if test="param.joinMode != null">
|
||||
join_mode,
|
||||
</if>
|
||||
<if test="param.lineStatus != null">
|
||||
line_status,
|
||||
</if>
|
||||
@@ -190,6 +194,9 @@
|
||||
<if test="param.joinStatus != null">
|
||||
#{param.joinStatus},
|
||||
</if>
|
||||
<if test="param.joinMode != null">
|
||||
#{param.joinMode},
|
||||
</if>
|
||||
<if test="param.lineStatus != null">
|
||||
#{param.lineStatus},
|
||||
</if>
|
||||
@@ -277,6 +284,9 @@
|
||||
<if test="param.joinStatus != null">
|
||||
join_status = #{param.joinStatus},
|
||||
</if>
|
||||
<if test="param.joinMode != null">
|
||||
join_mode = #{param.joinMode},
|
||||
</if>
|
||||
<if test="param.lineStatus != null">
|
||||
line_status = #{param.lineStatus},
|
||||
</if>
|
||||
|
||||
Reference in New Issue
Block a user