zelong.shao

dao|初始化dao层

Showing 24 changed files with 265 additions and 274 deletions
......@@ -4,7 +4,6 @@ import com.fedex.connect.common.model.base.DictionaryEntries;
import com.fedex.connect.common.model.base.DictionaryEntriesExample;
import org.apache.ibatis.annotations.Param;
import java.math.BigDecimal;
import java.util.List;
public interface DictionaryEntriesMapper {
......@@ -12,7 +11,7 @@ public interface DictionaryEntriesMapper {
int deleteByExample(DictionaryEntriesExample example);
int deleteByPrimaryKey(BigDecimal id);
int deleteByPrimaryKey(Long id);
int insert(DictionaryEntries record);
......@@ -20,7 +19,7 @@ public interface DictionaryEntriesMapper {
List<DictionaryEntries> selectByExample(DictionaryEntriesExample example);
DictionaryEntries selectByPrimaryKey(BigDecimal id);
DictionaryEntries selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") DictionaryEntries record, @Param("example") DictionaryEntriesExample example);
......
......@@ -2,16 +2,16 @@ package com.fedex.connect.common.dao.base;
import com.fedex.connect.common.model.base.Dictionary;
import com.fedex.connect.common.model.base.DictionaryExample;
import java.math.BigDecimal;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface DictionaryMapper {
long countByExample(DictionaryExample example);
int deleteByExample(DictionaryExample example);
int deleteByPrimaryKey(BigDecimal id);
int deleteByPrimaryKey(Long id);
int insert(Dictionary record);
......@@ -19,7 +19,7 @@ public interface DictionaryMapper {
List<Dictionary> selectByExample(DictionaryExample example);
Dictionary selectByPrimaryKey(BigDecimal id);
Dictionary selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") Dictionary record, @Param("example") DictionaryExample example);
......
......@@ -2,16 +2,16 @@ package com.fedex.connect.common.dao.sys;
import com.fedex.connect.common.model.sys.Privilege;
import com.fedex.connect.common.model.sys.PrivilegeExample;
import java.math.BigDecimal;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface PrivilegeMapper {
long countByExample(PrivilegeExample example);
int deleteByExample(PrivilegeExample example);
int deleteByPrimaryKey(BigDecimal id);
int deleteByPrimaryKey(Long id);
int insert(Privilege record);
......@@ -19,7 +19,7 @@ public interface PrivilegeMapper {
List<Privilege> selectByExample(PrivilegeExample example);
Privilege selectByPrimaryKey(BigDecimal id);
Privilege selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") Privilege record, @Param("example") PrivilegeExample example);
......
......@@ -2,16 +2,16 @@ package com.fedex.connect.common.dao.sys;
import com.fedex.connect.common.model.sys.Role;
import com.fedex.connect.common.model.sys.RoleExample;
import java.math.BigDecimal;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface RoleMapper {
long countByExample(RoleExample example);
int deleteByExample(RoleExample example);
int deleteByPrimaryKey(BigDecimal id);
int deleteByPrimaryKey(Long id);
int insert(Role record);
......@@ -19,7 +19,7 @@ public interface RoleMapper {
List<Role> selectByExample(RoleExample example);
Role selectByPrimaryKey(BigDecimal id);
Role selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") Role record, @Param("example") RoleExample example);
......
......@@ -2,7 +2,6 @@ package com.fedex.connect.common.dao.sys;
import com.fedex.connect.common.model.sys.RolePrivilege;
import com.fedex.connect.common.model.sys.RolePrivilegeExample;
import java.math.BigDecimal;
import java.util.List;
import org.apache.ibatis.annotations.Param;
......@@ -11,7 +10,7 @@ public interface RolePrivilegeMapper {
int deleteByExample(RolePrivilegeExample example);
int deleteByPrimaryKey(BigDecimal id);
int deleteByPrimaryKey(Long id);
int insert(RolePrivilege record);
......@@ -19,7 +18,7 @@ public interface RolePrivilegeMapper {
List<RolePrivilege> selectByExample(RolePrivilegeExample example);
RolePrivilege selectByPrimaryKey(BigDecimal id);
RolePrivilege selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") RolePrivilege record, @Param("example") RolePrivilegeExample example);
......
......@@ -318,13 +318,13 @@
</if>
<include refid="OracleDialectSuffix" />
</select>
<select id="selectByPrimaryKey" parameterType="java.math.BigDecimal" resultMap="BaseResultMap">
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from T_SYS_PARAM_CONFIG
where ID = #{id,jdbcType=NUMERIC}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.math.BigDecimal">
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
delete from T_SYS_PARAM_CONFIG
where ID = #{id,jdbcType=NUMERIC}
</delete>
......@@ -335,7 +335,7 @@
</if>
</delete>
<insert id="insert" parameterType="com.fedex.connect.common.model.sys.ParamConfig">
<selectKey keyProperty="id" order="BEFORE" resultType="java.math.BigDecimal">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_SYS_PARAM_CONFIG.NEXTVAL FROM DUAL
</selectKey>
insert into T_SYS_PARAM_CONFIG (ID, CODE, NAME,
......@@ -350,7 +350,7 @@
#{modifyUserId,jdbcType=NUMERIC}, #{modifyUserName,jdbcType=VARCHAR})
</insert>
<insert id="insertSelective" parameterType="com.fedex.connect.common.model.sys.ParamConfig">
<selectKey keyProperty="id" order="BEFORE" resultType="java.math.BigDecimal">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_SYS_PARAM_CONFIG.NEXTVAL FROM DUAL
</selectKey>
insert into T_SYS_PARAM_CONFIG
......
......@@ -98,13 +98,13 @@
</if>
<include refid="OracleDialectSuffix" />
</select>
<select id="selectByPrimaryKey" parameterType="java.math.BigDecimal" resultMap="BaseResultMap">
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from T_SYS_PRIVILEGE
where ID = #{id,jdbcType=NUMERIC}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.math.BigDecimal">
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
delete from T_SYS_PRIVILEGE
where ID = #{id,jdbcType=NUMERIC}
</delete>
......@@ -115,7 +115,7 @@
</if>
</delete>
<insert id="insert" parameterType="com.fedex.connect.common.model.sys.Privilege">
<selectKey keyProperty="id" order="BEFORE" resultType="java.math.BigDecimal">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_SYS_PRIVILEGE.NEXTVAL FROM DUAL
</selectKey>
insert into T_SYS_PRIVILEGE (ID, CODE, NAME,
......@@ -132,7 +132,7 @@
#{modifyUserName,jdbcType=VARCHAR})
</insert>
<insert id="insertSelective" parameterType="com.fedex.connect.common.model.sys.Privilege">
<selectKey keyProperty="id" order="BEFORE" resultType="java.math.BigDecimal">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_SYS_PRIVILEGE.NEXTVAL FROM DUAL
</selectKey>
insert into T_SYS_PRIVILEGE
......
......@@ -95,13 +95,13 @@
</if>
<include refid="OracleDialectSuffix" />
</select>
<select id="selectByPrimaryKey" parameterType="java.math.BigDecimal" resultMap="BaseResultMap">
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from T_SYS_ROLE
where ID = #{id,jdbcType=NUMERIC}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.math.BigDecimal">
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
delete from T_SYS_ROLE
where ID = #{id,jdbcType=NUMERIC}
</delete>
......@@ -112,7 +112,7 @@
</if>
</delete>
<insert id="insert" parameterType="com.fedex.connect.common.model.sys.Role">
<selectKey keyProperty="id" order="BEFORE" resultType="java.math.BigDecimal">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_SYS_ROLE.NEXTVAL FROM DUAL
</selectKey>
insert into T_SYS_ROLE (ID, CODE, NAME,
......@@ -127,7 +127,7 @@
#{modifyUserName,jdbcType=VARCHAR})
</insert>
<insert id="insertSelective" parameterType="com.fedex.connect.common.model.sys.Role">
<selectKey keyProperty="id" order="BEFORE" resultType="java.math.BigDecimal">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_SYS_ROLE.NEXTVAL FROM DUAL
</selectKey>
insert into T_SYS_ROLE
......
......@@ -92,13 +92,13 @@
</if>
<include refid="OracleDialectSuffix" />
</select>
<select id="selectByPrimaryKey" parameterType="java.math.BigDecimal" resultMap="BaseResultMap">
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from T_SYS_ROLE_PRIVILEGE
where ID = #{id,jdbcType=NUMERIC}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.math.BigDecimal">
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
delete from T_SYS_ROLE_PRIVILEGE
where ID = #{id,jdbcType=NUMERIC}
</delete>
......@@ -109,7 +109,7 @@
</if>
</delete>
<insert id="insert" parameterType="com.fedex.connect.common.model.sys.RolePrivilege">
<selectKey keyProperty="id" order="BEFORE" resultType="java.math.BigDecimal">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_SYS_ROLE_PRIVILEGE.NEXTVAL FROM DUAL
</selectKey>
insert into T_SYS_ROLE_PRIVILEGE (ID, ROLE_ID, PRIV_ID,
......@@ -122,7 +122,7 @@
#{modifyUserName,jdbcType=VARCHAR})
</insert>
<insert id="insertSelective" parameterType="com.fedex.connect.common.model.sys.RolePrivilege">
<selectKey keyProperty="id" order="BEFORE" resultType="java.math.BigDecimal">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_SYS_ROLE_PRIVILEGE.NEXTVAL FROM DUAL
</selectKey>
insert into T_SYS_ROLE_PRIVILEGE
......
......@@ -516,13 +516,13 @@
</if>
<include refid="OracleDialectSuffix" />
</select>
<select id="selectByPrimaryKey" parameterType="java.math.BigDecimal" resultMap="BaseResultMap">
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from T_SYS_USER
where ID = #{id,jdbcType=NUMERIC}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.math.BigDecimal">
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
delete from T_SYS_USER
where ID = #{id,jdbcType=NUMERIC}
</delete>
......@@ -533,7 +533,7 @@
</if>
</delete>
<insert id="insert" parameterType="com.fedex.connect.common.model.sys.User">
<selectKey keyProperty="id" order="BEFORE" resultType="java.math.BigDecimal">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_SYS_USER.NEXTVAL FROM DUAL
</selectKey>
insert into T_SYS_USER (ID, LOGIN_NAME, USER_NAME,
......@@ -554,7 +554,7 @@
)
</insert>
<insert id="insertSelective" parameterType="com.fedex.connect.common.model.sys.User">
<selectKey keyProperty="id" order="BEFORE" resultType="java.math.BigDecimal">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_SYS_USER.NEXTVAL FROM DUAL
</selectKey>
insert into T_SYS_USER
......
......@@ -361,13 +361,13 @@
</if>
<include refid="OracleDialectSuffix" />
</select>
<select id="selectByPrimaryKey" parameterType="java.math.BigDecimal" resultMap="BaseResultMap">
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from T_SYS_USER_ROLE
where ID = #{id,jdbcType=NUMERIC}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.math.BigDecimal">
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
delete from T_SYS_USER_ROLE
where ID = #{id,jdbcType=NUMERIC}
</delete>
......@@ -378,7 +378,7 @@
</if>
</delete>
<insert id="insert" parameterType="com.fedex.connect.common.model.sys.UserRole">
<selectKey keyProperty="id" order="BEFORE" resultType="java.math.BigDecimal">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_SYS_USER_ROLE.NEXTVAL FROM DUAL
</selectKey>
insert into T_SYS_USER_ROLE (ID, USER_ID, ROLE_ID,
......@@ -391,7 +391,7 @@
#{modifyUserName,jdbcType=VARCHAR})
</insert>
<insert id="insertSelective" parameterType="com.fedex.connect.common.model.sys.UserRole">
<selectKey keyProperty="id" order="BEFORE" resultType="java.math.BigDecimal">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_SYS_USER_ROLE.NEXTVAL FROM DUAL
</selectKey>
insert into T_SYS_USER_ROLE
......
package com.fedex.connect.common.model.base;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
/**
......@@ -12,7 +11,7 @@ public class Dictionary implements Serializable {
/**
* ID,主键自增
*/
private BigDecimal id;
private Long id;
/**
* 字典编号
......@@ -32,7 +31,7 @@ public class Dictionary implements Serializable {
/**
* 状态(0:无效、1:有效)
*/
private BigDecimal status;
private Long status;
/**
* 上级字典ID
......@@ -65,9 +64,9 @@ public class Dictionary implements Serializable {
private Date createTime;
/**
* 创建人ID
* 创建人ID,关联用户表ID
*/
private BigDecimal createUserId;
private Long createUserId;
/**
* 创建人名称
......@@ -80,9 +79,9 @@ public class Dictionary implements Serializable {
private Date modifyTime;
/**
* 修改人ID
* 修改人ID,关联用户表ID
*/
private BigDecimal modifyUserId;
private Long modifyUserId;
/**
* 修改人名称
......@@ -91,11 +90,11 @@ public class Dictionary implements Serializable {
private static final long serialVersionUID = 1L;
public BigDecimal getId() {
public Long getId() {
return id;
}
public void setId(BigDecimal id) {
public void setId(Long id) {
this.id = id;
}
......@@ -123,11 +122,11 @@ public class Dictionary implements Serializable {
this.description = description == null ? null : description.trim();
}
public BigDecimal getStatus() {
public Long getStatus() {
return status;
}
public void setStatus(BigDecimal status) {
public void setStatus(Long status) {
this.status = status;
}
......@@ -179,11 +178,11 @@ public class Dictionary implements Serializable {
this.createTime = createTime;
}
public BigDecimal getCreateUserId() {
public Long getCreateUserId() {
return createUserId;
}
public void setCreateUserId(BigDecimal createUserId) {
public void setCreateUserId(Long createUserId) {
this.createUserId = createUserId;
}
......@@ -203,11 +202,11 @@ public class Dictionary implements Serializable {
this.modifyTime = modifyTime;
}
public BigDecimal getModifyUserId() {
public Long getModifyUserId() {
return modifyUserId;
}
public void setModifyUserId(BigDecimal modifyUserId) {
public void setModifyUserId(Long modifyUserId) {
this.modifyUserId = modifyUserId;
}
......
package com.fedex.connect.common.model.base;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
/**
......@@ -12,7 +11,7 @@ public class DictionaryEntries implements Serializable {
/**
* ID,主键自增
*/
private BigDecimal id;
private Long id;
/**
* 字典编号
......@@ -32,17 +31,17 @@ public class DictionaryEntries implements Serializable {
/**
* 状态(0:无效、1:有效)
*/
private BigDecimal status;
private Long status;
/**
* 上级字典ID
*/
private BigDecimal parentId;
private Long parentId;
/**
* 字典目录ID
*/
private BigDecimal dictId;
private Long dictId;
/**
* 字典目录CODE
......@@ -52,7 +51,7 @@ public class DictionaryEntries implements Serializable {
/**
* 字典排序字段
*/
private BigDecimal ordinal;
private Long ordinal;
/**
* 扩展字段1,字符串
......@@ -80,9 +79,9 @@ public class DictionaryEntries implements Serializable {
private Date createTime;
/**
* 创建人ID
* 创建人ID,关联用户表ID
*/
private BigDecimal createUserId;
private Long createUserId;
/**
* 创建人名称
......@@ -95,9 +94,9 @@ public class DictionaryEntries implements Serializable {
private Date modifyTime;
/**
* 修改人ID
* 修改人ID,关联用户表ID
*/
private BigDecimal modifyUserId;
private Long modifyUserId;
/**
* 修改人名称
......@@ -106,11 +105,11 @@ public class DictionaryEntries implements Serializable {
private static final long serialVersionUID = 1L;
public BigDecimal getId() {
public Long getId() {
return id;
}
public void setId(BigDecimal id) {
public void setId(Long id) {
this.id = id;
}
......@@ -138,27 +137,27 @@ public class DictionaryEntries implements Serializable {
this.description = description == null ? null : description.trim();
}
public BigDecimal getStatus() {
public Long getStatus() {
return status;
}
public void setStatus(BigDecimal status) {
public void setStatus(Long status) {
this.status = status;
}
public BigDecimal getParentId() {
public Long getParentId() {
return parentId;
}
public void setParentId(BigDecimal parentId) {
public void setParentId(Long parentId) {
this.parentId = parentId;
}
public BigDecimal getDictId() {
public Long getDictId() {
return dictId;
}
public void setDictId(BigDecimal dictId) {
public void setDictId(Long dictId) {
this.dictId = dictId;
}
......@@ -170,11 +169,11 @@ public class DictionaryEntries implements Serializable {
this.dictCode = dictCode == null ? null : dictCode.trim();
}
public BigDecimal getOrdinal() {
public Long getOrdinal() {
return ordinal;
}
public void setOrdinal(BigDecimal ordinal) {
public void setOrdinal(Long ordinal) {
this.ordinal = ordinal;
}
......@@ -218,11 +217,11 @@ public class DictionaryEntries implements Serializable {
this.createTime = createTime;
}
public BigDecimal getCreateUserId() {
public Long getCreateUserId() {
return createUserId;
}
public void setCreateUserId(BigDecimal createUserId) {
public void setCreateUserId(Long createUserId) {
this.createUserId = createUserId;
}
......@@ -242,11 +241,11 @@ public class DictionaryEntries implements Serializable {
this.modifyTime = modifyTime;
}
public BigDecimal getModifyUserId() {
public Long getModifyUserId() {
return modifyUserId;
}
public void setModifyUserId(BigDecimal modifyUserId) {
public void setModifyUserId(Long modifyUserId) {
this.modifyUserId = modifyUserId;
}
......
package com.fedex.connect.common.model.base;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
......@@ -136,52 +135,52 @@ public class DictionaryExample {
return (Criteria) this;
}
public Criteria andIdEqualTo(BigDecimal value) {
public Criteria andIdEqualTo(Long value) {
addCriterion("ID =", value, "id");
return (Criteria) this;
}
public Criteria andIdNotEqualTo(BigDecimal value) {
public Criteria andIdNotEqualTo(Long value) {
addCriterion("ID <>", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThan(BigDecimal value) {
public Criteria andIdGreaterThan(Long value) {
addCriterion("ID >", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThanOrEqualTo(BigDecimal value) {
public Criteria andIdGreaterThanOrEqualTo(Long value) {
addCriterion("ID >=", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThan(BigDecimal value) {
public Criteria andIdLessThan(Long value) {
addCriterion("ID <", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThanOrEqualTo(BigDecimal value) {
public Criteria andIdLessThanOrEqualTo(Long value) {
addCriterion("ID <=", value, "id");
return (Criteria) this;
}
public Criteria andIdIn(List<BigDecimal> values) {
public Criteria andIdIn(List<Long> values) {
addCriterion("ID in", values, "id");
return (Criteria) this;
}
public Criteria andIdNotIn(List<BigDecimal> values) {
public Criteria andIdNotIn(List<Long> values) {
addCriterion("ID not in", values, "id");
return (Criteria) this;
}
public Criteria andIdBetween(BigDecimal value1, BigDecimal value2) {
public Criteria andIdBetween(Long value1, Long value2) {
addCriterion("ID between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andIdNotBetween(BigDecimal value1, BigDecimal value2) {
public Criteria andIdNotBetween(Long value1, Long value2) {
addCriterion("ID not between", value1, value2, "id");
return (Criteria) this;
}
......@@ -406,52 +405,52 @@ public class DictionaryExample {
return (Criteria) this;
}
public Criteria andStatusEqualTo(BigDecimal value) {
public Criteria andStatusEqualTo(Long value) {
addCriterion("STATUS =", value, "status");
return (Criteria) this;
}
public Criteria andStatusNotEqualTo(BigDecimal value) {
public Criteria andStatusNotEqualTo(Long value) {
addCriterion("STATUS <>", value, "status");
return (Criteria) this;
}
public Criteria andStatusGreaterThan(BigDecimal value) {
public Criteria andStatusGreaterThan(Long value) {
addCriterion("STATUS >", value, "status");
return (Criteria) this;
}
public Criteria andStatusGreaterThanOrEqualTo(BigDecimal value) {
public Criteria andStatusGreaterThanOrEqualTo(Long value) {
addCriterion("STATUS >=", value, "status");
return (Criteria) this;
}
public Criteria andStatusLessThan(BigDecimal value) {
public Criteria andStatusLessThan(Long value) {
addCriterion("STATUS <", value, "status");
return (Criteria) this;
}
public Criteria andStatusLessThanOrEqualTo(BigDecimal value) {
public Criteria andStatusLessThanOrEqualTo(Long value) {
addCriterion("STATUS <=", value, "status");
return (Criteria) this;
}
public Criteria andStatusIn(List<BigDecimal> values) {
public Criteria andStatusIn(List<Long> values) {
addCriterion("STATUS in", values, "status");
return (Criteria) this;
}
public Criteria andStatusNotIn(List<BigDecimal> values) {
public Criteria andStatusNotIn(List<Long> values) {
addCriterion("STATUS not in", values, "status");
return (Criteria) this;
}
public Criteria andStatusBetween(BigDecimal value1, BigDecimal value2) {
public Criteria andStatusBetween(Long value1, Long value2) {
addCriterion("STATUS between", value1, value2, "status");
return (Criteria) this;
}
public Criteria andStatusNotBetween(BigDecimal value1, BigDecimal value2) {
public Criteria andStatusNotBetween(Long value1, Long value2) {
addCriterion("STATUS not between", value1, value2, "status");
return (Criteria) this;
}
......@@ -856,52 +855,52 @@ public class DictionaryExample {
return (Criteria) this;
}
public Criteria andCreateUserIdEqualTo(BigDecimal value) {
public Criteria andCreateUserIdEqualTo(Long value) {
addCriterion("CREATE_USER_ID =", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdNotEqualTo(BigDecimal value) {
public Criteria andCreateUserIdNotEqualTo(Long value) {
addCriterion("CREATE_USER_ID <>", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdGreaterThan(BigDecimal value) {
public Criteria andCreateUserIdGreaterThan(Long value) {
addCriterion("CREATE_USER_ID >", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdGreaterThanOrEqualTo(BigDecimal value) {
public Criteria andCreateUserIdGreaterThanOrEqualTo(Long value) {
addCriterion("CREATE_USER_ID >=", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdLessThan(BigDecimal value) {
public Criteria andCreateUserIdLessThan(Long value) {
addCriterion("CREATE_USER_ID <", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdLessThanOrEqualTo(BigDecimal value) {
public Criteria andCreateUserIdLessThanOrEqualTo(Long value) {
addCriterion("CREATE_USER_ID <=", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdIn(List<BigDecimal> values) {
public Criteria andCreateUserIdIn(List<Long> values) {
addCriterion("CREATE_USER_ID in", values, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdNotIn(List<BigDecimal> values) {
public Criteria andCreateUserIdNotIn(List<Long> values) {
addCriterion("CREATE_USER_ID not in", values, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdBetween(BigDecimal value1, BigDecimal value2) {
public Criteria andCreateUserIdBetween(Long value1, Long value2) {
addCriterion("CREATE_USER_ID between", value1, value2, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdNotBetween(BigDecimal value1, BigDecimal value2) {
public Criteria andCreateUserIdNotBetween(Long value1, Long value2) {
addCriterion("CREATE_USER_ID not between", value1, value2, "createUserId");
return (Criteria) this;
}
......@@ -1046,52 +1045,52 @@ public class DictionaryExample {
return (Criteria) this;
}
public Criteria andModifyUserIdEqualTo(BigDecimal value) {
public Criteria andModifyUserIdEqualTo(Long value) {
addCriterion("MODIFY_USER_ID =", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdNotEqualTo(BigDecimal value) {
public Criteria andModifyUserIdNotEqualTo(Long value) {
addCriterion("MODIFY_USER_ID <>", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdGreaterThan(BigDecimal value) {
public Criteria andModifyUserIdGreaterThan(Long value) {
addCriterion("MODIFY_USER_ID >", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdGreaterThanOrEqualTo(BigDecimal value) {
public Criteria andModifyUserIdGreaterThanOrEqualTo(Long value) {
addCriterion("MODIFY_USER_ID >=", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdLessThan(BigDecimal value) {
public Criteria andModifyUserIdLessThan(Long value) {
addCriterion("MODIFY_USER_ID <", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdLessThanOrEqualTo(BigDecimal value) {
public Criteria andModifyUserIdLessThanOrEqualTo(Long value) {
addCriterion("MODIFY_USER_ID <=", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdIn(List<BigDecimal> values) {
public Criteria andModifyUserIdIn(List<Long> values) {
addCriterion("MODIFY_USER_ID in", values, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdNotIn(List<BigDecimal> values) {
public Criteria andModifyUserIdNotIn(List<Long> values) {
addCriterion("MODIFY_USER_ID not in", values, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdBetween(BigDecimal value1, BigDecimal value2) {
public Criteria andModifyUserIdBetween(Long value1, Long value2) {
addCriterion("MODIFY_USER_ID between", value1, value2, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdNotBetween(BigDecimal value1, BigDecimal value2) {
public Criteria andModifyUserIdNotBetween(Long value1, Long value2) {
addCriterion("MODIFY_USER_ID not between", value1, value2, "modifyUserId");
return (Criteria) this;
}
......
package com.fedex.connect.common.model.sys;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
/**
......@@ -12,7 +11,7 @@ public class Privilege implements Serializable {
/**
* ID,主键自增
*/
private BigDecimal id;
private Long id;
/**
* 菜单编号
......@@ -27,7 +26,7 @@ public class Privilege implements Serializable {
/**
* 菜单级别(0,1,2)0为最顶级菜单
*/
private BigDecimal rank;
private Long rank;
/**
* 父级id
......@@ -68,9 +67,9 @@ C:BRANCH 分支
private Date createTime;
/**
* 创建人ID
* 创建人ID,关联用户表ID
*/
private BigDecimal createUserId;
private Long createUserId;
/**
* 创建人名称
......@@ -83,9 +82,9 @@ C:BRANCH 分支
private Date modifyTime;
/**
* 修改人ID
* 修改人ID,关联用户表ID
*/
private BigDecimal modifyUserId;
private Long modifyUserId;
/**
* 修改人名称
......@@ -94,11 +93,11 @@ C:BRANCH 分支
private static final long serialVersionUID = 1L;
public BigDecimal getId() {
public Long getId() {
return id;
}
public void setId(BigDecimal id) {
public void setId(Long id) {
this.id = id;
}
......@@ -118,11 +117,11 @@ C:BRANCH 分支
this.name = name == null ? null : name.trim();
}
public BigDecimal getRank() {
public Long getRank() {
return rank;
}
public void setRank(BigDecimal rank) {
public void setRank(Long rank) {
this.rank = rank;
}
......@@ -182,11 +181,11 @@ C:BRANCH 分支
this.createTime = createTime;
}
public BigDecimal getCreateUserId() {
public Long getCreateUserId() {
return createUserId;
}
public void setCreateUserId(BigDecimal createUserId) {
public void setCreateUserId(Long createUserId) {
this.createUserId = createUserId;
}
......@@ -206,11 +205,11 @@ C:BRANCH 分支
this.modifyTime = modifyTime;
}
public BigDecimal getModifyUserId() {
public Long getModifyUserId() {
return modifyUserId;
}
public void setModifyUserId(BigDecimal modifyUserId) {
public void setModifyUserId(Long modifyUserId) {
this.modifyUserId = modifyUserId;
}
......
package com.fedex.connect.common.model.sys;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
......@@ -136,52 +135,52 @@ public class PrivilegeExample {
return (Criteria) this;
}
public Criteria andIdEqualTo(BigDecimal value) {
public Criteria andIdEqualTo(Long value) {
addCriterion("ID =", value, "id");
return (Criteria) this;
}
public Criteria andIdNotEqualTo(BigDecimal value) {
public Criteria andIdNotEqualTo(Long value) {
addCriterion("ID <>", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThan(BigDecimal value) {
public Criteria andIdGreaterThan(Long value) {
addCriterion("ID >", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThanOrEqualTo(BigDecimal value) {
public Criteria andIdGreaterThanOrEqualTo(Long value) {
addCriterion("ID >=", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThan(BigDecimal value) {
public Criteria andIdLessThan(Long value) {
addCriterion("ID <", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThanOrEqualTo(BigDecimal value) {
public Criteria andIdLessThanOrEqualTo(Long value) {
addCriterion("ID <=", value, "id");
return (Criteria) this;
}
public Criteria andIdIn(List<BigDecimal> values) {
public Criteria andIdIn(List<Long> values) {
addCriterion("ID in", values, "id");
return (Criteria) this;
}
public Criteria andIdNotIn(List<BigDecimal> values) {
public Criteria andIdNotIn(List<Long> values) {
addCriterion("ID not in", values, "id");
return (Criteria) this;
}
public Criteria andIdBetween(BigDecimal value1, BigDecimal value2) {
public Criteria andIdBetween(Long value1, Long value2) {
addCriterion("ID between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andIdNotBetween(BigDecimal value1, BigDecimal value2) {
public Criteria andIdNotBetween(Long value1, Long value2) {
addCriterion("ID not between", value1, value2, "id");
return (Criteria) this;
}
......@@ -336,52 +335,52 @@ public class PrivilegeExample {
return (Criteria) this;
}
public Criteria andRankEqualTo(BigDecimal value) {
public Criteria andRankEqualTo(Long value) {
addCriterion("RANK =", value, "rank");
return (Criteria) this;
}
public Criteria andRankNotEqualTo(BigDecimal value) {
public Criteria andRankNotEqualTo(Long value) {
addCriterion("RANK <>", value, "rank");
return (Criteria) this;
}
public Criteria andRankGreaterThan(BigDecimal value) {
public Criteria andRankGreaterThan(Long value) {
addCriterion("RANK >", value, "rank");
return (Criteria) this;
}
public Criteria andRankGreaterThanOrEqualTo(BigDecimal value) {
public Criteria andRankGreaterThanOrEqualTo(Long value) {
addCriterion("RANK >=", value, "rank");
return (Criteria) this;
}
public Criteria andRankLessThan(BigDecimal value) {
public Criteria andRankLessThan(Long value) {
addCriterion("RANK <", value, "rank");
return (Criteria) this;
}
public Criteria andRankLessThanOrEqualTo(BigDecimal value) {
public Criteria andRankLessThanOrEqualTo(Long value) {
addCriterion("RANK <=", value, "rank");
return (Criteria) this;
}
public Criteria andRankIn(List<BigDecimal> values) {
public Criteria andRankIn(List<Long> values) {
addCriterion("RANK in", values, "rank");
return (Criteria) this;
}
public Criteria andRankNotIn(List<BigDecimal> values) {
public Criteria andRankNotIn(List<Long> values) {
addCriterion("RANK not in", values, "rank");
return (Criteria) this;
}
public Criteria andRankBetween(BigDecimal value1, BigDecimal value2) {
public Criteria andRankBetween(Long value1, Long value2) {
addCriterion("RANK between", value1, value2, "rank");
return (Criteria) this;
}
public Criteria andRankNotBetween(BigDecimal value1, BigDecimal value2) {
public Criteria andRankNotBetween(Long value1, Long value2) {
addCriterion("RANK not between", value1, value2, "rank");
return (Criteria) this;
}
......@@ -846,52 +845,52 @@ public class PrivilegeExample {
return (Criteria) this;
}
public Criteria andCreateUserIdEqualTo(BigDecimal value) {
public Criteria andCreateUserIdEqualTo(Long value) {
addCriterion("CREATE_USER_ID =", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdNotEqualTo(BigDecimal value) {
public Criteria andCreateUserIdNotEqualTo(Long value) {
addCriterion("CREATE_USER_ID <>", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdGreaterThan(BigDecimal value) {
public Criteria andCreateUserIdGreaterThan(Long value) {
addCriterion("CREATE_USER_ID >", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdGreaterThanOrEqualTo(BigDecimal value) {
public Criteria andCreateUserIdGreaterThanOrEqualTo(Long value) {
addCriterion("CREATE_USER_ID >=", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdLessThan(BigDecimal value) {
public Criteria andCreateUserIdLessThan(Long value) {
addCriterion("CREATE_USER_ID <", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdLessThanOrEqualTo(BigDecimal value) {
public Criteria andCreateUserIdLessThanOrEqualTo(Long value) {
addCriterion("CREATE_USER_ID <=", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdIn(List<BigDecimal> values) {
public Criteria andCreateUserIdIn(List<Long> values) {
addCriterion("CREATE_USER_ID in", values, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdNotIn(List<BigDecimal> values) {
public Criteria andCreateUserIdNotIn(List<Long> values) {
addCriterion("CREATE_USER_ID not in", values, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdBetween(BigDecimal value1, BigDecimal value2) {
public Criteria andCreateUserIdBetween(Long value1, Long value2) {
addCriterion("CREATE_USER_ID between", value1, value2, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdNotBetween(BigDecimal value1, BigDecimal value2) {
public Criteria andCreateUserIdNotBetween(Long value1, Long value2) {
addCriterion("CREATE_USER_ID not between", value1, value2, "createUserId");
return (Criteria) this;
}
......@@ -1036,52 +1035,52 @@ public class PrivilegeExample {
return (Criteria) this;
}
public Criteria andModifyUserIdEqualTo(BigDecimal value) {
public Criteria andModifyUserIdEqualTo(Long value) {
addCriterion("MODIFY_USER_ID =", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdNotEqualTo(BigDecimal value) {
public Criteria andModifyUserIdNotEqualTo(Long value) {
addCriterion("MODIFY_USER_ID <>", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdGreaterThan(BigDecimal value) {
public Criteria andModifyUserIdGreaterThan(Long value) {
addCriterion("MODIFY_USER_ID >", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdGreaterThanOrEqualTo(BigDecimal value) {
public Criteria andModifyUserIdGreaterThanOrEqualTo(Long value) {
addCriterion("MODIFY_USER_ID >=", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdLessThan(BigDecimal value) {
public Criteria andModifyUserIdLessThan(Long value) {
addCriterion("MODIFY_USER_ID <", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdLessThanOrEqualTo(BigDecimal value) {
public Criteria andModifyUserIdLessThanOrEqualTo(Long value) {
addCriterion("MODIFY_USER_ID <=", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdIn(List<BigDecimal> values) {
public Criteria andModifyUserIdIn(List<Long> values) {
addCriterion("MODIFY_USER_ID in", values, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdNotIn(List<BigDecimal> values) {
public Criteria andModifyUserIdNotIn(List<Long> values) {
addCriterion("MODIFY_USER_ID not in", values, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdBetween(BigDecimal value1, BigDecimal value2) {
public Criteria andModifyUserIdBetween(Long value1, Long value2) {
addCriterion("MODIFY_USER_ID between", value1, value2, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdNotBetween(BigDecimal value1, BigDecimal value2) {
public Criteria andModifyUserIdNotBetween(Long value1, Long value2) {
addCriterion("MODIFY_USER_ID not between", value1, value2, "modifyUserId");
return (Criteria) this;
}
......
package com.fedex.connect.common.model.sys;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
/**
......@@ -12,7 +11,7 @@ public class Role implements Serializable {
/**
* ID,主键自增
*/
private BigDecimal id;
private Long id;
/**
* 角色编号
......@@ -33,7 +32,7 @@ public class Role implements Serializable {
* 类型ID。
关联数据字典表。指定KEY为:role_type
*/
private BigDecimal typeId;
private Long typeId;
/**
* 用户类型名称
......@@ -43,7 +42,7 @@ public class Role implements Serializable {
/**
* 是否有效(1:有效[true]。0:无效[false]。)
*/
private BigDecimal status;
private Long status;
/**
* 创建时间
......@@ -51,9 +50,9 @@ public class Role implements Serializable {
private Date createTime;
/**
* 创建人ID
* 创建人ID,关联用户表ID
*/
private BigDecimal createUserId;
private Long createUserId;
/**
* 创建人名称
......@@ -66,9 +65,9 @@ public class Role implements Serializable {
private Date modifyTime;
/**
* 修改人ID
* 修改人ID,关联用户表ID
*/
private BigDecimal modifyUserId;
private Long modifyUserId;
/**
* 修改人名称
......@@ -77,11 +76,11 @@ public class Role implements Serializable {
private static final long serialVersionUID = 1L;
public BigDecimal getId() {
public Long getId() {
return id;
}
public void setId(BigDecimal id) {
public void setId(Long id) {
this.id = id;
}
......@@ -109,11 +108,11 @@ public class Role implements Serializable {
this.roleDesc = roleDesc == null ? null : roleDesc.trim();
}
public BigDecimal getTypeId() {
public Long getTypeId() {
return typeId;
}
public void setTypeId(BigDecimal typeId) {
public void setTypeId(Long typeId) {
this.typeId = typeId;
}
......@@ -125,11 +124,11 @@ public class Role implements Serializable {
this.typeName = typeName == null ? null : typeName.trim();
}
public BigDecimal getStatus() {
public Long getStatus() {
return status;
}
public void setStatus(BigDecimal status) {
public void setStatus(Long status) {
this.status = status;
}
......@@ -141,11 +140,11 @@ public class Role implements Serializable {
this.createTime = createTime;
}
public BigDecimal getCreateUserId() {
public Long getCreateUserId() {
return createUserId;
}
public void setCreateUserId(BigDecimal createUserId) {
public void setCreateUserId(Long createUserId) {
this.createUserId = createUserId;
}
......@@ -165,11 +164,11 @@ public class Role implements Serializable {
this.modifyTime = modifyTime;
}
public BigDecimal getModifyUserId() {
public Long getModifyUserId() {
return modifyUserId;
}
public void setModifyUserId(BigDecimal modifyUserId) {
public void setModifyUserId(Long modifyUserId) {
this.modifyUserId = modifyUserId;
}
......
package com.fedex.connect.common.model.sys;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
/**
......@@ -12,22 +11,22 @@ public class RolePrivilege implements Serializable {
/**
* ID
*/
private BigDecimal id;
private Long id;
/**
* 角色ID
*/
private BigDecimal roleId;
private Long roleId;
/**
* 权限ID
*/
private BigDecimal privId;
private Long privId;
/**
* 是否有效(1:有效[true]。0:无效[false]。)
*/
private BigDecimal status;
private Long status;
/**
* 创建时间
......@@ -35,9 +34,9 @@ public class RolePrivilege implements Serializable {
private Date createTime;
/**
* 创建人ID
* 创建人ID,关联用户表ID
*/
private BigDecimal createUserId;
private Long createUserId;
/**
* 创建人名称
......@@ -50,9 +49,9 @@ public class RolePrivilege implements Serializable {
private Date modifyTime;
/**
* 修改人ID
* 修改人ID,关联用户表ID
*/
private BigDecimal modifyUserId;
private Long modifyUserId;
/**
* 修改人名称
......@@ -61,35 +60,35 @@ public class RolePrivilege implements Serializable {
private static final long serialVersionUID = 1L;
public BigDecimal getId() {
public Long getId() {
return id;
}
public void setId(BigDecimal id) {
public void setId(Long id) {
this.id = id;
}
public BigDecimal getRoleId() {
public Long getRoleId() {
return roleId;
}
public void setRoleId(BigDecimal roleId) {
public void setRoleId(Long roleId) {
this.roleId = roleId;
}
public BigDecimal getPrivId() {
public Long getPrivId() {
return privId;
}
public void setPrivId(BigDecimal privId) {
public void setPrivId(Long privId) {
this.privId = privId;
}
public BigDecimal getStatus() {
public Long getStatus() {
return status;
}
public void setStatus(BigDecimal status) {
public void setStatus(Long status) {
this.status = status;
}
......@@ -101,11 +100,11 @@ public class RolePrivilege implements Serializable {
this.createTime = createTime;
}
public BigDecimal getCreateUserId() {
public Long getCreateUserId() {
return createUserId;
}
public void setCreateUserId(BigDecimal createUserId) {
public void setCreateUserId(Long createUserId) {
this.createUserId = createUserId;
}
......@@ -125,11 +124,11 @@ public class RolePrivilege implements Serializable {
this.modifyTime = modifyTime;
}
public BigDecimal getModifyUserId() {
public Long getModifyUserId() {
return modifyUserId;
}
public void setModifyUserId(BigDecimal modifyUserId) {
public void setModifyUserId(Long modifyUserId) {
this.modifyUserId = modifyUserId;
}
......
......@@ -40,7 +40,7 @@
sys:系统 系统相关表,例如kafka表
log: 日志 日志记录表,例如邮件发送日志表
-->
<javaModelGenerator targetPackage="com.fedex.connect.common.model.sys" targetProject="src/main/java">
<javaModelGenerator targetPackage="com.fedex.connect.common.model.base" targetProject="src/main/java">
<!---enableSubPackages:如果true,MBG会根据catalog和schema来生成子包。如果false就会直接用targetPackage属性-->
<property name="enableSubPackages" value="false"/>
<!--该属性只对MyBatis3有效,如果true就会使用构造方法入参,如果false就会使用setter方式。默认为false-->
......@@ -52,13 +52,13 @@
</javaModelGenerator>
<!-- 生成映射文件*.xml的位置-->
<sqlMapGenerator targetPackage="mapper.sys" targetProject="src/main/java/com/fedex/connect/common">
<sqlMapGenerator targetPackage="mapper.base" targetProject="src/main/java/com/fedex/connect/common">
<!--如果true,MBG会根据catalog和schema来生成子包。如果false就会直接用targetPackage属性。默认为false-->
<property name="enableSubPackages" value="false"/>
</sqlMapGenerator>
<!-- 生成DAO的包名和位置 -->
<javaClientGenerator type="XMLMAPPER" targetPackage="com.fedex.connect.common.dao.sys" targetProject="src/main/java">
<javaClientGenerator type="XMLMAPPER" targetPackage="com.fedex.connect.common.dao.base" targetProject="src/main/java">
<!--如果true,MBG会根据catalog和schema来生成子包。如果false就会直接用targetPackage属性。默认为false-->
<property name="enableSubPackages" value="false"/>
</javaClientGenerator>
......@@ -73,68 +73,68 @@
generatedKey 指定KEY,Oracle需要指定序列。
sqlStatement 指定序列名称
-->
<table tableName="T_KAFKA_TEMPORARY_STORAGE" domainObjectName="KafkaTemporaryStorage"
enableCountByExample="true" enableUpdateByExample="true"
enableDeleteByExample="true" enableSelectByExample="true"
selectByExampleQueryId="true">
<generatedKey column="ID" sqlStatement="SELECT SEQ_T_KAFKA_TEMPORARY_STORAGE.NEXTVAL FROM DUAL" />
</table>
<table tableName="T_KAFKA_STORAGE_HISTORY" domainObjectName="KafkaStorageHistory"
enableCountByExample="true" enableUpdateByExample="true"
enableDeleteByExample="true" enableSelectByExample="true"
selectByExampleQueryId="true">
<generatedKey column="ID" sqlStatement="SELECT SEQ_T_KAFKA_STORAGE_HISTORY.NEXTVAL FROM DUAL" />
</table>
<table tableName="T_SYS_PARAM_CONFIG" domainObjectName="ParamConfig"
enableCountByExample="true" enableUpdateByExample="true"
enableDeleteByExample="true" enableSelectByExample="true"
selectByExampleQueryId="true">
<generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_PARAM_CONFIG.NEXTVAL FROM DUAL" />
</table>
<table tableName="T_SYS_PRIVILEGE" domainObjectName="Privilege"
enableCountByExample="true" enableUpdateByExample="true"
enableDeleteByExample="true" enableSelectByExample="true"
selectByExampleQueryId="true">
<generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_PRIVILEGE.NEXTVAL FROM DUAL" />
</table>
<table tableName="T_SYS_ROLE" domainObjectName="Role"
enableCountByExample="true" enableUpdateByExample="true"
enableDeleteByExample="true" enableSelectByExample="true"
selectByExampleQueryId="true">
<generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_ROLE.NEXTVAL FROM DUAL" />
</table>
<table tableName="T_SYS_ROLE_PRIVILEGE" domainObjectName="RolePrivilege"
enableCountByExample="true" enableUpdateByExample="true"
enableDeleteByExample="true" enableSelectByExample="true"
selectByExampleQueryId="true">
<generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_ROLE_PRIVILEGE.NEXTVAL FROM DUAL" />
</table>
<table tableName="T_SYS_USER" domainObjectName="User"
enableCountByExample="true" enableUpdateByExample="true"
enableDeleteByExample="true" enableSelectByExample="true"
selectByExampleQueryId="true">
<generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_USER.NEXTVAL FROM DUAL" />
</table>
<table tableName="T_SYS_USER_ROLE" domainObjectName="UserRole"
enableCountByExample="true" enableUpdateByExample="true"
enableDeleteByExample="true" enableSelectByExample="true"
selectByExampleQueryId="true">
<generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_USER_ROLE.NEXTVAL FROM DUAL" />
</table>
<!-- <table tableName="T_BI_DICTIONARY_ENTRIES" domainObjectName="DictionaryEntries"-->
<!-- <table tableName="T_KAFKA_TEMPORARY_STORAGE" domainObjectName="KafkaTemporaryStorage"-->
<!-- enableCountByExample="true" enableUpdateByExample="true"-->
<!-- enableDeleteByExample="true" enableSelectByExample="true"-->
<!-- selectByExampleQueryId="true">-->
<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_BI_DICTIONARY_ENTRIES.NEXTVAL FROM DUAL" />-->
<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_KAFKA_TEMPORARY_STORAGE.NEXTVAL FROM DUAL" />-->
<!-- </table>-->
<!-- <table tableName="T_BI_DICTIONARY" domainObjectName="Dictionary"-->
<!-- <table tableName="T_KAFKA_STORAGE_HISTORY" domainObjectName="KafkaStorageHistory"-->
<!-- enableCountByExample="true" enableUpdateByExample="true"-->
<!-- enableDeleteByExample="true" enableSelectByExample="true"-->
<!-- selectByExampleQueryId="true">-->
<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_BI_DICTIONARY.NEXTVAL FROM DUAL" />-->
<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_KAFKA_STORAGE_HISTORY.NEXTVAL FROM DUAL" />-->
<!-- </table>-->
<!-- <table tableName="T_SYS_PARAM_CONFIG" domainObjectName="ParamConfig"-->
<!-- enableCountByExample="true" enableUpdateByExample="true"-->
<!-- enableDeleteByExample="true" enableSelectByExample="true"-->
<!-- selectByExampleQueryId="true">-->
<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_PARAM_CONFIG.NEXTVAL FROM DUAL" />-->
<!-- </table>-->
<!-- <table tableName="T_SYS_PRIVILEGE" domainObjectName="Privilege"-->
<!-- enableCountByExample="true" enableUpdateByExample="true"-->
<!-- enableDeleteByExample="true" enableSelectByExample="true"-->
<!-- selectByExampleQueryId="true">-->
<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_PRIVILEGE.NEXTVAL FROM DUAL" />-->
<!-- </table>-->
<!-- <table tableName="T_SYS_ROLE" domainObjectName="Role"-->
<!-- enableCountByExample="true" enableUpdateByExample="true"-->
<!-- enableDeleteByExample="true" enableSelectByExample="true"-->
<!-- selectByExampleQueryId="true">-->
<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_ROLE.NEXTVAL FROM DUAL" />-->
<!-- </table>-->
<!-- <table tableName="T_SYS_ROLE_PRIVILEGE" domainObjectName="RolePrivilege"-->
<!-- enableCountByExample="true" enableUpdateByExample="true"-->
<!-- enableDeleteByExample="true" enableSelectByExample="true"-->
<!-- selectByExampleQueryId="true">-->
<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_ROLE_PRIVILEGE.NEXTVAL FROM DUAL" />-->
<!-- </table>-->
<!-- <table tableName="T_SYS_USER" domainObjectName="User"-->
<!-- enableCountByExample="true" enableUpdateByExample="true"-->
<!-- enableDeleteByExample="true" enableSelectByExample="true"-->
<!-- selectByExampleQueryId="true">-->
<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_USER.NEXTVAL FROM DUAL" />-->
<!-- </table>-->
<!-- <table tableName="T_SYS_USER_ROLE" domainObjectName="UserRole"-->
<!-- enableCountByExample="true" enableUpdateByExample="true"-->
<!-- enableDeleteByExample="true" enableSelectByExample="true"-->
<!-- selectByExampleQueryId="true">-->
<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_USER_ROLE.NEXTVAL FROM DUAL" />-->
<!-- </table>-->
<table tableName="T_BI_DICTIONARY_ENTRIES" domainObjectName="DictionaryEntries"
enableCountByExample="true" enableUpdateByExample="true"
enableDeleteByExample="true" enableSelectByExample="true"
selectByExampleQueryId="true">
<generatedKey column="ID" sqlStatement="SELECT SEQ_T_BI_DICTIONARY_ENTRIES.NEXTVAL FROM DUAL" />
</table>
<table tableName="T_BI_DICTIONARY" domainObjectName="Dictionary"
enableCountByExample="true" enableUpdateByExample="true"
enableDeleteByExample="true" enableSelectByExample="true"
selectByExampleQueryId="true">
<generatedKey column="ID" sqlStatement="SELECT SEQ_T_BI_DICTIONARY.NEXTVAL FROM DUAL" />
</table>
<!-- <table tableName="T_TASK_MANAGEMENT" domainObjectName="TaskManagement"-->
......