user add column last_role_id
This commit is contained in:
parent
e3825f388a
commit
ae13d33279
|
@ -19,6 +19,8 @@ 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() {
|
||||||
|
@ -84,4 +86,12 @@ 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();
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -643,6 +643,76 @@ 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 {
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
<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>
|
||||||
|
@ -70,7 +71,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
|
id, name, email, phone, status, create_time, update_time, last_source_id, last_role_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
|
||||||
|
@ -105,10 +106,12 @@
|
||||||
<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)
|
update_time, last_source_id, last_role_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})
|
#{updateTime,jdbcType=BIGINT}, #{lastSourceId,jdbcType=VARCHAR}, #{lastRoleId,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
|
||||||
|
@ -137,6 +140,9 @@
|
||||||
<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">
|
||||||
|
@ -163,6 +169,9 @@
|
||||||
<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">
|
||||||
|
@ -198,6 +207,9 @@
|
||||||
<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" />
|
||||||
|
@ -212,7 +224,8 @@
|
||||||
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>
|
||||||
|
@ -241,6 +254,9 @@
|
||||||
<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>
|
||||||
|
@ -252,7 +268,8 @@
|
||||||
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>
|
Loading…
Reference in New Issue