rollback column last_role_id

This commit is contained in:
Captain.B 2020-02-18 16:07:26 +08:00
parent ae13d33279
commit 59b47db3bf
3 changed files with 5 additions and 102 deletions

View File

@ -19,8 +19,6 @@ public class User implements Serializable {
private String lastSourceId; private String lastSourceId;
private String lastRoleId;
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
public String getId() { public String getId() {
@ -86,12 +84,4 @@ public class User implements Serializable {
public void setLastSourceId(String lastSourceId) { public void setLastSourceId(String lastSourceId) {
this.lastSourceId = lastSourceId == null ? null : lastSourceId.trim(); this.lastSourceId = lastSourceId == null ? null : lastSourceId.trim();
} }
public String getLastRoleId() {
return lastRoleId;
}
public void setLastRoleId(String lastRoleId) {
this.lastRoleId = lastRoleId == null ? null : lastRoleId.trim();
}
} }

View File

@ -643,76 +643,6 @@ public class UserExample {
addCriterion("last_source_id not between", value1, value2, "lastSourceId"); addCriterion("last_source_id not between", value1, value2, "lastSourceId");
return (Criteria) this; return (Criteria) this;
} }
public Criteria andLastRoleIdIsNull() {
addCriterion("last_role_id is null");
return (Criteria) this;
}
public Criteria andLastRoleIdIsNotNull() {
addCriterion("last_role_id is not null");
return (Criteria) this;
}
public Criteria andLastRoleIdEqualTo(String value) {
addCriterion("last_role_id =", value, "lastRoleId");
return (Criteria) this;
}
public Criteria andLastRoleIdNotEqualTo(String value) {
addCriterion("last_role_id <>", value, "lastRoleId");
return (Criteria) this;
}
public Criteria andLastRoleIdGreaterThan(String value) {
addCriterion("last_role_id >", value, "lastRoleId");
return (Criteria) this;
}
public Criteria andLastRoleIdGreaterThanOrEqualTo(String value) {
addCriterion("last_role_id >=", value, "lastRoleId");
return (Criteria) this;
}
public Criteria andLastRoleIdLessThan(String value) {
addCriterion("last_role_id <", value, "lastRoleId");
return (Criteria) this;
}
public Criteria andLastRoleIdLessThanOrEqualTo(String value) {
addCriterion("last_role_id <=", value, "lastRoleId");
return (Criteria) this;
}
public Criteria andLastRoleIdLike(String value) {
addCriterion("last_role_id like", value, "lastRoleId");
return (Criteria) this;
}
public Criteria andLastRoleIdNotLike(String value) {
addCriterion("last_role_id not like", value, "lastRoleId");
return (Criteria) this;
}
public Criteria andLastRoleIdIn(List<String> values) {
addCriterion("last_role_id in", values, "lastRoleId");
return (Criteria) this;
}
public Criteria andLastRoleIdNotIn(List<String> values) {
addCriterion("last_role_id not in", values, "lastRoleId");
return (Criteria) this;
}
public Criteria andLastRoleIdBetween(String value1, String value2) {
addCriterion("last_role_id between", value1, value2, "lastRoleId");
return (Criteria) this;
}
public Criteria andLastRoleIdNotBetween(String value1, String value2) {
addCriterion("last_role_id not between", value1, value2, "lastRoleId");
return (Criteria) this;
}
} }
public static class Criteria extends GeneratedCriteria { public static class Criteria extends GeneratedCriteria {

View File

@ -10,7 +10,6 @@
<result column="create_time" jdbcType="BIGINT" property="createTime" /> <result column="create_time" jdbcType="BIGINT" property="createTime" />
<result column="update_time" jdbcType="BIGINT" property="updateTime" /> <result column="update_time" jdbcType="BIGINT" property="updateTime" />
<result column="last_source_id" jdbcType="VARCHAR" property="lastSourceId" /> <result column="last_source_id" jdbcType="VARCHAR" property="lastSourceId" />
<result column="last_role_id" jdbcType="VARCHAR" property="lastRoleId" />
</resultMap> </resultMap>
<sql id="Example_Where_Clause"> <sql id="Example_Where_Clause">
<where> <where>
@ -71,7 +70,7 @@
</where> </where>
</sql> </sql>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
id, name, email, phone, status, create_time, update_time, last_source_id, last_role_id id, name, email, phone, status, create_time, update_time, last_source_id
</sql> </sql>
<select id="selectByExample" parameterType="io.metersphere.base.domain.UserExample" resultMap="BaseResultMap"> <select id="selectByExample" parameterType="io.metersphere.base.domain.UserExample" resultMap="BaseResultMap">
select select
@ -106,12 +105,10 @@
<insert id="insert" parameterType="io.metersphere.base.domain.User"> <insert id="insert" parameterType="io.metersphere.base.domain.User">
insert into user (id, name, email, insert into user (id, name, email,
phone, status, create_time, phone, status, create_time,
update_time, last_source_id, last_role_id update_time, last_source_id)
)
values (#{id,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{email,jdbcType=VARCHAR}, values (#{id,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{email,jdbcType=VARCHAR},
#{phone,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{createTime,jdbcType=BIGINT}, #{phone,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{createTime,jdbcType=BIGINT},
#{updateTime,jdbcType=BIGINT}, #{lastSourceId,jdbcType=VARCHAR}, #{lastRoleId,jdbcType=VARCHAR} #{updateTime,jdbcType=BIGINT}, #{lastSourceId,jdbcType=VARCHAR})
)
</insert> </insert>
<insert id="insertSelective" parameterType="io.metersphere.base.domain.User"> <insert id="insertSelective" parameterType="io.metersphere.base.domain.User">
insert into user insert into user
@ -140,9 +137,6 @@
<if test="lastSourceId != null"> <if test="lastSourceId != null">
last_source_id, last_source_id,
</if> </if>
<if test="lastRoleId != null">
last_role_id,
</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null"> <if test="id != null">
@ -169,9 +163,6 @@
<if test="lastSourceId != null"> <if test="lastSourceId != null">
#{lastSourceId,jdbcType=VARCHAR}, #{lastSourceId,jdbcType=VARCHAR},
</if> </if>
<if test="lastRoleId != null">
#{lastRoleId,jdbcType=VARCHAR},
</if>
</trim> </trim>
</insert> </insert>
<select id="countByExample" parameterType="io.metersphere.base.domain.UserExample" resultType="java.lang.Long"> <select id="countByExample" parameterType="io.metersphere.base.domain.UserExample" resultType="java.lang.Long">
@ -207,9 +198,6 @@
<if test="record.lastSourceId != null"> <if test="record.lastSourceId != null">
last_source_id = #{record.lastSourceId,jdbcType=VARCHAR}, last_source_id = #{record.lastSourceId,jdbcType=VARCHAR},
</if> </if>
<if test="record.lastRoleId != null">
last_role_id = #{record.lastRoleId,jdbcType=VARCHAR},
</if>
</set> </set>
<if test="_parameter != null"> <if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" /> <include refid="Update_By_Example_Where_Clause" />
@ -224,8 +212,7 @@
status = #{record.status,jdbcType=VARCHAR}, status = #{record.status,jdbcType=VARCHAR},
create_time = #{record.createTime,jdbcType=BIGINT}, create_time = #{record.createTime,jdbcType=BIGINT},
update_time = #{record.updateTime,jdbcType=BIGINT}, update_time = #{record.updateTime,jdbcType=BIGINT},
last_source_id = #{record.lastSourceId,jdbcType=VARCHAR}, last_source_id = #{record.lastSourceId,jdbcType=VARCHAR}
last_role_id = #{record.lastRoleId,jdbcType=VARCHAR}
<if test="_parameter != null"> <if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" /> <include refid="Update_By_Example_Where_Clause" />
</if> </if>
@ -254,9 +241,6 @@
<if test="lastSourceId != null"> <if test="lastSourceId != null">
last_source_id = #{lastSourceId,jdbcType=VARCHAR}, last_source_id = #{lastSourceId,jdbcType=VARCHAR},
</if> </if>
<if test="lastRoleId != null">
last_role_id = #{lastRoleId,jdbcType=VARCHAR},
</if>
</set> </set>
where id = #{id,jdbcType=VARCHAR} where id = #{id,jdbcType=VARCHAR}
</update> </update>
@ -268,8 +252,7 @@
status = #{status,jdbcType=VARCHAR}, status = #{status,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=BIGINT}, create_time = #{createTime,jdbcType=BIGINT},
update_time = #{updateTime,jdbcType=BIGINT}, update_time = #{updateTime,jdbcType=BIGINT},
last_source_id = #{lastSourceId,jdbcType=VARCHAR}, last_source_id = #{lastSourceId,jdbcType=VARCHAR}
last_role_id = #{lastRoleId,jdbcType=VARCHAR}
where id = #{id,jdbcType=VARCHAR} where id = #{id,jdbcType=VARCHAR}
</update> </update>
</mapper> </mapper>