zelong.shao

dao|dao层重新生成

Showing 51 changed files with 879 additions and 745 deletions
......@@ -2,9 +2,8 @@ package com.fedex.connect.common.dao.bi;
import com.fedex.connect.common.model.bi.PortclearEmailMapping;
import com.fedex.connect.common.model.bi.PortclearEmailMappingExample;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface PortclearEmailMappingMapper {
long countByExample(PortclearEmailMappingExample example);
......
......@@ -2,9 +2,8 @@ package com.fedex.connect.common.dao.log;
import com.fedex.connect.common.model.log.EmailHistory;
import com.fedex.connect.common.model.log.EmailHistoryExample;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface EmailHistoryMapper {
long countByExample(EmailHistoryExample example);
......
......@@ -2,9 +2,8 @@ package com.fedex.connect.common.dao.log;
import com.fedex.connect.common.model.log.UserLoginInfo;
import com.fedex.connect.common.model.log.UserLoginInfoExample;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface UserLoginInfoMapper {
long countByExample(UserLoginInfoExample example);
......
......@@ -2,9 +2,8 @@ package com.fedex.connect.common.dao.sys;
import com.fedex.connect.common.model.sys.Privilege;
import com.fedex.connect.common.model.sys.PrivilegeExample;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface PrivilegeMapper {
long countByExample(PrivilegeExample example);
......
package com.fedex.connect.common.dao.sys;
import com.fedex.connect.common.model.sys.RedisSlab;
import com.fedex.connect.common.model.sys.RedisSlabExample;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface RedisSlabMapper {
long countByExample(RedisSlabExample example);
int deleteByExample(RedisSlabExample example);
int deleteByPrimaryKey(Long id);
int insert(RedisSlab record);
int insertSelective(RedisSlab record);
List<RedisSlab> selectByExample(RedisSlabExample example);
RedisSlab selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") RedisSlab record, @Param("example") RedisSlabExample example);
int updateByExample(@Param("record") RedisSlab record, @Param("example") RedisSlabExample example);
int updateByPrimaryKeySelective(RedisSlab record);
int updateByPrimaryKey(RedisSlab record);
}
\ No newline at end of file
......@@ -2,9 +2,8 @@ package com.fedex.connect.common.dao.sys;
import com.fedex.connect.common.model.sys.Role;
import com.fedex.connect.common.model.sys.RoleExample;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface RoleMapper {
long countByExample(RoleExample example);
......
package com.fedex.connect.common.dao.sys;
import com.fedex.connect.common.model.sys.redisSlab;
import com.fedex.connect.common.model.sys.redisSlabExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface redisSlabMapper {
long countByExample(redisSlabExample example);
int deleteByExample(redisSlabExample example);
int deleteByPrimaryKey(Long id);
int insert(redisSlab record);
int insertSelective(redisSlab record);
List<redisSlab> selectByExample(redisSlabExample example);
redisSlab selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") redisSlab record, @Param("example") redisSlabExample example);
int updateByExample(@Param("record") redisSlab record, @Param("example") redisSlabExample example);
int updateByPrimaryKeySelective(redisSlab record);
int updateByPrimaryKey(redisSlab record);
}
\ No newline at end of file
......@@ -8,9 +8,9 @@
<result column="TO_ADDRESS" jdbcType="VARCHAR" property="toAddress" />
<result column="CC_ADDRESS" jdbcType="VARCHAR" property="ccAddress" />
<result column="SUBJECT" jdbcType="VARCHAR" property="subject" />
<result column="TYPE_ID" jdbcType="NUMERIC" property="typeId" />
<result column="TYPE_CODE" jdbcType="VARCHAR" property="typeCode" />
<result column="TYPE_NAME" jdbcType="VARCHAR" property="typeName" />
<result column="STATUS_ID" jdbcType="NUMERIC" property="statusId" />
<result column="STATUS_CODE" jdbcType="VARCHAR" property="statusCode" />
<result column="STATUS_NAME" jdbcType="VARCHAR" property="statusName" />
<result column="SEND_NUM" jdbcType="NUMERIC" property="sendNum" />
<result column="SEND_TIME" jdbcType="TIMESTAMP" property="sendTime" />
......@@ -83,7 +83,7 @@
</where>
</sql>
<sql id="Base_Column_List">
ID, BIZ_ID, BIZ_CODE, TO_ADDRESS, CC_ADDRESS, SUBJECT, TYPE_ID, TYPE_NAME, STATUS_ID,
ID, BIZ_ID, BIZ_CODE, TO_ADDRESS, CC_ADDRESS, SUBJECT, TYPE_CODE, TYPE_NAME, STATUS_CODE,
STATUS_NAME, SEND_NUM, SEND_TIME, CREATE_TIME, CREATE_USER_ID, CREATE_USER_NAME,
MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME
</sql>
......@@ -148,14 +148,14 @@
</selectKey>
insert into T_BIZ_EMAIL (ID, BIZ_ID, BIZ_CODE,
TO_ADDRESS, CC_ADDRESS, SUBJECT,
TYPE_ID, TYPE_NAME, STATUS_ID,
TYPE_CODE, TYPE_NAME, STATUS_CODE,
STATUS_NAME, SEND_NUM, SEND_TIME,
CREATE_TIME, CREATE_USER_ID, CREATE_USER_NAME,
MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME,
BODY)
values (#{id,jdbcType=NUMERIC}, #{bizId,jdbcType=NUMERIC}, #{bizCode,jdbcType=VARCHAR},
#{toAddress,jdbcType=VARCHAR}, #{ccAddress,jdbcType=VARCHAR}, #{subject,jdbcType=VARCHAR},
#{typeId,jdbcType=NUMERIC}, #{typeName,jdbcType=VARCHAR}, #{statusId,jdbcType=NUMERIC},
#{typeCode,jdbcType=VARCHAR}, #{typeName,jdbcType=VARCHAR}, #{statusCode,jdbcType=VARCHAR},
#{statusName,jdbcType=VARCHAR}, #{sendNum,jdbcType=NUMERIC}, #{sendTime,jdbcType=TIMESTAMP},
#{createTime,jdbcType=TIMESTAMP}, #{createUserId,jdbcType=NUMERIC}, #{createUserName,jdbcType=VARCHAR},
#{modifyTime,jdbcType=TIMESTAMP}, #{modifyUserId,jdbcType=NUMERIC}, #{modifyUserName,jdbcType=VARCHAR},
......@@ -183,14 +183,14 @@
<if test="subject != null">
SUBJECT,
</if>
<if test="typeId != null">
TYPE_ID,
<if test="typeCode != null">
TYPE_CODE,
</if>
<if test="typeName != null">
TYPE_NAME,
</if>
<if test="statusId != null">
STATUS_ID,
<if test="statusCode != null">
STATUS_CODE,
</if>
<if test="statusName != null">
STATUS_NAME,
......@@ -240,14 +240,14 @@
<if test="subject != null">
#{subject,jdbcType=VARCHAR},
</if>
<if test="typeId != null">
#{typeId,jdbcType=NUMERIC},
<if test="typeCode != null">
#{typeCode,jdbcType=VARCHAR},
</if>
<if test="typeName != null">
#{typeName,jdbcType=VARCHAR},
</if>
<if test="statusId != null">
#{statusId,jdbcType=NUMERIC},
<if test="statusCode != null">
#{statusCode,jdbcType=VARCHAR},
</if>
<if test="statusName != null">
#{statusName,jdbcType=VARCHAR},
......@@ -308,14 +308,14 @@
<if test="record.subject != null">
SUBJECT = #{record.subject,jdbcType=VARCHAR},
</if>
<if test="record.typeId != null">
TYPE_ID = #{record.typeId,jdbcType=NUMERIC},
<if test="record.typeCode != null">
TYPE_CODE = #{record.typeCode,jdbcType=VARCHAR},
</if>
<if test="record.typeName != null">
TYPE_NAME = #{record.typeName,jdbcType=VARCHAR},
</if>
<if test="record.statusId != null">
STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
<if test="record.statusCode != null">
STATUS_CODE = #{record.statusCode,jdbcType=VARCHAR},
</if>
<if test="record.statusName != null">
STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
......@@ -360,9 +360,9 @@
TO_ADDRESS = #{record.toAddress,jdbcType=VARCHAR},
CC_ADDRESS = #{record.ccAddress,jdbcType=VARCHAR},
SUBJECT = #{record.subject,jdbcType=VARCHAR},
TYPE_ID = #{record.typeId,jdbcType=NUMERIC},
TYPE_CODE = #{record.typeCode,jdbcType=VARCHAR},
TYPE_NAME = #{record.typeName,jdbcType=VARCHAR},
STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
STATUS_CODE = #{record.statusCode,jdbcType=VARCHAR},
STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
SEND_NUM = #{record.sendNum,jdbcType=NUMERIC},
SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
......@@ -385,9 +385,9 @@
TO_ADDRESS = #{record.toAddress,jdbcType=VARCHAR},
CC_ADDRESS = #{record.ccAddress,jdbcType=VARCHAR},
SUBJECT = #{record.subject,jdbcType=VARCHAR},
TYPE_ID = #{record.typeId,jdbcType=NUMERIC},
TYPE_CODE = #{record.typeCode,jdbcType=VARCHAR},
TYPE_NAME = #{record.typeName,jdbcType=VARCHAR},
STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
STATUS_CODE = #{record.statusCode,jdbcType=VARCHAR},
STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
SEND_NUM = #{record.sendNum,jdbcType=NUMERIC},
SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
......@@ -419,14 +419,14 @@
<if test="subject != null">
SUBJECT = #{subject,jdbcType=VARCHAR},
</if>
<if test="typeId != null">
TYPE_ID = #{typeId,jdbcType=NUMERIC},
<if test="typeCode != null">
TYPE_CODE = #{typeCode,jdbcType=VARCHAR},
</if>
<if test="typeName != null">
TYPE_NAME = #{typeName,jdbcType=VARCHAR},
</if>
<if test="statusId != null">
STATUS_ID = #{statusId,jdbcType=NUMERIC},
<if test="statusCode != null">
STATUS_CODE = #{statusCode,jdbcType=VARCHAR},
</if>
<if test="statusName != null">
STATUS_NAME = #{statusName,jdbcType=VARCHAR},
......@@ -468,9 +468,9 @@
TO_ADDRESS = #{toAddress,jdbcType=VARCHAR},
CC_ADDRESS = #{ccAddress,jdbcType=VARCHAR},
SUBJECT = #{subject,jdbcType=VARCHAR},
TYPE_ID = #{typeId,jdbcType=NUMERIC},
TYPE_CODE = #{typeCode,jdbcType=VARCHAR},
TYPE_NAME = #{typeName,jdbcType=VARCHAR},
STATUS_ID = #{statusId,jdbcType=NUMERIC},
STATUS_CODE = #{statusCode,jdbcType=VARCHAR},
STATUS_NAME = #{statusName,jdbcType=VARCHAR},
SEND_NUM = #{sendNum,jdbcType=NUMERIC},
SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
......@@ -490,9 +490,9 @@
TO_ADDRESS = #{toAddress,jdbcType=VARCHAR},
CC_ADDRESS = #{ccAddress,jdbcType=VARCHAR},
SUBJECT = #{subject,jdbcType=VARCHAR},
TYPE_ID = #{typeId,jdbcType=NUMERIC},
TYPE_CODE = #{typeCode,jdbcType=VARCHAR},
TYPE_NAME = #{typeName,jdbcType=VARCHAR},
STATUS_ID = #{statusId,jdbcType=NUMERIC},
STATUS_CODE = #{statusCode,jdbcType=VARCHAR},
STATUS_NAME = #{statusName,jdbcType=VARCHAR},
SEND_NUM = #{sendNum,jdbcType=NUMERIC},
SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
......
......@@ -5,9 +5,9 @@
<id column="ID" jdbcType="NUMERIC" property="id" />
<result column="CONSIGNMENT_CODE" jdbcType="VARCHAR" property="consignmentCode" />
<result column="CONSIGNMENT_ID" jdbcType="NUMERIC" property="consignmentId" />
<result column="STATUS_ID" jdbcType="NUMERIC" property="statusId" />
<result column="STATUS_CODE" jdbcType="VARCHAR" property="statusCode" />
<result column="STATUS_NAME" jdbcType="VARCHAR" property="statusName" />
<result column="FILE_TYPE_ID" jdbcType="NUMERIC" property="fileTypeId" />
<result column="FILE_TYPE_CODE" jdbcType="VARCHAR" property="fileTypeCode" />
<result column="FILE_TYPE" jdbcType="VARCHAR" property="fileType" />
<result column="FILE_NAME" jdbcType="VARCHAR" property="fileName" />
<result column="PUSH_OB_ID" jdbcType="NUMERIC" property="pushObId" />
......@@ -79,7 +79,7 @@
</where>
</sql>
<sql id="Base_Column_List">
ID, CONSIGNMENT_CODE, CONSIGNMENT_ID, STATUS_ID, STATUS_NAME, FILE_TYPE_ID, FILE_TYPE,
ID, CONSIGNMENT_CODE, CONSIGNMENT_ID, STATUS_CODE, STATUS_NAME, FILE_TYPE_CODE, FILE_TYPE,
FILE_NAME, PUSH_OB_ID, PUSH_TIME, REMARK, CREATE_TIME, CREATE_USER_ID, CREATE_USER_NAME,
MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME
</sql>
......@@ -121,13 +121,13 @@
SELECT SEQ_T_BIZ_PUSH_OB_DETAIL.NEXTVAL FROM DUAL
</selectKey>
insert into T_BIZ_PUSH_OB_DETAIL (ID, CONSIGNMENT_CODE, CONSIGNMENT_ID,
STATUS_ID, STATUS_NAME, FILE_TYPE_ID,
STATUS_CODE, STATUS_NAME, FILE_TYPE_CODE,
FILE_TYPE, FILE_NAME, PUSH_OB_ID,
PUSH_TIME, REMARK, CREATE_TIME,
CREATE_USER_ID, CREATE_USER_NAME, MODIFY_TIME,
MODIFY_USER_ID, MODIFY_USER_NAME)
values (#{id,jdbcType=NUMERIC}, #{consignmentCode,jdbcType=VARCHAR}, #{consignmentId,jdbcType=NUMERIC},
#{statusId,jdbcType=NUMERIC}, #{statusName,jdbcType=VARCHAR}, #{fileTypeId,jdbcType=NUMERIC},
#{statusCode,jdbcType=VARCHAR}, #{statusName,jdbcType=VARCHAR}, #{fileTypeCode,jdbcType=VARCHAR},
#{fileType,jdbcType=VARCHAR}, #{fileName,jdbcType=VARCHAR}, #{pushObId,jdbcType=NUMERIC},
#{pushTime,jdbcType=TIMESTAMP}, #{remark,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP},
#{createUserId,jdbcType=NUMERIC}, #{createUserName,jdbcType=VARCHAR}, #{modifyTime,jdbcType=TIMESTAMP},
......@@ -146,14 +146,14 @@
<if test="consignmentId != null">
CONSIGNMENT_ID,
</if>
<if test="statusId != null">
STATUS_ID,
<if test="statusCode != null">
STATUS_CODE,
</if>
<if test="statusName != null">
STATUS_NAME,
</if>
<if test="fileTypeId != null">
FILE_TYPE_ID,
<if test="fileTypeCode != null">
FILE_TYPE_CODE,
</if>
<if test="fileType != null">
FILE_TYPE,
......@@ -197,14 +197,14 @@
<if test="consignmentId != null">
#{consignmentId,jdbcType=NUMERIC},
</if>
<if test="statusId != null">
#{statusId,jdbcType=NUMERIC},
<if test="statusCode != null">
#{statusCode,jdbcType=VARCHAR},
</if>
<if test="statusName != null">
#{statusName,jdbcType=VARCHAR},
</if>
<if test="fileTypeId != null">
#{fileTypeId,jdbcType=NUMERIC},
<if test="fileTypeCode != null">
#{fileTypeCode,jdbcType=VARCHAR},
</if>
<if test="fileType != null">
#{fileType,jdbcType=VARCHAR},
......@@ -259,14 +259,14 @@
<if test="record.consignmentId != null">
CONSIGNMENT_ID = #{record.consignmentId,jdbcType=NUMERIC},
</if>
<if test="record.statusId != null">
STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
<if test="record.statusCode != null">
STATUS_CODE = #{record.statusCode,jdbcType=VARCHAR},
</if>
<if test="record.statusName != null">
STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
</if>
<if test="record.fileTypeId != null">
FILE_TYPE_ID = #{record.fileTypeId,jdbcType=NUMERIC},
<if test="record.fileTypeCode != null">
FILE_TYPE_CODE = #{record.fileTypeCode,jdbcType=VARCHAR},
</if>
<if test="record.fileType != null">
FILE_TYPE = #{record.fileType,jdbcType=VARCHAR},
......@@ -311,9 +311,9 @@
set ID = #{record.id,jdbcType=NUMERIC},
CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR},
CONSIGNMENT_ID = #{record.consignmentId,jdbcType=NUMERIC},
STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
STATUS_CODE = #{record.statusCode,jdbcType=VARCHAR},
STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
FILE_TYPE_ID = #{record.fileTypeId,jdbcType=NUMERIC},
FILE_TYPE_CODE = #{record.fileTypeCode,jdbcType=VARCHAR},
FILE_TYPE = #{record.fileType,jdbcType=VARCHAR},
FILE_NAME = #{record.fileName,jdbcType=VARCHAR},
PUSH_OB_ID = #{record.pushObId,jdbcType=NUMERIC},
......@@ -338,14 +338,14 @@
<if test="consignmentId != null">
CONSIGNMENT_ID = #{consignmentId,jdbcType=NUMERIC},
</if>
<if test="statusId != null">
STATUS_ID = #{statusId,jdbcType=NUMERIC},
<if test="statusCode != null">
STATUS_CODE = #{statusCode,jdbcType=VARCHAR},
</if>
<if test="statusName != null">
STATUS_NAME = #{statusName,jdbcType=VARCHAR},
</if>
<if test="fileTypeId != null">
FILE_TYPE_ID = #{fileTypeId,jdbcType=NUMERIC},
<if test="fileTypeCode != null">
FILE_TYPE_CODE = #{fileTypeCode,jdbcType=VARCHAR},
</if>
<if test="fileType != null">
FILE_TYPE = #{fileType,jdbcType=VARCHAR},
......@@ -387,9 +387,9 @@
update T_BIZ_PUSH_OB_DETAIL
set CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR},
CONSIGNMENT_ID = #{consignmentId,jdbcType=NUMERIC},
STATUS_ID = #{statusId,jdbcType=NUMERIC},
STATUS_CODE = #{statusCode,jdbcType=VARCHAR},
STATUS_NAME = #{statusName,jdbcType=VARCHAR},
FILE_TYPE_ID = #{fileTypeId,jdbcType=NUMERIC},
FILE_TYPE_CODE = #{fileTypeCode,jdbcType=VARCHAR},
FILE_TYPE = #{fileType,jdbcType=VARCHAR},
FILE_NAME = #{fileName,jdbcType=VARCHAR},
PUSH_OB_ID = #{pushObId,jdbcType=NUMERIC},
......
......@@ -6,7 +6,7 @@
<result column="CONSIGNMENT_CODE" jdbcType="VARCHAR" property="consignmentCode" />
<result column="CONSIGNMENT_ID" jdbcType="NUMERIC" property="consignmentId" />
<result column="PUSH_TIME" jdbcType="TIMESTAMP" property="pushTime" />
<result column="STATUS_ID" jdbcType="NUMERIC" property="statusId" />
<result column="STATUS_CODE" jdbcType="VARCHAR" property="statusCode" />
<result column="STATUS_NAME" jdbcType="VARCHAR" property="statusName" />
<result column="PUSH_NUM" jdbcType="NUMERIC" property="pushNum" />
<result column="FILE_PATH" jdbcType="VARCHAR" property="filePath" />
......@@ -79,7 +79,7 @@
</where>
</sql>
<sql id="Base_Column_List">
ID, CONSIGNMENT_CODE, CONSIGNMENT_ID, PUSH_TIME, STATUS_ID, STATUS_NAME, PUSH_NUM,
ID, CONSIGNMENT_CODE, CONSIGNMENT_ID, PUSH_TIME, STATUS_CODE, STATUS_NAME, PUSH_NUM,
FILE_PATH, FILE_BACK_PATH, FILE_NAME, REMARK, CREATE_TIME, CREATE_USER_ID, CREATE_USER_NAME,
MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME
</sql>
......@@ -121,13 +121,13 @@
SELECT SEQ_T_BIZ_PUSH_OB.NEXTVAL FROM DUAL
</selectKey>
insert into T_BIZ_PUSH_OB (ID, CONSIGNMENT_CODE, CONSIGNMENT_ID,
PUSH_TIME, STATUS_ID, STATUS_NAME,
PUSH_TIME, STATUS_CODE, STATUS_NAME,
PUSH_NUM, FILE_PATH, FILE_BACK_PATH,
FILE_NAME, REMARK, CREATE_TIME,
CREATE_USER_ID, CREATE_USER_NAME, MODIFY_TIME,
MODIFY_USER_ID, MODIFY_USER_NAME)
values (#{id,jdbcType=NUMERIC}, #{consignmentCode,jdbcType=VARCHAR}, #{consignmentId,jdbcType=NUMERIC},
#{pushTime,jdbcType=TIMESTAMP}, #{statusId,jdbcType=NUMERIC}, #{statusName,jdbcType=VARCHAR},
#{pushTime,jdbcType=TIMESTAMP}, #{statusCode,jdbcType=VARCHAR}, #{statusName,jdbcType=VARCHAR},
#{pushNum,jdbcType=NUMERIC}, #{filePath,jdbcType=VARCHAR}, #{fileBackPath,jdbcType=VARCHAR},
#{fileName,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP},
#{createUserId,jdbcType=NUMERIC}, #{createUserName,jdbcType=VARCHAR}, #{modifyTime,jdbcType=TIMESTAMP},
......@@ -149,8 +149,8 @@
<if test="pushTime != null">
PUSH_TIME,
</if>
<if test="statusId != null">
STATUS_ID,
<if test="statusCode != null">
STATUS_CODE,
</if>
<if test="statusName != null">
STATUS_NAME,
......@@ -200,8 +200,8 @@
<if test="pushTime != null">
#{pushTime,jdbcType=TIMESTAMP},
</if>
<if test="statusId != null">
#{statusId,jdbcType=NUMERIC},
<if test="statusCode != null">
#{statusCode,jdbcType=VARCHAR},
</if>
<if test="statusName != null">
#{statusName,jdbcType=VARCHAR},
......@@ -262,8 +262,8 @@
<if test="record.pushTime != null">
PUSH_TIME = #{record.pushTime,jdbcType=TIMESTAMP},
</if>
<if test="record.statusId != null">
STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
<if test="record.statusCode != null">
STATUS_CODE = #{record.statusCode,jdbcType=VARCHAR},
</if>
<if test="record.statusName != null">
STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
......@@ -312,7 +312,7 @@
CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR},
CONSIGNMENT_ID = #{record.consignmentId,jdbcType=NUMERIC},
PUSH_TIME = #{record.pushTime,jdbcType=TIMESTAMP},
STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
STATUS_CODE = #{record.statusCode,jdbcType=VARCHAR},
STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
PUSH_NUM = #{record.pushNum,jdbcType=NUMERIC},
FILE_PATH = #{record.filePath,jdbcType=VARCHAR},
......@@ -341,8 +341,8 @@
<if test="pushTime != null">
PUSH_TIME = #{pushTime,jdbcType=TIMESTAMP},
</if>
<if test="statusId != null">
STATUS_ID = #{statusId,jdbcType=NUMERIC},
<if test="statusCode != null">
STATUS_CODE = #{statusCode,jdbcType=VARCHAR},
</if>
<if test="statusName != null">
STATUS_NAME = #{statusName,jdbcType=VARCHAR},
......@@ -388,7 +388,7 @@
set CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR},
CONSIGNMENT_ID = #{consignmentId,jdbcType=NUMERIC},
PUSH_TIME = #{pushTime,jdbcType=TIMESTAMP},
STATUS_ID = #{statusId,jdbcType=NUMERIC},
STATUS_CODE = #{statusCode,jdbcType=VARCHAR},
STATUS_NAME = #{statusName,jdbcType=VARCHAR},
PUSH_NUM = #{pushNum,jdbcType=NUMERIC},
FILE_PATH = #{filePath,jdbcType=VARCHAR},
......
......@@ -4,14 +4,15 @@
<resultMap id="BaseResultMap" type="com.fedex.connect.common.model.biz.UploadRecord">
<id column="ID" jdbcType="NUMERIC" property="id" />
<result column="CONSIGNMENT_ID" jdbcType="NUMERIC" property="consignmentId" />
<result column="UPLOAD_STATUS" jdbcType="VARCHAR" property="uploadStatus" />
<result column="STATUS" jdbcType="NUMERIC" property="status" />
<result column="STATUS_CODE" jdbcType="VARCHAR" property="statusCode" />
<result column="STATUS_NAME" jdbcType="VARCHAR" property="statusName" />
<result column="CREATE_TIME" jdbcType="TIMESTAMP" property="createTime" />
<result column="CREATE_USER_ID" jdbcType="NUMERIC" property="createUserId" />
<result column="CREATE_USER_NAME" jdbcType="VARCHAR" property="createUserName" />
<result column="MODIFY_TIME" jdbcType="TIMESTAMP" property="modifyTime" />
<result column="MODIFY_USER_ID" jdbcType="NUMERIC" property="modifyUserId" />
<result column="MODIFY_USER_NAME" jdbcType="VARCHAR" property="modifyUserName" />
<result column="CONSIGNMENT_CODE" jdbcType="VARCHAR" property="consignmentCode" />
</resultMap>
<sql id="Example_Where_Clause">
<where>
......@@ -72,8 +73,8 @@
</where>
</sql>
<sql id="Base_Column_List">
ID, CONSIGNMENT_ID, UPLOAD_STATUS, STATUS, CREATE_TIME, CREATE_USER_ID, CREATE_USER_NAME,
MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME
ID, CONSIGNMENT_ID, STATUS_CODE, STATUS_NAME, CREATE_TIME, CREATE_USER_ID, CREATE_USER_NAME,
MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME, CONSIGNMENT_CODE
</sql>
<select id="selectByExample" parameterType="com.fedex.connect.common.model.biz.UploadRecordExample" resultMap="BaseResultMap">
<include refid="OracleDialectPrefix" />
......@@ -112,14 +113,14 @@
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_BIZ_UPLOAD_RECORD.NEXTVAL FROM DUAL
</selectKey>
insert into T_BIZ_UPLOAD_RECORD (ID, CONSIGNMENT_ID, UPLOAD_STATUS,
STATUS, CREATE_TIME, CREATE_USER_ID,
insert into T_BIZ_UPLOAD_RECORD (ID, CONSIGNMENT_ID, STATUS_CODE,
STATUS_NAME, CREATE_TIME, CREATE_USER_ID,
CREATE_USER_NAME, MODIFY_TIME, MODIFY_USER_ID,
MODIFY_USER_NAME)
values (#{id,jdbcType=NUMERIC}, #{consignmentId,jdbcType=NUMERIC}, #{uploadStatus,jdbcType=VARCHAR},
#{status,jdbcType=NUMERIC}, #{createTime,jdbcType=TIMESTAMP}, #{createUserId,jdbcType=NUMERIC},
MODIFY_USER_NAME, CONSIGNMENT_CODE)
values (#{id,jdbcType=NUMERIC}, #{consignmentId,jdbcType=NUMERIC}, #{statusCode,jdbcType=VARCHAR},
#{statusName,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{createUserId,jdbcType=NUMERIC},
#{createUserName,jdbcType=VARCHAR}, #{modifyTime,jdbcType=TIMESTAMP}, #{modifyUserId,jdbcType=NUMERIC},
#{modifyUserName,jdbcType=VARCHAR})
#{modifyUserName,jdbcType=VARCHAR}, #{consignmentCode,jdbcType=VARCHAR})
</insert>
<insert id="insertSelective" parameterType="com.fedex.connect.common.model.biz.UploadRecord">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
......@@ -131,11 +132,11 @@
<if test="consignmentId != null">
CONSIGNMENT_ID,
</if>
<if test="uploadStatus != null">
UPLOAD_STATUS,
<if test="statusCode != null">
STATUS_CODE,
</if>
<if test="status != null">
STATUS,
<if test="statusName != null">
STATUS_NAME,
</if>
<if test="createTime != null">
CREATE_TIME,
......@@ -155,17 +156,20 @@
<if test="modifyUserName != null">
MODIFY_USER_NAME,
</if>
<if test="consignmentCode != null">
CONSIGNMENT_CODE,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{id,jdbcType=NUMERIC},
<if test="consignmentId != null">
#{consignmentId,jdbcType=NUMERIC},
</if>
<if test="uploadStatus != null">
#{uploadStatus,jdbcType=VARCHAR},
<if test="statusCode != null">
#{statusCode,jdbcType=VARCHAR},
</if>
<if test="status != null">
#{status,jdbcType=NUMERIC},
<if test="statusName != null">
#{statusName,jdbcType=VARCHAR},
</if>
<if test="createTime != null">
#{createTime,jdbcType=TIMESTAMP},
......@@ -185,6 +189,9 @@
<if test="modifyUserName != null">
#{modifyUserName,jdbcType=VARCHAR},
</if>
<if test="consignmentCode != null">
#{consignmentCode,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<select id="countByExample" parameterType="com.fedex.connect.common.model.biz.UploadRecordExample" resultType="java.lang.Long">
......@@ -202,11 +209,11 @@
<if test="record.consignmentId != null">
CONSIGNMENT_ID = #{record.consignmentId,jdbcType=NUMERIC},
</if>
<if test="record.uploadStatus != null">
UPLOAD_STATUS = #{record.uploadStatus,jdbcType=VARCHAR},
<if test="record.statusCode != null">
STATUS_CODE = #{record.statusCode,jdbcType=VARCHAR},
</if>
<if test="record.status != null">
STATUS = #{record.status,jdbcType=NUMERIC},
<if test="record.statusName != null">
STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
</if>
<if test="record.createTime != null">
CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
......@@ -226,6 +233,9 @@
<if test="record.modifyUserName != null">
MODIFY_USER_NAME = #{record.modifyUserName,jdbcType=VARCHAR},
</if>
<if test="record.consignmentCode != null">
CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR},
</if>
</set>
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
......@@ -235,14 +245,15 @@
update T_BIZ_UPLOAD_RECORD
set ID = #{record.id,jdbcType=NUMERIC},
CONSIGNMENT_ID = #{record.consignmentId,jdbcType=NUMERIC},
UPLOAD_STATUS = #{record.uploadStatus,jdbcType=VARCHAR},
STATUS = #{record.status,jdbcType=NUMERIC},
STATUS_CODE = #{record.statusCode,jdbcType=VARCHAR},
STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
CREATE_USER_ID = #{record.createUserId,jdbcType=NUMERIC},
CREATE_USER_NAME = #{record.createUserName,jdbcType=VARCHAR},
MODIFY_TIME = #{record.modifyTime,jdbcType=TIMESTAMP},
MODIFY_USER_ID = #{record.modifyUserId,jdbcType=NUMERIC},
MODIFY_USER_NAME = #{record.modifyUserName,jdbcType=VARCHAR}
MODIFY_USER_NAME = #{record.modifyUserName,jdbcType=VARCHAR},
CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR}
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
......@@ -253,11 +264,11 @@
<if test="consignmentId != null">
CONSIGNMENT_ID = #{consignmentId,jdbcType=NUMERIC},
</if>
<if test="uploadStatus != null">
UPLOAD_STATUS = #{uploadStatus,jdbcType=VARCHAR},
<if test="statusCode != null">
STATUS_CODE = #{statusCode,jdbcType=VARCHAR},
</if>
<if test="status != null">
STATUS = #{status,jdbcType=NUMERIC},
<if test="statusName != null">
STATUS_NAME = #{statusName,jdbcType=VARCHAR},
</if>
<if test="createTime != null">
CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
......@@ -277,20 +288,24 @@
<if test="modifyUserName != null">
MODIFY_USER_NAME = #{modifyUserName,jdbcType=VARCHAR},
</if>
<if test="consignmentCode != null">
CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR},
</if>
</set>
where ID = #{id,jdbcType=NUMERIC}
</update>
<update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.biz.UploadRecord">
update T_BIZ_UPLOAD_RECORD
set CONSIGNMENT_ID = #{consignmentId,jdbcType=NUMERIC},
UPLOAD_STATUS = #{uploadStatus,jdbcType=VARCHAR},
STATUS = #{status,jdbcType=NUMERIC},
STATUS_CODE = #{statusCode,jdbcType=VARCHAR},
STATUS_NAME = #{statusName,jdbcType=VARCHAR},
CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
CREATE_USER_ID = #{createUserId,jdbcType=NUMERIC},
CREATE_USER_NAME = #{createUserName,jdbcType=VARCHAR},
MODIFY_TIME = #{modifyTime,jdbcType=TIMESTAMP},
MODIFY_USER_ID = #{modifyUserId,jdbcType=NUMERIC},
MODIFY_USER_NAME = #{modifyUserName,jdbcType=VARCHAR}
MODIFY_USER_NAME = #{modifyUserName,jdbcType=VARCHAR},
CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR}
where ID = #{id,jdbcType=NUMERIC}
</update>
<sql id="OracleDialectPrefix">
......
......@@ -8,9 +8,9 @@
<result column="TO_ADDRESS" jdbcType="VARCHAR" property="toAddress" />
<result column="CC_ADDRESS" jdbcType="VARCHAR" property="ccAddress" />
<result column="SUBJECT" jdbcType="VARCHAR" property="subject" />
<result column="TYPE_ID" jdbcType="NUMERIC" property="typeId" />
<result column="TYPE_CODE" jdbcType="VARCHAR" property="typeCode" />
<result column="TYPE_NAME" jdbcType="VARCHAR" property="typeName" />
<result column="STATUS_ID" jdbcType="NUMERIC" property="statusId" />
<result column="STATUS_CODE" jdbcType="VARCHAR" property="statusCode" />
<result column="STATUS_NAME" jdbcType="VARCHAR" property="statusName" />
<result column="SEND_NUM" jdbcType="NUMERIC" property="sendNum" />
<result column="SEND_TIME" jdbcType="TIMESTAMP" property="sendTime" />
......@@ -83,7 +83,7 @@
</where>
</sql>
<sql id="Base_Column_List">
ID, BIZ_ID, BIZ_CODE, TO_ADDRESS, CC_ADDRESS, SUBJECT, TYPE_ID, TYPE_NAME, STATUS_ID,
ID, BIZ_ID, BIZ_CODE, TO_ADDRESS, CC_ADDRESS, SUBJECT, TYPE_CODE, TYPE_NAME, STATUS_CODE,
STATUS_NAME, SEND_NUM, SEND_TIME, CREATE_TIME, CREATE_USER_ID, CREATE_USER_NAME,
MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME
</sql>
......@@ -148,14 +148,14 @@
</selectKey>
insert into T_LOG_EMAIL_HISTORY (ID, BIZ_ID, BIZ_CODE,
TO_ADDRESS, CC_ADDRESS, SUBJECT,
TYPE_ID, TYPE_NAME, STATUS_ID,
TYPE_CODE, TYPE_NAME, STATUS_CODE,
STATUS_NAME, SEND_NUM, SEND_TIME,
CREATE_TIME, CREATE_USER_ID, CREATE_USER_NAME,
MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME,
BODY)
values (#{id,jdbcType=NUMERIC}, #{bizId,jdbcType=NUMERIC}, #{bizCode,jdbcType=VARCHAR},
#{toAddress,jdbcType=VARCHAR}, #{ccAddress,jdbcType=VARCHAR}, #{subject,jdbcType=VARCHAR},
#{typeId,jdbcType=NUMERIC}, #{typeName,jdbcType=VARCHAR}, #{statusId,jdbcType=NUMERIC},
#{typeCode,jdbcType=VARCHAR}, #{typeName,jdbcType=VARCHAR}, #{statusCode,jdbcType=VARCHAR},
#{statusName,jdbcType=VARCHAR}, #{sendNum,jdbcType=NUMERIC}, #{sendTime,jdbcType=TIMESTAMP},
#{createTime,jdbcType=TIMESTAMP}, #{createUserId,jdbcType=NUMERIC}, #{createUserName,jdbcType=VARCHAR},
#{modifyTime,jdbcType=TIMESTAMP}, #{modifyUserId,jdbcType=NUMERIC}, #{modifyUserName,jdbcType=VARCHAR},
......@@ -183,14 +183,14 @@
<if test="subject != null">
SUBJECT,
</if>
<if test="typeId != null">
TYPE_ID,
<if test="typeCode != null">
TYPE_CODE,
</if>
<if test="typeName != null">
TYPE_NAME,
</if>
<if test="statusId != null">
STATUS_ID,
<if test="statusCode != null">
STATUS_CODE,
</if>
<if test="statusName != null">
STATUS_NAME,
......@@ -240,14 +240,14 @@
<if test="subject != null">
#{subject,jdbcType=VARCHAR},
</if>
<if test="typeId != null">
#{typeId,jdbcType=NUMERIC},
<if test="typeCode != null">
#{typeCode,jdbcType=VARCHAR},
</if>
<if test="typeName != null">
#{typeName,jdbcType=VARCHAR},
</if>
<if test="statusId != null">
#{statusId,jdbcType=NUMERIC},
<if test="statusCode != null">
#{statusCode,jdbcType=VARCHAR},
</if>
<if test="statusName != null">
#{statusName,jdbcType=VARCHAR},
......@@ -308,14 +308,14 @@
<if test="record.subject != null">
SUBJECT = #{record.subject,jdbcType=VARCHAR},
</if>
<if test="record.typeId != null">
TYPE_ID = #{record.typeId,jdbcType=NUMERIC},
<if test="record.typeCode != null">
TYPE_CODE = #{record.typeCode,jdbcType=VARCHAR},
</if>
<if test="record.typeName != null">
TYPE_NAME = #{record.typeName,jdbcType=VARCHAR},
</if>
<if test="record.statusId != null">
STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
<if test="record.statusCode != null">
STATUS_CODE = #{record.statusCode,jdbcType=VARCHAR},
</if>
<if test="record.statusName != null">
STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
......@@ -360,9 +360,9 @@
TO_ADDRESS = #{record.toAddress,jdbcType=VARCHAR},
CC_ADDRESS = #{record.ccAddress,jdbcType=VARCHAR},
SUBJECT = #{record.subject,jdbcType=VARCHAR},
TYPE_ID = #{record.typeId,jdbcType=NUMERIC},
TYPE_CODE = #{record.typeCode,jdbcType=VARCHAR},
TYPE_NAME = #{record.typeName,jdbcType=VARCHAR},
STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
STATUS_CODE = #{record.statusCode,jdbcType=VARCHAR},
STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
SEND_NUM = #{record.sendNum,jdbcType=NUMERIC},
SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
......@@ -385,9 +385,9 @@
TO_ADDRESS = #{record.toAddress,jdbcType=VARCHAR},
CC_ADDRESS = #{record.ccAddress,jdbcType=VARCHAR},
SUBJECT = #{record.subject,jdbcType=VARCHAR},
TYPE_ID = #{record.typeId,jdbcType=NUMERIC},
TYPE_CODE = #{record.typeCode,jdbcType=VARCHAR},
TYPE_NAME = #{record.typeName,jdbcType=VARCHAR},
STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
STATUS_CODE = #{record.statusCode,jdbcType=VARCHAR},
STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
SEND_NUM = #{record.sendNum,jdbcType=NUMERIC},
SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
......@@ -419,14 +419,14 @@
<if test="subject != null">
SUBJECT = #{subject,jdbcType=VARCHAR},
</if>
<if test="typeId != null">
TYPE_ID = #{typeId,jdbcType=NUMERIC},
<if test="typeCode != null">
TYPE_CODE = #{typeCode,jdbcType=VARCHAR},
</if>
<if test="typeName != null">
TYPE_NAME = #{typeName,jdbcType=VARCHAR},
</if>
<if test="statusId != null">
STATUS_ID = #{statusId,jdbcType=NUMERIC},
<if test="statusCode != null">
STATUS_CODE = #{statusCode,jdbcType=VARCHAR},
</if>
<if test="statusName != null">
STATUS_NAME = #{statusName,jdbcType=VARCHAR},
......@@ -468,9 +468,9 @@
TO_ADDRESS = #{toAddress,jdbcType=VARCHAR},
CC_ADDRESS = #{ccAddress,jdbcType=VARCHAR},
SUBJECT = #{subject,jdbcType=VARCHAR},
TYPE_ID = #{typeId,jdbcType=NUMERIC},
TYPE_CODE = #{typeCode,jdbcType=VARCHAR},
TYPE_NAME = #{typeName,jdbcType=VARCHAR},
STATUS_ID = #{statusId,jdbcType=NUMERIC},
STATUS_CODE = #{statusCode,jdbcType=VARCHAR},
STATUS_NAME = #{statusName,jdbcType=VARCHAR},
SEND_NUM = #{sendNum,jdbcType=NUMERIC},
SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
......@@ -490,9 +490,9 @@
TO_ADDRESS = #{toAddress,jdbcType=VARCHAR},
CC_ADDRESS = #{ccAddress,jdbcType=VARCHAR},
SUBJECT = #{subject,jdbcType=VARCHAR},
TYPE_ID = #{typeId,jdbcType=NUMERIC},
TYPE_CODE = #{typeCode,jdbcType=VARCHAR},
TYPE_NAME = #{typeName,jdbcType=VARCHAR},
STATUS_ID = #{statusId,jdbcType=NUMERIC},
STATUS_CODE = #{statusCode,jdbcType=VARCHAR},
STATUS_NAME = #{statusName,jdbcType=VARCHAR},
SEND_NUM = #{sendNum,jdbcType=NUMERIC},
SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
......
......@@ -4,7 +4,7 @@
<resultMap id="BaseResultMap" type="com.fedex.connect.common.model.log.UserLoginInfo">
<id column="ID" jdbcType="NUMERIC" property="id" />
<result column="USER_ID" jdbcType="NUMERIC" property="userId" />
<result column="OPER_TYPE_ID" jdbcType="NUMERIC" property="operTypeId" />
<result column="OPER_TYPE_CODE" jdbcType="VARCHAR" property="operTypeCode" />
<result column="OPER_TYPE_NAME" jdbcType="VARCHAR" property="operTypeName" />
<result column="OPER_DESC" jdbcType="VARCHAR" property="operDesc" />
<result column="IP" jdbcType="VARCHAR" property="ip" />
......@@ -74,7 +74,7 @@
</where>
</sql>
<sql id="Base_Column_List">
ID, USER_ID, OPER_TYPE_ID, OPER_TYPE_NAME, OPER_DESC, IP, CREATE_TIME, CREATE_USER_ID,
ID, USER_ID, OPER_TYPE_CODE, OPER_TYPE_NAME, OPER_DESC, IP, CREATE_TIME, CREATE_USER_ID,
CREATE_USER_NAME, MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME
</sql>
<select id="selectByExample" parameterType="com.fedex.connect.common.model.log.UserLoginInfoExample" resultMap="BaseResultMap">
......@@ -114,12 +114,12 @@
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_LOG_USER_LOGIN_INFO.NEXTVAL FROM DUAL
</selectKey>
insert into T_LOG_USER_LOGIN_INFO (ID, USER_ID, OPER_TYPE_ID,
insert into T_LOG_USER_LOGIN_INFO (ID, USER_ID, OPER_TYPE_CODE,
OPER_TYPE_NAME, OPER_DESC, IP,
CREATE_TIME, CREATE_USER_ID, CREATE_USER_NAME,
MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME
)
values (#{id,jdbcType=NUMERIC}, #{userId,jdbcType=NUMERIC}, #{operTypeId,jdbcType=NUMERIC},
values (#{id,jdbcType=NUMERIC}, #{userId,jdbcType=NUMERIC}, #{operTypeCode,jdbcType=VARCHAR},
#{operTypeName,jdbcType=VARCHAR}, #{operDesc,jdbcType=VARCHAR}, #{ip,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP}, #{createUserId,jdbcType=NUMERIC}, #{createUserName,jdbcType=VARCHAR},
#{modifyTime,jdbcType=TIMESTAMP}, #{modifyUserId,jdbcType=NUMERIC}, #{modifyUserName,jdbcType=VARCHAR}
......@@ -135,8 +135,8 @@
<if test="userId != null">
USER_ID,
</if>
<if test="operTypeId != null">
OPER_TYPE_ID,
<if test="operTypeCode != null">
OPER_TYPE_CODE,
</if>
<if test="operTypeName != null">
OPER_TYPE_NAME,
......@@ -171,8 +171,8 @@
<if test="userId != null">
#{userId,jdbcType=NUMERIC},
</if>
<if test="operTypeId != null">
#{operTypeId,jdbcType=NUMERIC},
<if test="operTypeCode != null">
#{operTypeCode,jdbcType=VARCHAR},
</if>
<if test="operTypeName != null">
#{operTypeName,jdbcType=VARCHAR},
......@@ -218,8 +218,8 @@
<if test="record.userId != null">
USER_ID = #{record.userId,jdbcType=NUMERIC},
</if>
<if test="record.operTypeId != null">
OPER_TYPE_ID = #{record.operTypeId,jdbcType=NUMERIC},
<if test="record.operTypeCode != null">
OPER_TYPE_CODE = #{record.operTypeCode,jdbcType=VARCHAR},
</if>
<if test="record.operTypeName != null">
OPER_TYPE_NAME = #{record.operTypeName,jdbcType=VARCHAR},
......@@ -257,7 +257,7 @@
update T_LOG_USER_LOGIN_INFO
set ID = #{record.id,jdbcType=NUMERIC},
USER_ID = #{record.userId,jdbcType=NUMERIC},
OPER_TYPE_ID = #{record.operTypeId,jdbcType=NUMERIC},
OPER_TYPE_CODE = #{record.operTypeCode,jdbcType=VARCHAR},
OPER_TYPE_NAME = #{record.operTypeName,jdbcType=VARCHAR},
OPER_DESC = #{record.operDesc,jdbcType=VARCHAR},
IP = #{record.ip,jdbcType=VARCHAR},
......@@ -277,8 +277,8 @@
<if test="userId != null">
USER_ID = #{userId,jdbcType=NUMERIC},
</if>
<if test="operTypeId != null">
OPER_TYPE_ID = #{operTypeId,jdbcType=NUMERIC},
<if test="operTypeCode != null">
OPER_TYPE_CODE = #{operTypeCode,jdbcType=VARCHAR},
</if>
<if test="operTypeName != null">
OPER_TYPE_NAME = #{operTypeName,jdbcType=VARCHAR},
......@@ -313,7 +313,7 @@
<update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.log.UserLoginInfo">
update T_LOG_USER_LOGIN_INFO
set USER_ID = #{userId,jdbcType=NUMERIC},
OPER_TYPE_ID = #{operTypeId,jdbcType=NUMERIC},
OPER_TYPE_CODE = #{operTypeCode,jdbcType=VARCHAR},
OPER_TYPE_NAME = #{operTypeName,jdbcType=VARCHAR},
OPER_DESC = #{operDesc,jdbcType=VARCHAR},
IP = #{ip,jdbcType=VARCHAR},
......
......@@ -98,7 +98,7 @@
<include refid="Base_Column_List" />
,
<include refid="Blob_Column_List" />
from T_SYS_KAFKA_TEMPORARY_STORAGE
from ICLEARIMP.T_SYS_KAFKA_TEMPORARY_STORAGE
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
......@@ -114,7 +114,7 @@
</if>
'true' as QUERYID,
<include refid="Base_Column_List" />
from T_SYS_KAFKA_TEMPORARY_STORAGE
from ICLEARIMP.T_SYS_KAFKA_TEMPORARY_STORAGE
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
......@@ -128,15 +128,15 @@
<include refid="Base_Column_List" />
,
<include refid="Blob_Column_List" />
from T_SYS_KAFKA_TEMPORARY_STORAGE
from ICLEARIMP.T_SYS_KAFKA_TEMPORARY_STORAGE
where ID = #{id,jdbcType=NUMERIC}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
delete from T_SYS_KAFKA_TEMPORARY_STORAGE
delete from ICLEARIMP.T_SYS_KAFKA_TEMPORARY_STORAGE
where ID = #{id,jdbcType=NUMERIC}
</delete>
<delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.KafkaTemporaryStorageExample">
delete from T_SYS_KAFKA_TEMPORARY_STORAGE
delete from ICLEARIMP.T_SYS_KAFKA_TEMPORARY_STORAGE
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
......@@ -145,7 +145,7 @@
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_SYS_KAFKA_TEMPORARY_STORAGE.NEXTVAL FROM DUAL
</selectKey>
insert into T_SYS_KAFKA_TEMPORARY_STORAGE (ID, MESSAGE_ID, MESSAGE_CODE,
insert into ICLEARIMP.T_SYS_KAFKA_TEMPORARY_STORAGE (ID, MESSAGE_ID, MESSAGE_CODE,
SENDER_ID, RECEIVER_ID, SEND_TIME,
CONSIGNMENT_CODE, FREQUENCY, STATUS,
STATUS_NAME, REMARK, CREATE_TIME,
......@@ -164,7 +164,7 @@
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_SYS_KAFKA_TEMPORARY_STORAGE.NEXTVAL FROM DUAL
</selectKey>
insert into T_SYS_KAFKA_TEMPORARY_STORAGE
insert into ICLEARIMP.T_SYS_KAFKA_TEMPORARY_STORAGE
<trim prefix="(" suffix=")" suffixOverrides=",">
ID,
<if test="messageId != null">
......@@ -275,13 +275,13 @@
</trim>
</insert>
<select id="countByExample" parameterType="com.fedex.connect.common.model.sys.KafkaTemporaryStorageExample" resultType="java.lang.Long">
select count(*) from T_SYS_KAFKA_TEMPORARY_STORAGE
select count(*) from ICLEARIMP.T_SYS_KAFKA_TEMPORARY_STORAGE
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</select>
<update id="updateByExampleSelective" parameterType="map">
update T_SYS_KAFKA_TEMPORARY_STORAGE
update ICLEARIMP.T_SYS_KAFKA_TEMPORARY_STORAGE
<set>
<if test="record.id != null">
ID = #{record.id,jdbcType=NUMERIC},
......@@ -343,7 +343,7 @@
</if>
</update>
<update id="updateByExampleWithBLOBs" parameterType="map">
update T_SYS_KAFKA_TEMPORARY_STORAGE
update ICLEARIMP.T_SYS_KAFKA_TEMPORARY_STORAGE
set ID = #{record.id,jdbcType=NUMERIC},
MESSAGE_ID = #{record.messageId,jdbcType=VARCHAR},
MESSAGE_CODE = #{record.messageCode,jdbcType=VARCHAR},
......@@ -367,7 +367,7 @@
</if>
</update>
<update id="updateByExample" parameterType="map">
update T_SYS_KAFKA_TEMPORARY_STORAGE
update ICLEARIMP.T_SYS_KAFKA_TEMPORARY_STORAGE
set ID = #{record.id,jdbcType=NUMERIC},
MESSAGE_ID = #{record.messageId,jdbcType=VARCHAR},
MESSAGE_CODE = #{record.messageCode,jdbcType=VARCHAR},
......@@ -390,7 +390,7 @@
</if>
</update>
<update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.KafkaTemporaryStorage">
update T_SYS_KAFKA_TEMPORARY_STORAGE
update ICLEARIMP.T_SYS_KAFKA_TEMPORARY_STORAGE
<set>
<if test="messageId != null">
MESSAGE_ID = #{messageId,jdbcType=VARCHAR},
......@@ -447,7 +447,7 @@
where ID = #{id,jdbcType=NUMERIC}
</update>
<update id="updateByPrimaryKeyWithBLOBs" parameterType="com.fedex.connect.common.model.sys.KafkaTemporaryStorage">
update T_SYS_KAFKA_TEMPORARY_STORAGE
update ICLEARIMP.T_SYS_KAFKA_TEMPORARY_STORAGE
set MESSAGE_ID = #{messageId,jdbcType=VARCHAR},
MESSAGE_CODE = #{messageCode,jdbcType=VARCHAR},
SENDER_ID = #{senderId,jdbcType=VARCHAR},
......@@ -468,7 +468,7 @@
where ID = #{id,jdbcType=NUMERIC}
</update>
<update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.KafkaTemporaryStorage">
update T_SYS_KAFKA_TEMPORARY_STORAGE
update ICLEARIMP.T_SYS_KAFKA_TEMPORARY_STORAGE
set MESSAGE_ID = #{messageId,jdbcType=VARCHAR},
MESSAGE_CODE = #{messageCode,jdbcType=VARCHAR},
SENDER_ID = #{senderId,jdbcType=VARCHAR},
......
......@@ -6,7 +6,7 @@
<result column="CODE" jdbcType="VARCHAR" property="code" />
<result column="NAME" jdbcType="VARCHAR" property="name" />
<result column="VALUE" jdbcType="VARCHAR" property="value" />
<result column="TYPE_ID" jdbcType="NUMERIC" property="typeId" />
<result column="TYPE_CODE" jdbcType="VARCHAR" property="typeCode" />
<result column="TYPE_NAME" jdbcType="VARCHAR" property="typeName" />
<result column="STATUS" jdbcType="NUMERIC" property="status" />
<result column="DESCRIPTION" jdbcType="VARCHAR" property="description" />
......@@ -76,7 +76,7 @@
</where>
</sql>
<sql id="Base_Column_List">
ID, CODE, NAME, VALUE, TYPE_ID, TYPE_NAME, STATUS, DESCRIPTION, CREATE_TIME, CREATE_USER_ID,
ID, CODE, NAME, VALUE, TYPE_CODE, TYPE_NAME, STATUS, DESCRIPTION, CREATE_TIME, CREATE_USER_ID,
CREATE_USER_NAME, MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME
</sql>
<select id="selectByExample" parameterType="com.fedex.connect.common.model.sys.ParamConfigExample" resultMap="BaseResultMap">
......@@ -117,12 +117,12 @@
SELECT SEQ_T_SYS_PARAM_CONFIG.NEXTVAL FROM DUAL
</selectKey>
insert into ICLEARIMP.T_SYS_PARAM_CONFIG (ID, CODE, NAME,
VALUE, TYPE_ID, TYPE_NAME,
VALUE, TYPE_CODE, TYPE_NAME,
STATUS, DESCRIPTION, CREATE_TIME,
CREATE_USER_ID, CREATE_USER_NAME, MODIFY_TIME,
MODIFY_USER_ID, MODIFY_USER_NAME)
values (#{id,jdbcType=NUMERIC}, #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
#{value,jdbcType=VARCHAR}, #{typeId,jdbcType=NUMERIC}, #{typeName,jdbcType=VARCHAR},
#{value,jdbcType=VARCHAR}, #{typeCode,jdbcType=VARCHAR}, #{typeName,jdbcType=VARCHAR},
#{status,jdbcType=NUMERIC}, #{description,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP},
#{createUserId,jdbcType=NUMERIC}, #{createUserName,jdbcType=VARCHAR}, #{modifyTime,jdbcType=TIMESTAMP},
#{modifyUserId,jdbcType=NUMERIC}, #{modifyUserName,jdbcType=VARCHAR})
......@@ -143,8 +143,8 @@
<if test="value != null">
VALUE,
</if>
<if test="typeId != null">
TYPE_ID,
<if test="typeCode != null">
TYPE_CODE,
</if>
<if test="typeName != null">
TYPE_NAME,
......@@ -185,8 +185,8 @@
<if test="value != null">
#{value,jdbcType=VARCHAR},
</if>
<if test="typeId != null">
#{typeId,jdbcType=NUMERIC},
<if test="typeCode != null">
#{typeCode,jdbcType=VARCHAR},
</if>
<if test="typeName != null">
#{typeName,jdbcType=VARCHAR},
......@@ -238,8 +238,8 @@
<if test="record.value != null">
VALUE = #{record.value,jdbcType=VARCHAR},
</if>
<if test="record.typeId != null">
TYPE_ID = #{record.typeId,jdbcType=NUMERIC},
<if test="record.typeCode != null">
TYPE_CODE = #{record.typeCode,jdbcType=VARCHAR},
</if>
<if test="record.typeName != null">
TYPE_NAME = #{record.typeName,jdbcType=VARCHAR},
......@@ -279,7 +279,7 @@
CODE = #{record.code,jdbcType=VARCHAR},
NAME = #{record.name,jdbcType=VARCHAR},
VALUE = #{record.value,jdbcType=VARCHAR},
TYPE_ID = #{record.typeId,jdbcType=NUMERIC},
TYPE_CODE = #{record.typeCode,jdbcType=VARCHAR},
TYPE_NAME = #{record.typeName,jdbcType=VARCHAR},
STATUS = #{record.status,jdbcType=NUMERIC},
DESCRIPTION = #{record.description,jdbcType=VARCHAR},
......@@ -305,8 +305,8 @@
<if test="value != null">
VALUE = #{value,jdbcType=VARCHAR},
</if>
<if test="typeId != null">
TYPE_ID = #{typeId,jdbcType=NUMERIC},
<if test="typeCode != null">
TYPE_CODE = #{typeCode,jdbcType=VARCHAR},
</if>
<if test="typeName != null">
TYPE_NAME = #{typeName,jdbcType=VARCHAR},
......@@ -343,7 +343,7 @@
set CODE = #{code,jdbcType=VARCHAR},
NAME = #{name,jdbcType=VARCHAR},
VALUE = #{value,jdbcType=VARCHAR},
TYPE_ID = #{typeId,jdbcType=NUMERIC},
TYPE_CODE = #{typeCode,jdbcType=VARCHAR},
TYPE_NAME = #{typeName,jdbcType=VARCHAR},
STATUS = #{status,jdbcType=NUMERIC},
DESCRIPTION = #{description,jdbcType=VARCHAR},
......
......@@ -6,7 +6,7 @@
<result column="CODE" jdbcType="VARCHAR" property="code" />
<result column="NAME" jdbcType="VARCHAR" property="name" />
<result column="ROLE_DESC" jdbcType="VARCHAR" property="roleDesc" />
<result column="TYPE_ID" jdbcType="NUMERIC" property="typeId" />
<result column="TYPE_CODE" jdbcType="VARCHAR" property="typeCode" />
<result column="TYPE_NAME" jdbcType="VARCHAR" property="typeName" />
<result column="STATUS" jdbcType="NUMERIC" property="status" />
<result column="CREATE_TIME" jdbcType="TIMESTAMP" property="createTime" />
......@@ -75,7 +75,7 @@
</where>
</sql>
<sql id="Base_Column_List">
ID, CODE, NAME, ROLE_DESC, TYPE_ID, TYPE_NAME, STATUS, CREATE_TIME, CREATE_USER_ID,
ID, CODE, NAME, ROLE_DESC, TYPE_CODE, TYPE_NAME, STATUS, CREATE_TIME, CREATE_USER_ID,
CREATE_USER_NAME, MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME
</sql>
<select id="selectByExample" parameterType="com.fedex.connect.common.model.sys.RoleExample" resultMap="BaseResultMap">
......@@ -116,12 +116,12 @@
SELECT SEQ_T_SYS_ROLE.NEXTVAL FROM DUAL
</selectKey>
insert into T_SYS_ROLE (ID, CODE, NAME,
ROLE_DESC, TYPE_ID, TYPE_NAME,
ROLE_DESC, TYPE_CODE, TYPE_NAME,
STATUS, CREATE_TIME, CREATE_USER_ID,
CREATE_USER_NAME, MODIFY_TIME, MODIFY_USER_ID,
MODIFY_USER_NAME)
values (#{id,jdbcType=NUMERIC}, #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
#{roleDesc,jdbcType=VARCHAR}, #{typeId,jdbcType=NUMERIC}, #{typeName,jdbcType=VARCHAR},
#{roleDesc,jdbcType=VARCHAR}, #{typeCode,jdbcType=VARCHAR}, #{typeName,jdbcType=VARCHAR},
#{status,jdbcType=NUMERIC}, #{createTime,jdbcType=TIMESTAMP}, #{createUserId,jdbcType=NUMERIC},
#{createUserName,jdbcType=VARCHAR}, #{modifyTime,jdbcType=TIMESTAMP}, #{modifyUserId,jdbcType=NUMERIC},
#{modifyUserName,jdbcType=VARCHAR})
......@@ -142,8 +142,8 @@
<if test="roleDesc != null">
ROLE_DESC,
</if>
<if test="typeId != null">
TYPE_ID,
<if test="typeCode != null">
TYPE_CODE,
</if>
<if test="typeName != null">
TYPE_NAME,
......@@ -181,8 +181,8 @@
<if test="roleDesc != null">
#{roleDesc,jdbcType=VARCHAR},
</if>
<if test="typeId != null">
#{typeId,jdbcType=NUMERIC},
<if test="typeCode != null">
#{typeCode,jdbcType=VARCHAR},
</if>
<if test="typeName != null">
#{typeName,jdbcType=VARCHAR},
......@@ -231,8 +231,8 @@
<if test="record.roleDesc != null">
ROLE_DESC = #{record.roleDesc,jdbcType=VARCHAR},
</if>
<if test="record.typeId != null">
TYPE_ID = #{record.typeId,jdbcType=NUMERIC},
<if test="record.typeCode != null">
TYPE_CODE = #{record.typeCode,jdbcType=VARCHAR},
</if>
<if test="record.typeName != null">
TYPE_NAME = #{record.typeName,jdbcType=VARCHAR},
......@@ -269,7 +269,7 @@
CODE = #{record.code,jdbcType=VARCHAR},
NAME = #{record.name,jdbcType=VARCHAR},
ROLE_DESC = #{record.roleDesc,jdbcType=VARCHAR},
TYPE_ID = #{record.typeId,jdbcType=NUMERIC},
TYPE_CODE = #{record.typeCode,jdbcType=VARCHAR},
TYPE_NAME = #{record.typeName,jdbcType=VARCHAR},
STATUS = #{record.status,jdbcType=NUMERIC},
CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
......@@ -294,8 +294,8 @@
<if test="roleDesc != null">
ROLE_DESC = #{roleDesc,jdbcType=VARCHAR},
</if>
<if test="typeId != null">
TYPE_ID = #{typeId,jdbcType=NUMERIC},
<if test="typeCode != null">
TYPE_CODE = #{typeCode,jdbcType=VARCHAR},
</if>
<if test="typeName != null">
TYPE_NAME = #{typeName,jdbcType=VARCHAR},
......@@ -329,7 +329,7 @@
set CODE = #{code,jdbcType=VARCHAR},
NAME = #{name,jdbcType=VARCHAR},
ROLE_DESC = #{roleDesc,jdbcType=VARCHAR},
TYPE_ID = #{typeId,jdbcType=NUMERIC},
TYPE_CODE = #{typeCode,jdbcType=VARCHAR},
TYPE_NAME = #{typeName,jdbcType=VARCHAR},
STATUS = #{status,jdbcType=NUMERIC},
CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
......
......@@ -13,7 +13,7 @@
<result column="ACCOUNT_NO" jdbcType="VARCHAR" property="accountNo" />
<result column="UNIFIED_BUSINESS_NUM" jdbcType="VARCHAR" property="unifiedBusinessNum" />
<result column="CUSTOMS_SERIAL_NUM" jdbcType="VARCHAR" property="customsSerialNum" />
<result column="TYPE_ID" jdbcType="NUMERIC" property="typeId" />
<result column="TYPE_CODE" jdbcType="VARCHAR" property="typeCode" />
<result column="TYPE_NAME" jdbcType="VARCHAR" property="typeName" />
<result column="STATUS" jdbcType="NUMERIC" property="status" />
<result column="REMARK" jdbcType="VARCHAR" property="remark" />
......@@ -85,7 +85,7 @@
</sql>
<sql id="Base_Column_List">
ID, LOGIN_NAME, USER_NAME, PASSWORD, USER_UUID, EMAIL, PHONE, COMPANY_NAME, ACCOUNT_NO,
UNIFIED_BUSINESS_NUM, CUSTOMS_SERIAL_NUM, TYPE_ID, TYPE_NAME, STATUS, REMARK, CREATE_TIME,
UNIFIED_BUSINESS_NUM, CUSTOMS_SERIAL_NUM, TYPE_CODE, TYPE_NAME, STATUS, REMARK, CREATE_TIME,
CREATE_USER_ID, CREATE_USER_NAME, MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME,
CONFIRM_PROMPTS
</sql>
......@@ -129,7 +129,7 @@
insert into ICLEARIMP.T_SYS_USER (ID, LOGIN_NAME, USER_NAME,
PASSWORD, USER_UUID, EMAIL,
PHONE, COMPANY_NAME, ACCOUNT_NO,
UNIFIED_BUSINESS_NUM, CUSTOMS_SERIAL_NUM, TYPE_ID,
UNIFIED_BUSINESS_NUM, CUSTOMS_SERIAL_NUM, TYPE_CODE,
TYPE_NAME, STATUS, REMARK,
CREATE_TIME, CREATE_USER_ID, CREATE_USER_NAME,
MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME,
......@@ -137,7 +137,7 @@
values (#{id,jdbcType=NUMERIC}, #{loginName,jdbcType=VARCHAR}, #{userName,jdbcType=VARCHAR},
#{password,jdbcType=VARCHAR}, #{userUuid,jdbcType=VARCHAR}, #{email,jdbcType=VARCHAR},
#{phone,jdbcType=VARCHAR}, #{companyName,jdbcType=VARCHAR}, #{accountNo,jdbcType=VARCHAR},
#{unifiedBusinessNum,jdbcType=VARCHAR}, #{customsSerialNum,jdbcType=VARCHAR}, #{typeId,jdbcType=NUMERIC},
#{unifiedBusinessNum,jdbcType=VARCHAR}, #{customsSerialNum,jdbcType=VARCHAR}, #{typeCode,jdbcType=VARCHAR},
#{typeName,jdbcType=VARCHAR}, #{status,jdbcType=NUMERIC}, #{remark,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP}, #{createUserId,jdbcType=NUMERIC}, #{createUserName,jdbcType=VARCHAR},
#{modifyTime,jdbcType=TIMESTAMP}, #{modifyUserId,jdbcType=NUMERIC}, #{modifyUserName,jdbcType=VARCHAR},
......@@ -180,8 +180,8 @@
<if test="customsSerialNum != null">
CUSTOMS_SERIAL_NUM,
</if>
<if test="typeId != null">
TYPE_ID,
<if test="typeCode != null">
TYPE_CODE,
</if>
<if test="typeName != null">
TYPE_NAME,
......@@ -246,8 +246,8 @@
<if test="customsSerialNum != null">
#{customsSerialNum,jdbcType=VARCHAR},
</if>
<if test="typeId != null">
#{typeId,jdbcType=NUMERIC},
<if test="typeCode != null">
#{typeCode,jdbcType=VARCHAR},
</if>
<if test="typeName != null">
#{typeName,jdbcType=VARCHAR},
......@@ -323,8 +323,8 @@
<if test="record.customsSerialNum != null">
CUSTOMS_SERIAL_NUM = #{record.customsSerialNum,jdbcType=VARCHAR},
</if>
<if test="record.typeId != null">
TYPE_ID = #{record.typeId,jdbcType=NUMERIC},
<if test="record.typeCode != null">
TYPE_CODE = #{record.typeCode,jdbcType=VARCHAR},
</if>
<if test="record.typeName != null">
TYPE_NAME = #{record.typeName,jdbcType=VARCHAR},
......@@ -374,7 +374,7 @@
ACCOUNT_NO = #{record.accountNo,jdbcType=VARCHAR},
UNIFIED_BUSINESS_NUM = #{record.unifiedBusinessNum,jdbcType=VARCHAR},
CUSTOMS_SERIAL_NUM = #{record.customsSerialNum,jdbcType=VARCHAR},
TYPE_ID = #{record.typeId,jdbcType=NUMERIC},
TYPE_CODE = #{record.typeCode,jdbcType=VARCHAR},
TYPE_NAME = #{record.typeName,jdbcType=VARCHAR},
STATUS = #{record.status,jdbcType=NUMERIC},
REMARK = #{record.remark,jdbcType=VARCHAR},
......@@ -422,8 +422,8 @@
<if test="customsSerialNum != null">
CUSTOMS_SERIAL_NUM = #{customsSerialNum,jdbcType=VARCHAR},
</if>
<if test="typeId != null">
TYPE_ID = #{typeId,jdbcType=NUMERIC},
<if test="typeCode != null">
TYPE_CODE = #{typeCode,jdbcType=VARCHAR},
</if>
<if test="typeName != null">
TYPE_NAME = #{typeName,jdbcType=VARCHAR},
......@@ -470,7 +470,7 @@
ACCOUNT_NO = #{accountNo,jdbcType=VARCHAR},
UNIFIED_BUSINESS_NUM = #{unifiedBusinessNum,jdbcType=VARCHAR},
CUSTOMS_SERIAL_NUM = #{customsSerialNum,jdbcType=VARCHAR},
TYPE_ID = #{typeId,jdbcType=NUMERIC},
TYPE_CODE = #{typeCode,jdbcType=VARCHAR},
TYPE_NAME = #{typeName,jdbcType=VARCHAR},
STATUS = #{status,jdbcType=NUMERIC},
REMARK = #{remark,jdbcType=VARCHAR},
......
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.fedex.connect.common.dao.sys.RedisSlabMapper">
<resultMap id="BaseResultMap" type="com.fedex.connect.common.model.sys.RedisSlab">
<mapper namespace="com.fedex.connect.common.dao.sys.redisSlabMapper">
<resultMap id="BaseResultMap" type="com.fedex.connect.common.model.sys.redisSlab">
<id column="ID" jdbcType="NUMERIC" property="id" />
<result column="REDIS_KEY" jdbcType="VARCHAR" property="redisKey" />
<result column="REDIS_MSG" jdbcType="VARCHAR" property="redisMsg" />
......@@ -76,7 +76,7 @@
ID, REDIS_KEY, REDIS_MSG, VALID_DURATION, DIS_TIME, CREATE_TIME, CREATE_USER_ID,
CREATE_USER_NAME, MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME
</sql>
<select id="selectByExample" parameterType="com.fedex.connect.common.model.sys.RedisSlabExample" resultMap="BaseResultMap">
<select id="selectByExample" parameterType="com.fedex.connect.common.model.sys.redisSlabExample" resultMap="BaseResultMap">
<include refid="OracleDialectPrefix" />
select
<if test="distinct">
......@@ -103,13 +103,13 @@
delete from T_SYS_REDIS_SLAB
where ID = #{id,jdbcType=NUMERIC}
</delete>
<delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.RedisSlabExample">
<delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.redisSlabExample">
delete from T_SYS_REDIS_SLAB
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</delete>
<insert id="insert" parameterType="com.fedex.connect.common.model.sys.RedisSlab">
<insert id="insert" parameterType="com.fedex.connect.common.model.sys.redisSlab">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_SYS_REDIS_SLAB.NEXTVAL FROM DUAL
</selectKey>
......@@ -122,7 +122,7 @@
#{createUserId,jdbcType=NUMERIC}, #{createUserName,jdbcType=VARCHAR}, #{modifyTime,jdbcType=TIMESTAMP},
#{modifyUserId,jdbcType=NUMERIC}, #{modifyUserName,jdbcType=VARCHAR})
</insert>
<insert id="insertSelective" parameterType="com.fedex.connect.common.model.sys.RedisSlab">
<insert id="insertSelective" parameterType="com.fedex.connect.common.model.sys.redisSlab">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_SYS_REDIS_SLAB.NEXTVAL FROM DUAL
</selectKey>
......@@ -194,7 +194,7 @@
</if>
</trim>
</insert>
<select id="countByExample" parameterType="com.fedex.connect.common.model.sys.RedisSlabExample" resultType="java.lang.Long">
<select id="countByExample" parameterType="com.fedex.connect.common.model.sys.redisSlabExample" resultType="java.lang.Long">
select count(*) from T_SYS_REDIS_SLAB
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
......@@ -258,7 +258,7 @@
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.RedisSlab">
<update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.redisSlab">
update T_SYS_REDIS_SLAB
<set>
<if test="redisKey != null">
......@@ -294,7 +294,7 @@
</set>
where ID = #{id,jdbcType=NUMERIC}
</update>
<update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.RedisSlab">
<update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.redisSlab">
update T_SYS_REDIS_SLAB
set REDIS_KEY = #{redisKey,jdbcType=VARCHAR},
REDIS_MSG = #{redisMsg,jdbcType=VARCHAR},
......
package com.fedex.connect.common.model.bi;
\ No newline at end of file
......@@ -19,10 +19,10 @@ public class Attachment implements Serializable {
private Long bizId;
/**
* 业务类型ID
* 业务类型CODE
关联数据字典表。指定字典目录CODE:ATTACHMENT_BIZ_TYPE
*/
private Long bizTypeId;
private String bizTypeCode;
/**
* 业务类型名称(用户上传、系统生成)
......@@ -45,9 +45,9 @@ public class Attachment implements Serializable {
private String filePath;
/**
* 文件类型ID。关联数据字典表。指定字典目录CODE:ATTACHMENT_FILE_TYPE
* 文件类型CODE。关联数据字典表。指定字典目录CODE:ATTACHMENT_FILE_TYPE
*/
private Long fileTypeId;
private String fileTypeCode;
/**
* 文件类型名称(压缩包、PDF)
......@@ -94,6 +94,11 @@ public class Attachment implements Serializable {
*/
private Long uploadRecordId;
/**
* 文件大小byte
*/
private Long fileSize;
private static final long serialVersionUID = 1L;
public Long getId() {
......@@ -112,12 +117,12 @@ public class Attachment implements Serializable {
this.bizId = bizId;
}
public Long getBizTypeId() {
return bizTypeId;
public String getBizTypeCode() {
return bizTypeCode;
}
public void setBizTypeId(Long bizTypeId) {
this.bizTypeId = bizTypeId;
public void setBizTypeCode(String bizTypeCode) {
this.bizTypeCode = bizTypeCode == null ? null : bizTypeCode.trim();
}
public String getBizTypeName() {
......@@ -152,12 +157,12 @@ public class Attachment implements Serializable {
this.filePath = filePath == null ? null : filePath.trim();
}
public Long getFileTypeId() {
return fileTypeId;
public String getFileTypeCode() {
return fileTypeCode;
}
public void setFileTypeId(Long fileTypeId) {
this.fileTypeId = fileTypeId;
public void setFileTypeCode(String fileTypeCode) {
this.fileTypeCode = fileTypeCode == null ? null : fileTypeCode.trim();
}
public String getFileTypeName() {
......@@ -232,6 +237,14 @@ public class Attachment implements Serializable {
this.uploadRecordId = uploadRecordId;
}
public Long getFileSize() {
return fileSize;
}
public void setFileSize(Long fileSize) {
this.fileSize = fileSize;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
......@@ -240,12 +253,12 @@ public class Attachment implements Serializable {
sb.append("Hash = ").append(hashCode());
sb.append(", id=").append(id);
sb.append(", bizId=").append(bizId);
sb.append(", bizTypeId=").append(bizTypeId);
sb.append(", bizTypeCode=").append(bizTypeCode);
sb.append(", bizTypeName=").append(bizTypeName);
sb.append(", sourceFileName=").append(sourceFileName);
sb.append(", fileName=").append(fileName);
sb.append(", filePath=").append(filePath);
sb.append(", fileTypeId=").append(fileTypeId);
sb.append(", fileTypeCode=").append(fileTypeCode);
sb.append(", fileTypeName=").append(fileTypeName);
sb.append(", status=").append(status);
sb.append(", createTime=").append(createTime);
......@@ -255,6 +268,7 @@ public class Attachment implements Serializable {
sb.append(", modifyUserId=").append(modifyUserId);
sb.append(", modifyUserName=").append(modifyUserName);
sb.append(", uploadRecordId=").append(uploadRecordId);
sb.append(", fileSize=").append(fileSize);
sb.append(", serialVersionUID=").append(serialVersionUID);
sb.append("]");
return sb.toString();
......
......@@ -30,16 +30,6 @@ public class CeInfo implements Serializable {
private Date shipDate;
/**
* 发货人国家
*/
private String shipperCountry;
/**
* 收件人国家
*/
private String recipientCountry;
/**
* 目的国口岸
*/
private String destIataCode;
......@@ -75,16 +65,6 @@ public class CeInfo implements Serializable {
private String modifyUserName;
/**
* 原产国全称
*/
private String originCountry;
/**
* 目的国全称
*/
private String destinationCountry;
/**
* 申报币制
*/
private String customsCurrency;
......@@ -194,6 +174,26 @@ public class CeInfo implements Serializable {
*/
private String docNondocFlag;
/**
* 用户UUID
*/
private String userUuid;
/**
* 发件人邮箱
*/
private String shipperEmail;
/**
* 发货人国家二字码
*/
private String shipperCountry;
/**
* 收件人国家二字码
*/
private String recipientCountry;
private static final long serialVersionUID = 1L;
public Long getId() {
......@@ -228,22 +228,6 @@ public class CeInfo implements Serializable {
this.shipDate = shipDate;
}
public String getShipperCountry() {
return shipperCountry;
}
public void setShipperCountry(String shipperCountry) {
this.shipperCountry = shipperCountry == null ? null : shipperCountry.trim();
}
public String getRecipientCountry() {
return recipientCountry;
}
public void setRecipientCountry(String recipientCountry) {
this.recipientCountry = recipientCountry == null ? null : recipientCountry.trim();
}
public String getDestIataCode() {
return destIataCode;
}
......@@ -300,22 +284,6 @@ public class CeInfo implements Serializable {
this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
}
public String getOriginCountry() {
return originCountry;
}
public void setOriginCountry(String originCountry) {
this.originCountry = originCountry == null ? null : originCountry.trim();
}
public String getDestinationCountry() {
return destinationCountry;
}
public void setDestinationCountry(String destinationCountry) {
this.destinationCountry = destinationCountry == null ? null : destinationCountry.trim();
}
public String getCustomsCurrency() {
return customsCurrency;
}
......@@ -492,6 +460,38 @@ public class CeInfo implements Serializable {
this.docNondocFlag = docNondocFlag == null ? null : docNondocFlag.trim();
}
public String getUserUuid() {
return userUuid;
}
public void setUserUuid(String userUuid) {
this.userUuid = userUuid == null ? null : userUuid.trim();
}
public String getShipperEmail() {
return shipperEmail;
}
public void setShipperEmail(String shipperEmail) {
this.shipperEmail = shipperEmail == null ? null : shipperEmail.trim();
}
public String getShipperCountry() {
return shipperCountry;
}
public void setShipperCountry(String shipperCountry) {
this.shipperCountry = shipperCountry == null ? null : shipperCountry.trim();
}
public String getRecipientCountry() {
return recipientCountry;
}
public void setRecipientCountry(String recipientCountry) {
this.recipientCountry = recipientCountry == null ? null : recipientCountry.trim();
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
......@@ -502,8 +502,6 @@ public class CeInfo implements Serializable {
sb.append(", consignmentCode=").append(consignmentCode);
sb.append(", sendTime=").append(sendTime);
sb.append(", shipDate=").append(shipDate);
sb.append(", shipperCountry=").append(shipperCountry);
sb.append(", recipientCountry=").append(recipientCountry);
sb.append(", destIataCode=").append(destIataCode);
sb.append(", createTime=").append(createTime);
sb.append(", createUserId=").append(createUserId);
......@@ -511,8 +509,6 @@ public class CeInfo implements Serializable {
sb.append(", modifyTime=").append(modifyTime);
sb.append(", modifyUserId=").append(modifyUserId);
sb.append(", modifyUserName=").append(modifyUserName);
sb.append(", originCountry=").append(originCountry);
sb.append(", destinationCountry=").append(destinationCountry);
sb.append(", customsCurrency=").append(customsCurrency);
sb.append(", customsValue=").append(customsValue);
sb.append(", weight=").append(weight);
......@@ -535,6 +531,10 @@ public class CeInfo implements Serializable {
sb.append(", recipientCity=").append(recipientCity);
sb.append(", recipientPostalCode=").append(recipientPostalCode);
sb.append(", docNondocFlag=").append(docNondocFlag);
sb.append(", userUuid=").append(userUuid);
sb.append(", shipperEmail=").append(shipperEmail);
sb.append(", shipperCountry=").append(shipperCountry);
sb.append(", recipientCountry=").append(recipientCountry);
sb.append(", serialVersionUID=").append(serialVersionUID);
sb.append("]");
return sb.toString();
......
......@@ -25,16 +25,6 @@ public class Consignment implements Serializable {
private Date shipDate;
/**
* 发货人国家
*/
private String shipperCountry;
/**
* 收件人国家
*/
private String recipientCountry;
/**
* 目的国口岸
*/
private String destIataCode;
......@@ -220,13 +210,13 @@ public class Consignment implements Serializable {
private String recipientPostalCode;
/**
* 运单状态ID
* 运单状态CODE
关联数据字典表。指定字典目录CODE:CONSIGNMENT_STATUS
*/
private Long statusId;
private String statusCode;
/**
* 运单状态名称(待上传、已上传、已发送)
* 运单状态名称(上传成功、上传失败)
*/
private String statusName;
......@@ -246,21 +236,31 @@ public class Consignment implements Serializable {
private String userInputShipperAccount;
/**
* 用户录入原产国全称CODE,关联数据字典表。指定字典目录CODE:COUNTRY
*/
private String userInputOriginCountryCode;
/**
* 用户录入原产国全称
*/
private Long userInputOriginCountryId;
private String userInputOriginCountry;
/**
* 用户录入原产国全称ID
* 原产国全称CODE
关联数据字典表。指定字典目录CODE:COUNTRY
*/
private String userInputOriginCountry;
private String originCountryCode;
/**
* 原产国全称ID,
* 发件人邮箱
*/
private String shipperEmail;
/**
* 目的国全称CODE,
关联数据字典表。指定字典目录CODE:COUNTRY
*/
private Long originCountryId;
private String destinationCountryCode;
private static final long serialVersionUID = 1L;
......@@ -288,22 +288,6 @@ public class Consignment implements Serializable {
this.shipDate = shipDate;
}
public String getShipperCountry() {
return shipperCountry;
}
public void setShipperCountry(String shipperCountry) {
this.shipperCountry = shipperCountry == null ? null : shipperCountry.trim();
}
public String getRecipientCountry() {
return recipientCountry;
}
public void setRecipientCountry(String recipientCountry) {
this.recipientCountry = recipientCountry == null ? null : recipientCountry.trim();
}
public String getDestIataCode() {
return destIataCode;
}
......@@ -600,12 +584,12 @@ public class Consignment implements Serializable {
this.recipientPostalCode = recipientPostalCode == null ? null : recipientPostalCode.trim();
}
public Long getStatusId() {
return statusId;
public String getStatusCode() {
return statusCode;
}
public void setStatusId(Long statusId) {
this.statusId = statusId;
public void setStatusCode(String statusCode) {
this.statusCode = statusCode == null ? null : statusCode.trim();
}
public String getStatusName() {
......@@ -640,12 +624,12 @@ public class Consignment implements Serializable {
this.userInputShipperAccount = userInputShipperAccount == null ? null : userInputShipperAccount.trim();
}
public Long getUserInputOriginCountryId() {
return userInputOriginCountryId;
public String getUserInputOriginCountryCode() {
return userInputOriginCountryCode;
}
public void setUserInputOriginCountryId(Long userInputOriginCountryId) {
this.userInputOriginCountryId = userInputOriginCountryId;
public void setUserInputOriginCountryCode(String userInputOriginCountryCode) {
this.userInputOriginCountryCode = userInputOriginCountryCode == null ? null : userInputOriginCountryCode.trim();
}
public String getUserInputOriginCountry() {
......@@ -656,12 +640,28 @@ public class Consignment implements Serializable {
this.userInputOriginCountry = userInputOriginCountry == null ? null : userInputOriginCountry.trim();
}
public Long getOriginCountryId() {
return originCountryId;
public String getOriginCountryCode() {
return originCountryCode;
}
public void setOriginCountryCode(String originCountryCode) {
this.originCountryCode = originCountryCode == null ? null : originCountryCode.trim();
}
public String getShipperEmail() {
return shipperEmail;
}
public void setShipperEmail(String shipperEmail) {
this.shipperEmail = shipperEmail == null ? null : shipperEmail.trim();
}
public String getDestinationCountryCode() {
return destinationCountryCode;
}
public void setOriginCountryId(Long originCountryId) {
this.originCountryId = originCountryId;
public void setDestinationCountryCode(String destinationCountryCode) {
this.destinationCountryCode = destinationCountryCode == null ? null : destinationCountryCode.trim();
}
@Override
......@@ -673,8 +673,6 @@ public class Consignment implements Serializable {
sb.append(", id=").append(id);
sb.append(", consignmentCode=").append(consignmentCode);
sb.append(", shipDate=").append(shipDate);
sb.append(", shipperCountry=").append(shipperCountry);
sb.append(", recipientCountry=").append(recipientCountry);
sb.append(", destIataCode=").append(destIataCode);
sb.append(", originCountry=").append(originCountry);
sb.append(", destinationCountry=").append(destinationCountry);
......@@ -712,14 +710,16 @@ public class Consignment implements Serializable {
sb.append(", modifyUserName=").append(modifyUserName);
sb.append(", ceInfoId=").append(ceInfoId);
sb.append(", recipientPostalCode=").append(recipientPostalCode);
sb.append(", statusId=").append(statusId);
sb.append(", statusCode=").append(statusCode);
sb.append(", statusName=").append(statusName);
sb.append(", docNondocFlag=").append(docNondocFlag);
sb.append(", userUuid=").append(userUuid);
sb.append(", userInputShipperAccount=").append(userInputShipperAccount);
sb.append(", userInputOriginCountryId=").append(userInputOriginCountryId);
sb.append(", userInputOriginCountryCode=").append(userInputOriginCountryCode);
sb.append(", userInputOriginCountry=").append(userInputOriginCountry);
sb.append(", originCountryId=").append(originCountryId);
sb.append(", originCountryCode=").append(originCountryCode);
sb.append(", shipperEmail=").append(shipperEmail);
sb.append(", destinationCountryCode=").append(destinationCountryCode);
sb.append(", serialVersionUID=").append(serialVersionUID);
sb.append("]");
return sb.toString();
......
......@@ -39,9 +39,9 @@ public class Email implements Serializable {
private String subject;
/**
* 邮件类型ID,关联数据字典表。指定字典目录CODE:EMAIL_TYPE
* 邮件类型CODE,关联数据字典表。指定字典目录CODE:EMAIL_TYPE
*/
private Long typeId;
private String typeCode;
/**
* 邮件类型名称
......@@ -49,9 +49,9 @@ public class Email implements Serializable {
private String typeName;
/**
* 邮件状态ID,关联数据字典表。指定字典目录CODE:EMAIL_STATUS
* 邮件状态CODE,关联数据字典表。指定字典目录CODE:EMAIL_STATUS
*/
private Long statusId;
private String statusCode;
/**
* 邮件状态名称
......@@ -153,12 +153,12 @@ public class Email implements Serializable {
this.subject = subject == null ? null : subject.trim();
}
public Long getTypeId() {
return typeId;
public String getTypeCode() {
return typeCode;
}
public void setTypeId(Long typeId) {
this.typeId = typeId;
public void setTypeCode(String typeCode) {
this.typeCode = typeCode == null ? null : typeCode.trim();
}
public String getTypeName() {
......@@ -169,12 +169,12 @@ public class Email implements Serializable {
this.typeName = typeName == null ? null : typeName.trim();
}
public Long getStatusId() {
return statusId;
public String getStatusCode() {
return statusCode;
}
public void setStatusId(Long statusId) {
this.statusId = statusId;
public void setStatusCode(String statusCode) {
this.statusCode = statusCode == null ? null : statusCode.trim();
}
public String getStatusName() {
......@@ -269,9 +269,9 @@ public class Email implements Serializable {
sb.append(", toAddress=").append(toAddress);
sb.append(", ccAddress=").append(ccAddress);
sb.append(", subject=").append(subject);
sb.append(", typeId=").append(typeId);
sb.append(", typeCode=").append(typeCode);
sb.append(", typeName=").append(typeName);
sb.append(", statusId=").append(statusId);
sb.append(", statusCode=").append(statusCode);
sb.append(", statusName=").append(statusName);
sb.append(", sendNum=").append(sendNum);
sb.append(", sendTime=").append(sendTime);
......
......@@ -525,63 +525,73 @@ public class EmailExample {
return (Criteria) this;
}
public Criteria andTypeIdIsNull() {
addCriterion("TYPE_ID is null");
public Criteria andTypeCodeIsNull() {
addCriterion("TYPE_CODE is null");
return (Criteria) this;
}
public Criteria andTypeIdIsNotNull() {
addCriterion("TYPE_ID is not null");
public Criteria andTypeCodeIsNotNull() {
addCriterion("TYPE_CODE is not null");
return (Criteria) this;
}
public Criteria andTypeIdEqualTo(Long value) {
addCriterion("TYPE_ID =", value, "typeId");
public Criteria andTypeCodeEqualTo(String value) {
addCriterion("TYPE_CODE =", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdNotEqualTo(Long value) {
addCriterion("TYPE_ID <>", value, "typeId");
public Criteria andTypeCodeNotEqualTo(String value) {
addCriterion("TYPE_CODE <>", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdGreaterThan(Long value) {
addCriterion("TYPE_ID >", value, "typeId");
public Criteria andTypeCodeGreaterThan(String value) {
addCriterion("TYPE_CODE >", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdGreaterThanOrEqualTo(Long value) {
addCriterion("TYPE_ID >=", value, "typeId");
public Criteria andTypeCodeGreaterThanOrEqualTo(String value) {
addCriterion("TYPE_CODE >=", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdLessThan(Long value) {
addCriterion("TYPE_ID <", value, "typeId");
public Criteria andTypeCodeLessThan(String value) {
addCriterion("TYPE_CODE <", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdLessThanOrEqualTo(Long value) {
addCriterion("TYPE_ID <=", value, "typeId");
public Criteria andTypeCodeLessThanOrEqualTo(String value) {
addCriterion("TYPE_CODE <=", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdIn(List<Long> values) {
addCriterion("TYPE_ID in", values, "typeId");
public Criteria andTypeCodeLike(String value) {
addCriterion("TYPE_CODE like", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdNotIn(List<Long> values) {
addCriterion("TYPE_ID not in", values, "typeId");
public Criteria andTypeCodeNotLike(String value) {
addCriterion("TYPE_CODE not like", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdBetween(Long value1, Long value2) {
addCriterion("TYPE_ID between", value1, value2, "typeId");
public Criteria andTypeCodeIn(List<String> values) {
addCriterion("TYPE_CODE in", values, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdNotBetween(Long value1, Long value2) {
addCriterion("TYPE_ID not between", value1, value2, "typeId");
public Criteria andTypeCodeNotIn(List<String> values) {
addCriterion("TYPE_CODE not in", values, "typeCode");
return (Criteria) this;
}
public Criteria andTypeCodeBetween(String value1, String value2) {
addCriterion("TYPE_CODE between", value1, value2, "typeCode");
return (Criteria) this;
}
public Criteria andTypeCodeNotBetween(String value1, String value2) {
addCriterion("TYPE_CODE not between", value1, value2, "typeCode");
return (Criteria) this;
}
......@@ -655,63 +665,73 @@ public class EmailExample {
return (Criteria) this;
}
public Criteria andStatusIdIsNull() {
addCriterion("STATUS_ID is null");
public Criteria andStatusCodeIsNull() {
addCriterion("STATUS_CODE is null");
return (Criteria) this;
}
public Criteria andStatusCodeIsNotNull() {
addCriterion("STATUS_CODE is not null");
return (Criteria) this;
}
public Criteria andStatusCodeEqualTo(String value) {
addCriterion("STATUS_CODE =", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdIsNotNull() {
addCriterion("STATUS_ID is not null");
public Criteria andStatusCodeNotEqualTo(String value) {
addCriterion("STATUS_CODE <>", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdEqualTo(Long value) {
addCriterion("STATUS_ID =", value, "statusId");
public Criteria andStatusCodeGreaterThan(String value) {
addCriterion("STATUS_CODE >", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdNotEqualTo(Long value) {
addCriterion("STATUS_ID <>", value, "statusId");
public Criteria andStatusCodeGreaterThanOrEqualTo(String value) {
addCriterion("STATUS_CODE >=", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdGreaterThan(Long value) {
addCriterion("STATUS_ID >", value, "statusId");
public Criteria andStatusCodeLessThan(String value) {
addCriterion("STATUS_CODE <", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdGreaterThanOrEqualTo(Long value) {
addCriterion("STATUS_ID >=", value, "statusId");
public Criteria andStatusCodeLessThanOrEqualTo(String value) {
addCriterion("STATUS_CODE <=", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdLessThan(Long value) {
addCriterion("STATUS_ID <", value, "statusId");
public Criteria andStatusCodeLike(String value) {
addCriterion("STATUS_CODE like", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdLessThanOrEqualTo(Long value) {
addCriterion("STATUS_ID <=", value, "statusId");
public Criteria andStatusCodeNotLike(String value) {
addCriterion("STATUS_CODE not like", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdIn(List<Long> values) {
addCriterion("STATUS_ID in", values, "statusId");
public Criteria andStatusCodeIn(List<String> values) {
addCriterion("STATUS_CODE in", values, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdNotIn(List<Long> values) {
addCriterion("STATUS_ID not in", values, "statusId");
public Criteria andStatusCodeNotIn(List<String> values) {
addCriterion("STATUS_CODE not in", values, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdBetween(Long value1, Long value2) {
addCriterion("STATUS_ID between", value1, value2, "statusId");
public Criteria andStatusCodeBetween(String value1, String value2) {
addCriterion("STATUS_CODE between", value1, value2, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdNotBetween(Long value1, Long value2) {
addCriterion("STATUS_ID not between", value1, value2, "statusId");
public Criteria andStatusCodeNotBetween(String value1, String value2) {
addCriterion("STATUS_CODE not between", value1, value2, "statusCode");
return (Criteria) this;
}
......
......@@ -29,10 +29,10 @@ public class PushOb implements Serializable {
private Date pushTime;
/**
* 推送状态ID
* 推送状态CODE
关联数据字典表。指定字典目录CODE:PUSH_OB_STATUS
*/
private Long statusId;
private String statusCode;
/**
* 推送状态名称(待推送、推送成功、推送失败)
......@@ -128,12 +128,12 @@ public class PushOb implements Serializable {
this.pushTime = pushTime;
}
public Long getStatusId() {
return statusId;
public String getStatusCode() {
return statusCode;
}
public void setStatusId(Long statusId) {
this.statusId = statusId;
public void setStatusCode(String statusCode) {
this.statusCode = statusCode == null ? null : statusCode.trim();
}
public String getStatusName() {
......@@ -242,7 +242,7 @@ public class PushOb implements Serializable {
sb.append(", consignmentCode=").append(consignmentCode);
sb.append(", consignmentId=").append(consignmentId);
sb.append(", pushTime=").append(pushTime);
sb.append(", statusId=").append(statusId);
sb.append(", statusCode=").append(statusCode);
sb.append(", statusName=").append(statusName);
sb.append(", pushNum=").append(pushNum);
sb.append(", filePath=").append(filePath);
......
......@@ -24,10 +24,10 @@ public class PushObDetail implements Serializable {
private Long consignmentId;
/**
* 推送状态ID
* 推送状态CODE
关联数据字典表。指定字典目录CODE:PUSH_OB_STATUS
*/
private Long statusId;
private String statusCode;
/**
* 推送状态名称(待推送、推送成功、推送失败)
......@@ -35,9 +35,9 @@ public class PushObDetail implements Serializable {
private String statusName;
/**
* 推送文件类型字典ID,关联数据字典表。指定字典目录CODE:PUSH_OB_FILE_TYPE
* 推送文件类型字典CODE,关联数据字典表。指定字典目录CODE:PUSH_OB_FILE_TYPE
*/
private Long fileTypeId;
private String fileTypeCode;
/**
* 推送文件类型名称(XXX、XXX)
......@@ -120,12 +120,12 @@ public class PushObDetail implements Serializable {
this.consignmentId = consignmentId;
}
public Long getStatusId() {
return statusId;
public String getStatusCode() {
return statusCode;
}
public void setStatusId(Long statusId) {
this.statusId = statusId;
public void setStatusCode(String statusCode) {
this.statusCode = statusCode == null ? null : statusCode.trim();
}
public String getStatusName() {
......@@ -136,12 +136,12 @@ public class PushObDetail implements Serializable {
this.statusName = statusName == null ? null : statusName.trim();
}
public Long getFileTypeId() {
return fileTypeId;
public String getFileTypeCode() {
return fileTypeCode;
}
public void setFileTypeId(Long fileTypeId) {
this.fileTypeId = fileTypeId;
public void setFileTypeCode(String fileTypeCode) {
this.fileTypeCode = fileTypeCode == null ? null : fileTypeCode.trim();
}
public String getFileType() {
......@@ -241,9 +241,9 @@ public class PushObDetail implements Serializable {
sb.append(", id=").append(id);
sb.append(", consignmentCode=").append(consignmentCode);
sb.append(", consignmentId=").append(consignmentId);
sb.append(", statusId=").append(statusId);
sb.append(", statusCode=").append(statusCode);
sb.append(", statusName=").append(statusName);
sb.append(", fileTypeId=").append(fileTypeId);
sb.append(", fileTypeCode=").append(fileTypeCode);
sb.append(", fileType=").append(fileType);
sb.append(", fileName=").append(fileName);
sb.append(", pushObId=").append(pushObId);
......
......@@ -315,63 +315,73 @@ public class PushObDetailExample {
return (Criteria) this;
}
public Criteria andStatusIdIsNull() {
addCriterion("STATUS_ID is null");
public Criteria andStatusCodeIsNull() {
addCriterion("STATUS_CODE is null");
return (Criteria) this;
}
public Criteria andStatusIdIsNotNull() {
addCriterion("STATUS_ID is not null");
public Criteria andStatusCodeIsNotNull() {
addCriterion("STATUS_CODE is not null");
return (Criteria) this;
}
public Criteria andStatusIdEqualTo(Long value) {
addCriterion("STATUS_ID =", value, "statusId");
public Criteria andStatusCodeEqualTo(String value) {
addCriterion("STATUS_CODE =", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdNotEqualTo(Long value) {
addCriterion("STATUS_ID <>", value, "statusId");
public Criteria andStatusCodeNotEqualTo(String value) {
addCriterion("STATUS_CODE <>", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdGreaterThan(Long value) {
addCriterion("STATUS_ID >", value, "statusId");
public Criteria andStatusCodeGreaterThan(String value) {
addCriterion("STATUS_CODE >", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdGreaterThanOrEqualTo(Long value) {
addCriterion("STATUS_ID >=", value, "statusId");
public Criteria andStatusCodeGreaterThanOrEqualTo(String value) {
addCriterion("STATUS_CODE >=", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdLessThan(Long value) {
addCriterion("STATUS_ID <", value, "statusId");
public Criteria andStatusCodeLessThan(String value) {
addCriterion("STATUS_CODE <", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdLessThanOrEqualTo(Long value) {
addCriterion("STATUS_ID <=", value, "statusId");
public Criteria andStatusCodeLessThanOrEqualTo(String value) {
addCriterion("STATUS_CODE <=", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdIn(List<Long> values) {
addCriterion("STATUS_ID in", values, "statusId");
public Criteria andStatusCodeLike(String value) {
addCriterion("STATUS_CODE like", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdNotIn(List<Long> values) {
addCriterion("STATUS_ID not in", values, "statusId");
public Criteria andStatusCodeNotLike(String value) {
addCriterion("STATUS_CODE not like", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdBetween(Long value1, Long value2) {
addCriterion("STATUS_ID between", value1, value2, "statusId");
public Criteria andStatusCodeIn(List<String> values) {
addCriterion("STATUS_CODE in", values, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdNotBetween(Long value1, Long value2) {
addCriterion("STATUS_ID not between", value1, value2, "statusId");
public Criteria andStatusCodeNotIn(List<String> values) {
addCriterion("STATUS_CODE not in", values, "statusCode");
return (Criteria) this;
}
public Criteria andStatusCodeBetween(String value1, String value2) {
addCriterion("STATUS_CODE between", value1, value2, "statusCode");
return (Criteria) this;
}
public Criteria andStatusCodeNotBetween(String value1, String value2) {
addCriterion("STATUS_CODE not between", value1, value2, "statusCode");
return (Criteria) this;
}
......@@ -445,63 +455,73 @@ public class PushObDetailExample {
return (Criteria) this;
}
public Criteria andFileTypeIdIsNull() {
addCriterion("FILE_TYPE_ID is null");
public Criteria andFileTypeCodeIsNull() {
addCriterion("FILE_TYPE_CODE is null");
return (Criteria) this;
}
public Criteria andFileTypeCodeIsNotNull() {
addCriterion("FILE_TYPE_CODE is not null");
return (Criteria) this;
}
public Criteria andFileTypeCodeEqualTo(String value) {
addCriterion("FILE_TYPE_CODE =", value, "fileTypeCode");
return (Criteria) this;
}
public Criteria andFileTypeIdIsNotNull() {
addCriterion("FILE_TYPE_ID is not null");
public Criteria andFileTypeCodeNotEqualTo(String value) {
addCriterion("FILE_TYPE_CODE <>", value, "fileTypeCode");
return (Criteria) this;
}
public Criteria andFileTypeIdEqualTo(Long value) {
addCriterion("FILE_TYPE_ID =", value, "fileTypeId");
public Criteria andFileTypeCodeGreaterThan(String value) {
addCriterion("FILE_TYPE_CODE >", value, "fileTypeCode");
return (Criteria) this;
}
public Criteria andFileTypeIdNotEqualTo(Long value) {
addCriterion("FILE_TYPE_ID <>", value, "fileTypeId");
public Criteria andFileTypeCodeGreaterThanOrEqualTo(String value) {
addCriterion("FILE_TYPE_CODE >=", value, "fileTypeCode");
return (Criteria) this;
}
public Criteria andFileTypeIdGreaterThan(Long value) {
addCriterion("FILE_TYPE_ID >", value, "fileTypeId");
public Criteria andFileTypeCodeLessThan(String value) {
addCriterion("FILE_TYPE_CODE <", value, "fileTypeCode");
return (Criteria) this;
}
public Criteria andFileTypeIdGreaterThanOrEqualTo(Long value) {
addCriterion("FILE_TYPE_ID >=", value, "fileTypeId");
public Criteria andFileTypeCodeLessThanOrEqualTo(String value) {
addCriterion("FILE_TYPE_CODE <=", value, "fileTypeCode");
return (Criteria) this;
}
public Criteria andFileTypeIdLessThan(Long value) {
addCriterion("FILE_TYPE_ID <", value, "fileTypeId");
public Criteria andFileTypeCodeLike(String value) {
addCriterion("FILE_TYPE_CODE like", value, "fileTypeCode");
return (Criteria) this;
}
public Criteria andFileTypeIdLessThanOrEqualTo(Long value) {
addCriterion("FILE_TYPE_ID <=", value, "fileTypeId");
public Criteria andFileTypeCodeNotLike(String value) {
addCriterion("FILE_TYPE_CODE not like", value, "fileTypeCode");
return (Criteria) this;
}
public Criteria andFileTypeIdIn(List<Long> values) {
addCriterion("FILE_TYPE_ID in", values, "fileTypeId");
public Criteria andFileTypeCodeIn(List<String> values) {
addCriterion("FILE_TYPE_CODE in", values, "fileTypeCode");
return (Criteria) this;
}
public Criteria andFileTypeIdNotIn(List<Long> values) {
addCriterion("FILE_TYPE_ID not in", values, "fileTypeId");
public Criteria andFileTypeCodeNotIn(List<String> values) {
addCriterion("FILE_TYPE_CODE not in", values, "fileTypeCode");
return (Criteria) this;
}
public Criteria andFileTypeIdBetween(Long value1, Long value2) {
addCriterion("FILE_TYPE_ID between", value1, value2, "fileTypeId");
public Criteria andFileTypeCodeBetween(String value1, String value2) {
addCriterion("FILE_TYPE_CODE between", value1, value2, "fileTypeCode");
return (Criteria) this;
}
public Criteria andFileTypeIdNotBetween(Long value1, Long value2) {
addCriterion("FILE_TYPE_ID not between", value1, value2, "fileTypeId");
public Criteria andFileTypeCodeNotBetween(String value1, String value2) {
addCriterion("FILE_TYPE_CODE not between", value1, value2, "fileTypeCode");
return (Criteria) this;
}
......
......@@ -375,63 +375,73 @@ public class PushObExample {
return (Criteria) this;
}
public Criteria andStatusIdIsNull() {
addCriterion("STATUS_ID is null");
public Criteria andStatusCodeIsNull() {
addCriterion("STATUS_CODE is null");
return (Criteria) this;
}
public Criteria andStatusIdIsNotNull() {
addCriterion("STATUS_ID is not null");
public Criteria andStatusCodeIsNotNull() {
addCriterion("STATUS_CODE is not null");
return (Criteria) this;
}
public Criteria andStatusIdEqualTo(Long value) {
addCriterion("STATUS_ID =", value, "statusId");
public Criteria andStatusCodeEqualTo(String value) {
addCriterion("STATUS_CODE =", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdNotEqualTo(Long value) {
addCriterion("STATUS_ID <>", value, "statusId");
public Criteria andStatusCodeNotEqualTo(String value) {
addCriterion("STATUS_CODE <>", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdGreaterThan(Long value) {
addCriterion("STATUS_ID >", value, "statusId");
public Criteria andStatusCodeGreaterThan(String value) {
addCriterion("STATUS_CODE >", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdGreaterThanOrEqualTo(Long value) {
addCriterion("STATUS_ID >=", value, "statusId");
public Criteria andStatusCodeGreaterThanOrEqualTo(String value) {
addCriterion("STATUS_CODE >=", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdLessThan(Long value) {
addCriterion("STATUS_ID <", value, "statusId");
public Criteria andStatusCodeLessThan(String value) {
addCriterion("STATUS_CODE <", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdLessThanOrEqualTo(Long value) {
addCriterion("STATUS_ID <=", value, "statusId");
public Criteria andStatusCodeLessThanOrEqualTo(String value) {
addCriterion("STATUS_CODE <=", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdIn(List<Long> values) {
addCriterion("STATUS_ID in", values, "statusId");
public Criteria andStatusCodeLike(String value) {
addCriterion("STATUS_CODE like", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdNotIn(List<Long> values) {
addCriterion("STATUS_ID not in", values, "statusId");
public Criteria andStatusCodeNotLike(String value) {
addCriterion("STATUS_CODE not like", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdBetween(Long value1, Long value2) {
addCriterion("STATUS_ID between", value1, value2, "statusId");
public Criteria andStatusCodeIn(List<String> values) {
addCriterion("STATUS_CODE in", values, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdNotBetween(Long value1, Long value2) {
addCriterion("STATUS_ID not between", value1, value2, "statusId");
public Criteria andStatusCodeNotIn(List<String> values) {
addCriterion("STATUS_CODE not in", values, "statusCode");
return (Criteria) this;
}
public Criteria andStatusCodeBetween(String value1, String value2) {
addCriterion("STATUS_CODE between", value1, value2, "statusCode");
return (Criteria) this;
}
public Criteria andStatusCodeNotBetween(String value1, String value2) {
addCriterion("STATUS_CODE not between", value1, value2, "statusCode");
return (Criteria) this;
}
......
......@@ -19,14 +19,15 @@ public class UploadRecord implements Serializable {
private Long consignmentId;
/**
* 上传状态(uploaded)
* 运单状态CODE,
关联数据字典表。指定字典目录CODE:CONSIGNMENT_STATUS
*/
private String uploadStatus;
private String statusCode;
/**
* 状态(0:无效、1:有效)
* 运单状态名称(上传成功、上传失败)
*/
private Long status;
private String statusName;
/**
* 创建时间
......@@ -58,6 +59,11 @@ public class UploadRecord implements Serializable {
*/
private String modifyUserName;
/**
* 运单号
*/
private String consignmentCode;
private static final long serialVersionUID = 1L;
public Long getId() {
......@@ -76,20 +82,20 @@ public class UploadRecord implements Serializable {
this.consignmentId = consignmentId;
}
public String getUploadStatus() {
return uploadStatus;
public String getStatusCode() {
return statusCode;
}
public void setUploadStatus(String uploadStatus) {
this.uploadStatus = uploadStatus == null ? null : uploadStatus.trim();
public void setStatusCode(String statusCode) {
this.statusCode = statusCode == null ? null : statusCode.trim();
}
public Long getStatus() {
return status;
public String getStatusName() {
return statusName;
}
public void setStatus(Long status) {
this.status = status;
public void setStatusName(String statusName) {
this.statusName = statusName == null ? null : statusName.trim();
}
public Date getCreateTime() {
......@@ -140,6 +146,14 @@ public class UploadRecord implements Serializable {
this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
}
public String getConsignmentCode() {
return consignmentCode;
}
public void setConsignmentCode(String consignmentCode) {
this.consignmentCode = consignmentCode == null ? null : consignmentCode.trim();
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
......@@ -148,14 +162,15 @@ public class UploadRecord implements Serializable {
sb.append("Hash = ").append(hashCode());
sb.append(", id=").append(id);
sb.append(", consignmentId=").append(consignmentId);
sb.append(", uploadStatus=").append(uploadStatus);
sb.append(", status=").append(status);
sb.append(", statusCode=").append(statusCode);
sb.append(", statusName=").append(statusName);
sb.append(", createTime=").append(createTime);
sb.append(", createUserId=").append(createUserId);
sb.append(", createUserName=").append(createUserName);
sb.append(", modifyTime=").append(modifyTime);
sb.append(", modifyUserId=").append(modifyUserId);
sb.append(", modifyUserName=").append(modifyUserName);
sb.append(", consignmentCode=").append(consignmentCode);
sb.append(", serialVersionUID=").append(serialVersionUID);
sb.append("]");
return sb.toString();
......
......@@ -39,9 +39,9 @@ public class EmailHistory implements Serializable {
private String subject;
/**
* 邮件类型ID,关联数据字典表。指定字典目录CODE:EMAIL_TYPE
* 邮件类型CODE,关联数据字典表。指定字典目录CODE:EMAIL_TYPE
*/
private Long typeId;
private String typeCode;
/**
* 邮件类型名称
......@@ -49,9 +49,9 @@ public class EmailHistory implements Serializable {
private String typeName;
/**
* 邮件状态ID,关联数据字典表。指定字典目录CODE:EMAIL_STATUS
* 邮件状态CODE,关联数据字典表。指定字典目录CODE:EMAIL_STATUS
*/
private Long statusId;
private String statusCode;
/**
* 邮件状态名称
......@@ -153,12 +153,12 @@ public class EmailHistory implements Serializable {
this.subject = subject == null ? null : subject.trim();
}
public Long getTypeId() {
return typeId;
public String getTypeCode() {
return typeCode;
}
public void setTypeId(Long typeId) {
this.typeId = typeId;
public void setTypeCode(String typeCode) {
this.typeCode = typeCode == null ? null : typeCode.trim();
}
public String getTypeName() {
......@@ -169,12 +169,12 @@ public class EmailHistory implements Serializable {
this.typeName = typeName == null ? null : typeName.trim();
}
public Long getStatusId() {
return statusId;
public String getStatusCode() {
return statusCode;
}
public void setStatusId(Long statusId) {
this.statusId = statusId;
public void setStatusCode(String statusCode) {
this.statusCode = statusCode == null ? null : statusCode.trim();
}
public String getStatusName() {
......@@ -269,9 +269,9 @@ public class EmailHistory implements Serializable {
sb.append(", toAddress=").append(toAddress);
sb.append(", ccAddress=").append(ccAddress);
sb.append(", subject=").append(subject);
sb.append(", typeId=").append(typeId);
sb.append(", typeCode=").append(typeCode);
sb.append(", typeName=").append(typeName);
sb.append(", statusId=").append(statusId);
sb.append(", statusCode=").append(statusCode);
sb.append(", statusName=").append(statusName);
sb.append(", sendNum=").append(sendNum);
sb.append(", sendTime=").append(sendTime);
......
......@@ -525,63 +525,73 @@ public class EmailHistoryExample {
return (Criteria) this;
}
public Criteria andTypeIdIsNull() {
addCriterion("TYPE_ID is null");
public Criteria andTypeCodeIsNull() {
addCriterion("TYPE_CODE is null");
return (Criteria) this;
}
public Criteria andTypeIdIsNotNull() {
addCriterion("TYPE_ID is not null");
public Criteria andTypeCodeIsNotNull() {
addCriterion("TYPE_CODE is not null");
return (Criteria) this;
}
public Criteria andTypeIdEqualTo(Long value) {
addCriterion("TYPE_ID =", value, "typeId");
public Criteria andTypeCodeEqualTo(String value) {
addCriterion("TYPE_CODE =", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdNotEqualTo(Long value) {
addCriterion("TYPE_ID <>", value, "typeId");
public Criteria andTypeCodeNotEqualTo(String value) {
addCriterion("TYPE_CODE <>", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdGreaterThan(Long value) {
addCriterion("TYPE_ID >", value, "typeId");
public Criteria andTypeCodeGreaterThan(String value) {
addCriterion("TYPE_CODE >", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdGreaterThanOrEqualTo(Long value) {
addCriterion("TYPE_ID >=", value, "typeId");
public Criteria andTypeCodeGreaterThanOrEqualTo(String value) {
addCriterion("TYPE_CODE >=", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdLessThan(Long value) {
addCriterion("TYPE_ID <", value, "typeId");
public Criteria andTypeCodeLessThan(String value) {
addCriterion("TYPE_CODE <", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdLessThanOrEqualTo(Long value) {
addCriterion("TYPE_ID <=", value, "typeId");
public Criteria andTypeCodeLessThanOrEqualTo(String value) {
addCriterion("TYPE_CODE <=", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdIn(List<Long> values) {
addCriterion("TYPE_ID in", values, "typeId");
public Criteria andTypeCodeLike(String value) {
addCriterion("TYPE_CODE like", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdNotIn(List<Long> values) {
addCriterion("TYPE_ID not in", values, "typeId");
public Criteria andTypeCodeNotLike(String value) {
addCriterion("TYPE_CODE not like", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdBetween(Long value1, Long value2) {
addCriterion("TYPE_ID between", value1, value2, "typeId");
public Criteria andTypeCodeIn(List<String> values) {
addCriterion("TYPE_CODE in", values, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdNotBetween(Long value1, Long value2) {
addCriterion("TYPE_ID not between", value1, value2, "typeId");
public Criteria andTypeCodeNotIn(List<String> values) {
addCriterion("TYPE_CODE not in", values, "typeCode");
return (Criteria) this;
}
public Criteria andTypeCodeBetween(String value1, String value2) {
addCriterion("TYPE_CODE between", value1, value2, "typeCode");
return (Criteria) this;
}
public Criteria andTypeCodeNotBetween(String value1, String value2) {
addCriterion("TYPE_CODE not between", value1, value2, "typeCode");
return (Criteria) this;
}
......@@ -655,63 +665,73 @@ public class EmailHistoryExample {
return (Criteria) this;
}
public Criteria andStatusIdIsNull() {
addCriterion("STATUS_ID is null");
public Criteria andStatusCodeIsNull() {
addCriterion("STATUS_CODE is null");
return (Criteria) this;
}
public Criteria andStatusCodeIsNotNull() {
addCriterion("STATUS_CODE is not null");
return (Criteria) this;
}
public Criteria andStatusCodeEqualTo(String value) {
addCriterion("STATUS_CODE =", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdIsNotNull() {
addCriterion("STATUS_ID is not null");
public Criteria andStatusCodeNotEqualTo(String value) {
addCriterion("STATUS_CODE <>", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdEqualTo(Long value) {
addCriterion("STATUS_ID =", value, "statusId");
public Criteria andStatusCodeGreaterThan(String value) {
addCriterion("STATUS_CODE >", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdNotEqualTo(Long value) {
addCriterion("STATUS_ID <>", value, "statusId");
public Criteria andStatusCodeGreaterThanOrEqualTo(String value) {
addCriterion("STATUS_CODE >=", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdGreaterThan(Long value) {
addCriterion("STATUS_ID >", value, "statusId");
public Criteria andStatusCodeLessThan(String value) {
addCriterion("STATUS_CODE <", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdGreaterThanOrEqualTo(Long value) {
addCriterion("STATUS_ID >=", value, "statusId");
public Criteria andStatusCodeLessThanOrEqualTo(String value) {
addCriterion("STATUS_CODE <=", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdLessThan(Long value) {
addCriterion("STATUS_ID <", value, "statusId");
public Criteria andStatusCodeLike(String value) {
addCriterion("STATUS_CODE like", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdLessThanOrEqualTo(Long value) {
addCriterion("STATUS_ID <=", value, "statusId");
public Criteria andStatusCodeNotLike(String value) {
addCriterion("STATUS_CODE not like", value, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdIn(List<Long> values) {
addCriterion("STATUS_ID in", values, "statusId");
public Criteria andStatusCodeIn(List<String> values) {
addCriterion("STATUS_CODE in", values, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdNotIn(List<Long> values) {
addCriterion("STATUS_ID not in", values, "statusId");
public Criteria andStatusCodeNotIn(List<String> values) {
addCriterion("STATUS_CODE not in", values, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdBetween(Long value1, Long value2) {
addCriterion("STATUS_ID between", value1, value2, "statusId");
public Criteria andStatusCodeBetween(String value1, String value2) {
addCriterion("STATUS_CODE between", value1, value2, "statusCode");
return (Criteria) this;
}
public Criteria andStatusIdNotBetween(Long value1, Long value2) {
addCriterion("STATUS_ID not between", value1, value2, "statusId");
public Criteria andStatusCodeNotBetween(String value1, String value2) {
addCriterion("STATUS_CODE not between", value1, value2, "statusCode");
return (Criteria) this;
}
......
......@@ -19,10 +19,10 @@ public class UserLoginInfo implements Serializable {
private Long userId;
/**
* 操作类型ID
* 操作类型CODE
关联数据字典表。指定字典目录CODE:USER_LOGIN_TYPE
*/
private Long operTypeId;
private String operTypeCode;
/**
* 操作类型名称(登录、退出、修改密码、FCL登录注册,、停用、启用)
......@@ -87,12 +87,12 @@ public class UserLoginInfo implements Serializable {
this.userId = userId;
}
public Long getOperTypeId() {
return operTypeId;
public String getOperTypeCode() {
return operTypeCode;
}
public void setOperTypeId(Long operTypeId) {
this.operTypeId = operTypeId;
public void setOperTypeCode(String operTypeCode) {
this.operTypeCode = operTypeCode == null ? null : operTypeCode.trim();
}
public String getOperTypeName() {
......@@ -175,7 +175,7 @@ public class UserLoginInfo implements Serializable {
sb.append("Hash = ").append(hashCode());
sb.append(", id=").append(id);
sb.append(", userId=").append(userId);
sb.append(", operTypeId=").append(operTypeId);
sb.append(", operTypeCode=").append(operTypeCode);
sb.append(", operTypeName=").append(operTypeName);
sb.append(", operDesc=").append(operDesc);
sb.append(", ip=").append(ip);
......
......@@ -245,63 +245,73 @@ public class UserLoginInfoExample {
return (Criteria) this;
}
public Criteria andOperTypeIdIsNull() {
addCriterion("OPER_TYPE_ID is null");
public Criteria andOperTypeCodeIsNull() {
addCriterion("OPER_TYPE_CODE is null");
return (Criteria) this;
}
public Criteria andOperTypeIdIsNotNull() {
addCriterion("OPER_TYPE_ID is not null");
public Criteria andOperTypeCodeIsNotNull() {
addCriterion("OPER_TYPE_CODE is not null");
return (Criteria) this;
}
public Criteria andOperTypeIdEqualTo(Long value) {
addCriterion("OPER_TYPE_ID =", value, "operTypeId");
public Criteria andOperTypeCodeEqualTo(String value) {
addCriterion("OPER_TYPE_CODE =", value, "operTypeCode");
return (Criteria) this;
}
public Criteria andOperTypeIdNotEqualTo(Long value) {
addCriterion("OPER_TYPE_ID <>", value, "operTypeId");
public Criteria andOperTypeCodeNotEqualTo(String value) {
addCriterion("OPER_TYPE_CODE <>", value, "operTypeCode");
return (Criteria) this;
}
public Criteria andOperTypeIdGreaterThan(Long value) {
addCriterion("OPER_TYPE_ID >", value, "operTypeId");
public Criteria andOperTypeCodeGreaterThan(String value) {
addCriterion("OPER_TYPE_CODE >", value, "operTypeCode");
return (Criteria) this;
}
public Criteria andOperTypeIdGreaterThanOrEqualTo(Long value) {
addCriterion("OPER_TYPE_ID >=", value, "operTypeId");
public Criteria andOperTypeCodeGreaterThanOrEqualTo(String value) {
addCriterion("OPER_TYPE_CODE >=", value, "operTypeCode");
return (Criteria) this;
}
public Criteria andOperTypeIdLessThan(Long value) {
addCriterion("OPER_TYPE_ID <", value, "operTypeId");
public Criteria andOperTypeCodeLessThan(String value) {
addCriterion("OPER_TYPE_CODE <", value, "operTypeCode");
return (Criteria) this;
}
public Criteria andOperTypeIdLessThanOrEqualTo(Long value) {
addCriterion("OPER_TYPE_ID <=", value, "operTypeId");
public Criteria andOperTypeCodeLessThanOrEqualTo(String value) {
addCriterion("OPER_TYPE_CODE <=", value, "operTypeCode");
return (Criteria) this;
}
public Criteria andOperTypeIdIn(List<Long> values) {
addCriterion("OPER_TYPE_ID in", values, "operTypeId");
public Criteria andOperTypeCodeLike(String value) {
addCriterion("OPER_TYPE_CODE like", value, "operTypeCode");
return (Criteria) this;
}
public Criteria andOperTypeIdNotIn(List<Long> values) {
addCriterion("OPER_TYPE_ID not in", values, "operTypeId");
public Criteria andOperTypeCodeNotLike(String value) {
addCriterion("OPER_TYPE_CODE not like", value, "operTypeCode");
return (Criteria) this;
}
public Criteria andOperTypeIdBetween(Long value1, Long value2) {
addCriterion("OPER_TYPE_ID between", value1, value2, "operTypeId");
public Criteria andOperTypeCodeIn(List<String> values) {
addCriterion("OPER_TYPE_CODE in", values, "operTypeCode");
return (Criteria) this;
}
public Criteria andOperTypeIdNotBetween(Long value1, Long value2) {
addCriterion("OPER_TYPE_ID not between", value1, value2, "operTypeId");
public Criteria andOperTypeCodeNotIn(List<String> values) {
addCriterion("OPER_TYPE_CODE not in", values, "operTypeCode");
return (Criteria) this;
}
public Criteria andOperTypeCodeBetween(String value1, String value2) {
addCriterion("OPER_TYPE_CODE between", value1, value2, "operTypeCode");
return (Criteria) this;
}
public Criteria andOperTypeCodeNotBetween(String value1, String value2) {
addCriterion("OPER_TYPE_CODE not between", value1, value2, "operTypeCode");
return (Criteria) this;
}
......
......@@ -5,7 +5,7 @@ import java.util.Date;
/**
* DESC: KAFKA临时表
* TABLE: T_SYS_KAFKA_TEMPORARY_STORAGE
* TABLE: ICLEARIMP.T_SYS_KAFKA_TEMPORARY_STORAGE
*/
public class KafkaTemporaryStorage implements Serializable {
/**
......@@ -98,11 +98,6 @@ public class KafkaTemporaryStorage implements Serializable {
*/
private String data;
/**
* 消息字符串
*/
private String message;
private static final long serialVersionUID = 1L;
public Long getId() {
......@@ -249,14 +244,6 @@ public class KafkaTemporaryStorage implements Serializable {
this.data = data == null ? null : data.trim();
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
......
......@@ -29,9 +29,9 @@ public class ParamConfig implements Serializable {
private String value;
/**
* 参数类型ID,关联数据字典表。指定字典目录CODE:PARAM_CONFIG_TYPE
* 参数类型CODE,关联数据字典表。指定字典目录CODE:PARAM_CONFIG_TYPE
*/
private Long typeId;
private String typeCode;
/**
* 参数类型名称
......@@ -112,12 +112,12 @@ public class ParamConfig implements Serializable {
this.value = value == null ? null : value.trim();
}
public Long getTypeId() {
return typeId;
public String getTypeCode() {
return typeCode;
}
public void setTypeId(Long typeId) {
this.typeId = typeId;
public void setTypeCode(String typeCode) {
this.typeCode = typeCode == null ? null : typeCode.trim();
}
public String getTypeName() {
......@@ -202,7 +202,7 @@ public class ParamConfig implements Serializable {
sb.append(", code=").append(code);
sb.append(", name=").append(name);
sb.append(", value=").append(value);
sb.append(", typeId=").append(typeId);
sb.append(", typeCode=").append(typeCode);
sb.append(", typeName=").append(typeName);
sb.append(", status=").append(status);
sb.append(", description=").append(description);
......
......@@ -395,63 +395,73 @@ public class ParamConfigExample {
return (Criteria) this;
}
public Criteria andTypeIdIsNull() {
addCriterion("TYPE_ID is null");
public Criteria andTypeCodeIsNull() {
addCriterion("TYPE_CODE is null");
return (Criteria) this;
}
public Criteria andTypeIdIsNotNull() {
addCriterion("TYPE_ID is not null");
public Criteria andTypeCodeIsNotNull() {
addCriterion("TYPE_CODE is not null");
return (Criteria) this;
}
public Criteria andTypeIdEqualTo(Long value) {
addCriterion("TYPE_ID =", value, "typeId");
public Criteria andTypeCodeEqualTo(String value) {
addCriterion("TYPE_CODE =", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdNotEqualTo(Long value) {
addCriterion("TYPE_ID <>", value, "typeId");
public Criteria andTypeCodeNotEqualTo(String value) {
addCriterion("TYPE_CODE <>", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdGreaterThan(Long value) {
addCriterion("TYPE_ID >", value, "typeId");
public Criteria andTypeCodeGreaterThan(String value) {
addCriterion("TYPE_CODE >", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdGreaterThanOrEqualTo(Long value) {
addCriterion("TYPE_ID >=", value, "typeId");
public Criteria andTypeCodeGreaterThanOrEqualTo(String value) {
addCriterion("TYPE_CODE >=", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdLessThan(Long value) {
addCriterion("TYPE_ID <", value, "typeId");
public Criteria andTypeCodeLessThan(String value) {
addCriterion("TYPE_CODE <", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdLessThanOrEqualTo(Long value) {
addCriterion("TYPE_ID <=", value, "typeId");
public Criteria andTypeCodeLessThanOrEqualTo(String value) {
addCriterion("TYPE_CODE <=", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdIn(List<Long> values) {
addCriterion("TYPE_ID in", values, "typeId");
public Criteria andTypeCodeLike(String value) {
addCriterion("TYPE_CODE like", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdNotIn(List<Long> values) {
addCriterion("TYPE_ID not in", values, "typeId");
public Criteria andTypeCodeNotLike(String value) {
addCriterion("TYPE_CODE not like", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdBetween(Long value1, Long value2) {
addCriterion("TYPE_ID between", value1, value2, "typeId");
public Criteria andTypeCodeIn(List<String> values) {
addCriterion("TYPE_CODE in", values, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdNotBetween(Long value1, Long value2) {
addCriterion("TYPE_ID not between", value1, value2, "typeId");
public Criteria andTypeCodeNotIn(List<String> values) {
addCriterion("TYPE_CODE not in", values, "typeCode");
return (Criteria) this;
}
public Criteria andTypeCodeBetween(String value1, String value2) {
addCriterion("TYPE_CODE between", value1, value2, "typeCode");
return (Criteria) this;
}
public Criteria andTypeCodeNotBetween(String value1, String value2) {
addCriterion("TYPE_CODE not between", value1, value2, "typeCode");
return (Criteria) this;
}
......
......@@ -29,10 +29,10 @@ public class Role implements Serializable {
private String roleDesc;
/**
* 类型ID
关联数据字典表。指定KEY为:role_type
* 类型CODE
关联数据字典表。指定KEY为:ROLE_TYPE
*/
private Long typeId;
private String typeCode;
/**
* 用户类型名称
......@@ -108,12 +108,12 @@ public class Role implements Serializable {
this.roleDesc = roleDesc == null ? null : roleDesc.trim();
}
public Long getTypeId() {
return typeId;
public String getTypeCode() {
return typeCode;
}
public void setTypeId(Long typeId) {
this.typeId = typeId;
public void setTypeCode(String typeCode) {
this.typeCode = typeCode == null ? null : typeCode.trim();
}
public String getTypeName() {
......@@ -190,7 +190,7 @@ public class Role implements Serializable {
sb.append(", code=").append(code);
sb.append(", name=").append(name);
sb.append(", roleDesc=").append(roleDesc);
sb.append(", typeId=").append(typeId);
sb.append(", typeCode=").append(typeCode);
sb.append(", typeName=").append(typeName);
sb.append(", status=").append(status);
sb.append(", createTime=").append(createTime);
......
......@@ -395,63 +395,73 @@ public class RoleExample {
return (Criteria) this;
}
public Criteria andTypeIdIsNull() {
addCriterion("TYPE_ID is null");
public Criteria andTypeCodeIsNull() {
addCriterion("TYPE_CODE is null");
return (Criteria) this;
}
public Criteria andTypeIdIsNotNull() {
addCriterion("TYPE_ID is not null");
public Criteria andTypeCodeIsNotNull() {
addCriterion("TYPE_CODE is not null");
return (Criteria) this;
}
public Criteria andTypeIdEqualTo(Long value) {
addCriterion("TYPE_ID =", value, "typeId");
public Criteria andTypeCodeEqualTo(String value) {
addCriterion("TYPE_CODE =", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdNotEqualTo(Long value) {
addCriterion("TYPE_ID <>", value, "typeId");
public Criteria andTypeCodeNotEqualTo(String value) {
addCriterion("TYPE_CODE <>", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdGreaterThan(Long value) {
addCriterion("TYPE_ID >", value, "typeId");
public Criteria andTypeCodeGreaterThan(String value) {
addCriterion("TYPE_CODE >", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdGreaterThanOrEqualTo(Long value) {
addCriterion("TYPE_ID >=", value, "typeId");
public Criteria andTypeCodeGreaterThanOrEqualTo(String value) {
addCriterion("TYPE_CODE >=", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdLessThan(Long value) {
addCriterion("TYPE_ID <", value, "typeId");
public Criteria andTypeCodeLessThan(String value) {
addCriterion("TYPE_CODE <", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdLessThanOrEqualTo(Long value) {
addCriterion("TYPE_ID <=", value, "typeId");
public Criteria andTypeCodeLessThanOrEqualTo(String value) {
addCriterion("TYPE_CODE <=", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdIn(List<Long> values) {
addCriterion("TYPE_ID in", values, "typeId");
public Criteria andTypeCodeLike(String value) {
addCriterion("TYPE_CODE like", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdNotIn(List<Long> values) {
addCriterion("TYPE_ID not in", values, "typeId");
public Criteria andTypeCodeNotLike(String value) {
addCriterion("TYPE_CODE not like", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdBetween(Long value1, Long value2) {
addCriterion("TYPE_ID between", value1, value2, "typeId");
public Criteria andTypeCodeIn(List<String> values) {
addCriterion("TYPE_CODE in", values, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdNotBetween(Long value1, Long value2) {
addCriterion("TYPE_ID not between", value1, value2, "typeId");
public Criteria andTypeCodeNotIn(List<String> values) {
addCriterion("TYPE_CODE not in", values, "typeCode");
return (Criteria) this;
}
public Criteria andTypeCodeBetween(String value1, String value2) {
addCriterion("TYPE_CODE between", value1, value2, "typeCode");
return (Criteria) this;
}
public Criteria andTypeCodeNotBetween(String value1, String value2) {
addCriterion("TYPE_CODE not between", value1, value2, "typeCode");
return (Criteria) this;
}
......
......@@ -4,7 +4,7 @@ import java.io.Serializable;
import java.util.Date;
/**
* DESC: null
* DESC: 角色权限表
* TABLE: T_SYS_ROLE_PRIVILEGE
*/
public class RolePrivilege implements Serializable {
......
......@@ -64,10 +64,10 @@ public class User implements Serializable {
private String customsSerialNum;
/**
* 用户类型ID
* 用户类型CODE
关联数据字典表。指定字典目录CODE:USER_TYPE
*/
private Long typeId;
private String typeCode;
/**
* 用户类型名称(本地账号、FCL账号)
......@@ -209,12 +209,12 @@ public class User implements Serializable {
this.customsSerialNum = customsSerialNum == null ? null : customsSerialNum.trim();
}
public Long getTypeId() {
return typeId;
public String getTypeCode() {
return typeCode;
}
public void setTypeId(Long typeId) {
this.typeId = typeId;
public void setTypeCode(String typeCode) {
this.typeCode = typeCode == null ? null : typeCode.trim();
}
public String getTypeName() {
......@@ -314,7 +314,7 @@ public class User implements Serializable {
sb.append(", accountNo=").append(accountNo);
sb.append(", unifiedBusinessNum=").append(unifiedBusinessNum);
sb.append(", customsSerialNum=").append(customsSerialNum);
sb.append(", typeId=").append(typeId);
sb.append(", typeCode=").append(typeCode);
sb.append(", typeName=").append(typeName);
sb.append(", status=").append(status);
sb.append(", remark=").append(remark);
......
......@@ -885,63 +885,73 @@ public class UserExample {
return (Criteria) this;
}
public Criteria andTypeIdIsNull() {
addCriterion("TYPE_ID is null");
public Criteria andTypeCodeIsNull() {
addCriterion("TYPE_CODE is null");
return (Criteria) this;
}
public Criteria andTypeIdIsNotNull() {
addCriterion("TYPE_ID is not null");
public Criteria andTypeCodeIsNotNull() {
addCriterion("TYPE_CODE is not null");
return (Criteria) this;
}
public Criteria andTypeIdEqualTo(Long value) {
addCriterion("TYPE_ID =", value, "typeId");
public Criteria andTypeCodeEqualTo(String value) {
addCriterion("TYPE_CODE =", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdNotEqualTo(Long value) {
addCriterion("TYPE_ID <>", value, "typeId");
public Criteria andTypeCodeNotEqualTo(String value) {
addCriterion("TYPE_CODE <>", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdGreaterThan(Long value) {
addCriterion("TYPE_ID >", value, "typeId");
public Criteria andTypeCodeGreaterThan(String value) {
addCriterion("TYPE_CODE >", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdGreaterThanOrEqualTo(Long value) {
addCriterion("TYPE_ID >=", value, "typeId");
public Criteria andTypeCodeGreaterThanOrEqualTo(String value) {
addCriterion("TYPE_CODE >=", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdLessThan(Long value) {
addCriterion("TYPE_ID <", value, "typeId");
public Criteria andTypeCodeLessThan(String value) {
addCriterion("TYPE_CODE <", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdLessThanOrEqualTo(Long value) {
addCriterion("TYPE_ID <=", value, "typeId");
public Criteria andTypeCodeLessThanOrEqualTo(String value) {
addCriterion("TYPE_CODE <=", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdIn(List<Long> values) {
addCriterion("TYPE_ID in", values, "typeId");
public Criteria andTypeCodeLike(String value) {
addCriterion("TYPE_CODE like", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdNotIn(List<Long> values) {
addCriterion("TYPE_ID not in", values, "typeId");
public Criteria andTypeCodeNotLike(String value) {
addCriterion("TYPE_CODE not like", value, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdBetween(Long value1, Long value2) {
addCriterion("TYPE_ID between", value1, value2, "typeId");
public Criteria andTypeCodeIn(List<String> values) {
addCriterion("TYPE_CODE in", values, "typeCode");
return (Criteria) this;
}
public Criteria andTypeIdNotBetween(Long value1, Long value2) {
addCriterion("TYPE_ID not between", value1, value2, "typeId");
public Criteria andTypeCodeNotIn(List<String> values) {
addCriterion("TYPE_CODE not in", values, "typeCode");
return (Criteria) this;
}
public Criteria andTypeCodeBetween(String value1, String value2) {
addCriterion("TYPE_CODE between", value1, value2, "typeCode");
return (Criteria) this;
}
public Criteria andTypeCodeNotBetween(String value1, String value2) {
addCriterion("TYPE_CODE not between", value1, value2, "typeCode");
return (Criteria) this;
}
......
......@@ -7,7 +7,7 @@ import java.util.Date;
* DESC: 用户登录信息token表
* TABLE: T_SYS_REDIS_SLAB
*/
public class RedisSlab implements Serializable {
public class redisSlab implements Serializable {
/**
* ID,自动增加
*/
......
......@@ -4,7 +4,7 @@ import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class RedisSlabExample {
public class redisSlabExample {
protected String orderByClause;
protected boolean distinct;
......@@ -15,7 +15,7 @@ public class RedisSlabExample {
protected Integer limitSize;
public RedisSlabExample() {
public redisSlabExample() {
oredCriteria = new ArrayList<Criteria>();
}
......