zelong.shao

dao|初始化

package com.fedex.connect.common.dao.biz;
import com.fedex.connect.common.model.biz.CeInfo;
import com.fedex.connect.common.model.biz.CeInfoExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface CeInfoMapper {
long countByExample(CeInfoExample example);
int deleteByExample(CeInfoExample example);
int deleteByPrimaryKey(Long id);
int insert(CeInfo record);
int insertSelective(CeInfo record);
List<CeInfo> selectByExample(CeInfoExample example);
CeInfo selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") CeInfo record, @Param("example") CeInfoExample example);
int updateByExample(@Param("record") CeInfo record, @Param("example") CeInfoExample example);
int updateByPrimaryKeySelective(CeInfo record);
int updateByPrimaryKey(CeInfo record);
}
\ No newline at end of file
<?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.biz.CeInfoMapper">
<resultMap id="BaseResultMap" type="com.fedex.connect.common.model.biz.CeInfo">
<id column="ID" jdbcType="NUMERIC" property="id" />
<result column="CONSIGNMENT_CODE" jdbcType="VARCHAR" property="consignmentCode" />
<result column="SEND_TIME" jdbcType="TIMESTAMP" property="sendTime" />
<result column="SHIP_DATE" jdbcType="TIMESTAMP" property="shipDate" />
<result column="SHIPPER_COUNTRY" jdbcType="VARCHAR" property="shipperCountry" />
<result column="RECIPIENT_COUNTRY" jdbcType="VARCHAR" property="recipientCountry" />
<result column="DEST_IATA_CODE" jdbcType="VARCHAR" property="destIataCode" />
<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="COUNT_ORIGIN" jdbcType="VARCHAR" property="countOrigin" />
<result column="DESTINATION_COUNTRY" jdbcType="VARCHAR" property="destinationCountry" />
<result column="CUSTOMS_CURRENCY" jdbcType="VARCHAR" property="customsCurrency" />
<result column="CUSTOMS_VALUE" jdbcType="NUMERIC" property="customsValue" />
<result column="WEIGHT" jdbcType="NUMERIC" property="weight" />
<result column="WEIGHTUNIT" jdbcType="NUMERIC" property="weightunit" />
<result column="SCANDATE" jdbcType="TIMESTAMP" property="scandate" />
<result column="SHIPPER_CONTACT_NAME" jdbcType="VARCHAR" property="shipperContactName" />
<result column="SHIPPER_PHONE" jdbcType="VARCHAR" property="shipperPhone" />
<result column="SHIPPER_ACCOUNT" jdbcType="VARCHAR" property="shipperAccount" />
<result column="SHIPPER_COMPANY" jdbcType="VARCHAR" property="shipperCompany" />
<result column="SHIPPER_ADDR_LINE1" jdbcType="VARCHAR" property="shipperAddrLine1" />
<result column="SHIPPER_ADDR_LINE2" jdbcType="VARCHAR" property="shipperAddrLine2" />
<result column="SHIPPER_CITY" jdbcType="VARCHAR" property="shipperCity" />
<result column="SHIPPER_EMAIL" jdbcType="VARCHAR" property="shipperEmail" />
<result column="RECIPIENT_CONTACT_NAME" jdbcType="VARCHAR" property="recipientContactName" />
<result column="RECIPIENT_PHONE" jdbcType="VARCHAR" property="recipientPhone" />
<result column="RECIPIENT_COMPANY" jdbcType="VARCHAR" property="recipientCompany" />
<result column="RECIPIENT_ADDR_LINE1" jdbcType="VARCHAR" property="recipientAddrLine1" />
<result column="RECIPIENT_ADDR_LINE2" jdbcType="VARCHAR" property="recipientAddrLine2" />
<result column="RECIPIENT_ADDR_LINE3" jdbcType="VARCHAR" property="recipientAddrLine3" />
<result column="RECIPIENT_CITY" jdbcType="VARCHAR" property="recipientCity" />
</resultMap>
<sql id="Example_Where_Clause">
<where>
<foreach collection="oredCriteria" item="criteria" separator="or">
<if test="criteria.valid">
<trim prefix="(" prefixOverrides="and" suffix=")">
<foreach collection="criteria.criteria" item="criterion">
<choose>
<when test="criterion.noValue">
and ${criterion.condition}
</when>
<when test="criterion.singleValue">
and ${criterion.condition} #{criterion.value}
</when>
<when test="criterion.betweenValue">
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when test="criterion.listValue">
and ${criterion.condition}
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql id="Update_By_Example_Where_Clause">
<where>
<foreach collection="example.oredCriteria" item="criteria" separator="or">
<if test="criteria.valid">
<trim prefix="(" prefixOverrides="and" suffix=")">
<foreach collection="criteria.criteria" item="criterion">
<choose>
<when test="criterion.noValue">
and ${criterion.condition}
</when>
<when test="criterion.singleValue">
and ${criterion.condition} #{criterion.value}
</when>
<when test="criterion.betweenValue">
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when test="criterion.listValue">
and ${criterion.condition}
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql id="Base_Column_List">
ID, CONSIGNMENT_CODE, SEND_TIME, SHIP_DATE, SHIPPER_COUNTRY, RECIPIENT_COUNTRY, DEST_IATA_CODE,
CREATE_TIME, CREATE_USER_ID, CREATE_USER_NAME, MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME,
COUNT_ORIGIN, DESTINATION_COUNTRY, CUSTOMS_CURRENCY, CUSTOMS_VALUE, WEIGHT, WEIGHTUNIT,
SCANDATE, SHIPPER_CONTACT_NAME, SHIPPER_PHONE, SHIPPER_ACCOUNT, SHIPPER_COMPANY,
SHIPPER_ADDR_LINE1, SHIPPER_ADDR_LINE2, SHIPPER_CITY, SHIPPER_EMAIL, RECIPIENT_CONTACT_NAME,
RECIPIENT_PHONE, RECIPIENT_COMPANY, RECIPIENT_ADDR_LINE1, RECIPIENT_ADDR_LINE2, RECIPIENT_ADDR_LINE3,
RECIPIENT_CITY
</sql>
<select id="selectByExample" parameterType="com.fedex.connect.common.model.biz.CeInfoExample" resultMap="BaseResultMap">
<include refid="OracleDialectPrefix" />
select
<if test="distinct">
distinct
</if>
'true' as QUERYID,
<include refid="Base_Column_List" />
from T_BIZ_CE_INFO
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
<if test="orderByClause != null">
order by ${orderByClause}
</if>
<include refid="OracleDialectSuffix" />
</select>
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from T_BIZ_CE_INFO
where ID = #{id,jdbcType=NUMERIC}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
delete from T_BIZ_CE_INFO
where ID = #{id,jdbcType=NUMERIC}
</delete>
<delete id="deleteByExample" parameterType="com.fedex.connect.common.model.biz.CeInfoExample">
delete from T_BIZ_CE_INFO
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</delete>
<insert id="insert" parameterType="com.fedex.connect.common.model.biz.CeInfo">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_BIZ_CE_INFO.NEXTVAL FROM DUAL
</selectKey>
insert into T_BIZ_CE_INFO (ID, CONSIGNMENT_CODE, SEND_TIME,
SHIP_DATE, SHIPPER_COUNTRY, RECIPIENT_COUNTRY,
DEST_IATA_CODE, CREATE_TIME, CREATE_USER_ID,
CREATE_USER_NAME, MODIFY_TIME, MODIFY_USER_ID,
MODIFY_USER_NAME, COUNT_ORIGIN, DESTINATION_COUNTRY,
CUSTOMS_CURRENCY, CUSTOMS_VALUE, WEIGHT,
WEIGHTUNIT, SCANDATE, SHIPPER_CONTACT_NAME,
SHIPPER_PHONE, SHIPPER_ACCOUNT, SHIPPER_COMPANY,
SHIPPER_ADDR_LINE1, SHIPPER_ADDR_LINE2, SHIPPER_CITY,
SHIPPER_EMAIL, RECIPIENT_CONTACT_NAME, RECIPIENT_PHONE,
RECIPIENT_COMPANY, RECIPIENT_ADDR_LINE1, RECIPIENT_ADDR_LINE2,
RECIPIENT_ADDR_LINE3, RECIPIENT_CITY)
values (#{id,jdbcType=NUMERIC}, #{consignmentCode,jdbcType=VARCHAR}, #{sendTime,jdbcType=TIMESTAMP},
#{shipDate,jdbcType=TIMESTAMP}, #{shipperCountry,jdbcType=VARCHAR}, #{recipientCountry,jdbcType=VARCHAR},
#{destIataCode,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{createUserId,jdbcType=NUMERIC},
#{createUserName,jdbcType=VARCHAR}, #{modifyTime,jdbcType=TIMESTAMP}, #{modifyUserId,jdbcType=NUMERIC},
#{modifyUserName,jdbcType=VARCHAR}, #{countOrigin,jdbcType=VARCHAR}, #{destinationCountry,jdbcType=VARCHAR},
#{customsCurrency,jdbcType=VARCHAR}, #{customsValue,jdbcType=NUMERIC}, #{weight,jdbcType=NUMERIC},
#{weightunit,jdbcType=NUMERIC}, #{scandate,jdbcType=TIMESTAMP}, #{shipperContactName,jdbcType=VARCHAR},
#{shipperPhone,jdbcType=VARCHAR}, #{shipperAccount,jdbcType=VARCHAR}, #{shipperCompany,jdbcType=VARCHAR},
#{shipperAddrLine1,jdbcType=VARCHAR}, #{shipperAddrLine2,jdbcType=VARCHAR}, #{shipperCity,jdbcType=VARCHAR},
#{shipperEmail,jdbcType=VARCHAR}, #{recipientContactName,jdbcType=VARCHAR}, #{recipientPhone,jdbcType=VARCHAR},
#{recipientCompany,jdbcType=VARCHAR}, #{recipientAddrLine1,jdbcType=VARCHAR}, #{recipientAddrLine2,jdbcType=VARCHAR},
#{recipientAddrLine3,jdbcType=VARCHAR}, #{recipientCity,jdbcType=VARCHAR})
</insert>
<insert id="insertSelective" parameterType="com.fedex.connect.common.model.biz.CeInfo">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_BIZ_CE_INFO.NEXTVAL FROM DUAL
</selectKey>
insert into T_BIZ_CE_INFO
<trim prefix="(" suffix=")" suffixOverrides=",">
ID,
<if test="consignmentCode != null">
CONSIGNMENT_CODE,
</if>
<if test="sendTime != null">
SEND_TIME,
</if>
<if test="shipDate != null">
SHIP_DATE,
</if>
<if test="shipperCountry != null">
SHIPPER_COUNTRY,
</if>
<if test="recipientCountry != null">
RECIPIENT_COUNTRY,
</if>
<if test="destIataCode != null">
DEST_IATA_CODE,
</if>
<if test="createTime != null">
CREATE_TIME,
</if>
<if test="createUserId != null">
CREATE_USER_ID,
</if>
<if test="createUserName != null">
CREATE_USER_NAME,
</if>
<if test="modifyTime != null">
MODIFY_TIME,
</if>
<if test="modifyUserId != null">
MODIFY_USER_ID,
</if>
<if test="modifyUserName != null">
MODIFY_USER_NAME,
</if>
<if test="countOrigin != null">
COUNT_ORIGIN,
</if>
<if test="destinationCountry != null">
DESTINATION_COUNTRY,
</if>
<if test="customsCurrency != null">
CUSTOMS_CURRENCY,
</if>
<if test="customsValue != null">
CUSTOMS_VALUE,
</if>
<if test="weight != null">
WEIGHT,
</if>
<if test="weightunit != null">
WEIGHTUNIT,
</if>
<if test="scandate != null">
SCANDATE,
</if>
<if test="shipperContactName != null">
SHIPPER_CONTACT_NAME,
</if>
<if test="shipperPhone != null">
SHIPPER_PHONE,
</if>
<if test="shipperAccount != null">
SHIPPER_ACCOUNT,
</if>
<if test="shipperCompany != null">
SHIPPER_COMPANY,
</if>
<if test="shipperAddrLine1 != null">
SHIPPER_ADDR_LINE1,
</if>
<if test="shipperAddrLine2 != null">
SHIPPER_ADDR_LINE2,
</if>
<if test="shipperCity != null">
SHIPPER_CITY,
</if>
<if test="shipperEmail != null">
SHIPPER_EMAIL,
</if>
<if test="recipientContactName != null">
RECIPIENT_CONTACT_NAME,
</if>
<if test="recipientPhone != null">
RECIPIENT_PHONE,
</if>
<if test="recipientCompany != null">
RECIPIENT_COMPANY,
</if>
<if test="recipientAddrLine1 != null">
RECIPIENT_ADDR_LINE1,
</if>
<if test="recipientAddrLine2 != null">
RECIPIENT_ADDR_LINE2,
</if>
<if test="recipientAddrLine3 != null">
RECIPIENT_ADDR_LINE3,
</if>
<if test="recipientCity != null">
RECIPIENT_CITY,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{id,jdbcType=NUMERIC},
<if test="consignmentCode != null">
#{consignmentCode,jdbcType=VARCHAR},
</if>
<if test="sendTime != null">
#{sendTime,jdbcType=TIMESTAMP},
</if>
<if test="shipDate != null">
#{shipDate,jdbcType=TIMESTAMP},
</if>
<if test="shipperCountry != null">
#{shipperCountry,jdbcType=VARCHAR},
</if>
<if test="recipientCountry != null">
#{recipientCountry,jdbcType=VARCHAR},
</if>
<if test="destIataCode != null">
#{destIataCode,jdbcType=VARCHAR},
</if>
<if test="createTime != null">
#{createTime,jdbcType=TIMESTAMP},
</if>
<if test="createUserId != null">
#{createUserId,jdbcType=NUMERIC},
</if>
<if test="createUserName != null">
#{createUserName,jdbcType=VARCHAR},
</if>
<if test="modifyTime != null">
#{modifyTime,jdbcType=TIMESTAMP},
</if>
<if test="modifyUserId != null">
#{modifyUserId,jdbcType=NUMERIC},
</if>
<if test="modifyUserName != null">
#{modifyUserName,jdbcType=VARCHAR},
</if>
<if test="countOrigin != null">
#{countOrigin,jdbcType=VARCHAR},
</if>
<if test="destinationCountry != null">
#{destinationCountry,jdbcType=VARCHAR},
</if>
<if test="customsCurrency != null">
#{customsCurrency,jdbcType=VARCHAR},
</if>
<if test="customsValue != null">
#{customsValue,jdbcType=NUMERIC},
</if>
<if test="weight != null">
#{weight,jdbcType=NUMERIC},
</if>
<if test="weightunit != null">
#{weightunit,jdbcType=NUMERIC},
</if>
<if test="scandate != null">
#{scandate,jdbcType=TIMESTAMP},
</if>
<if test="shipperContactName != null">
#{shipperContactName,jdbcType=VARCHAR},
</if>
<if test="shipperPhone != null">
#{shipperPhone,jdbcType=VARCHAR},
</if>
<if test="shipperAccount != null">
#{shipperAccount,jdbcType=VARCHAR},
</if>
<if test="shipperCompany != null">
#{shipperCompany,jdbcType=VARCHAR},
</if>
<if test="shipperAddrLine1 != null">
#{shipperAddrLine1,jdbcType=VARCHAR},
</if>
<if test="shipperAddrLine2 != null">
#{shipperAddrLine2,jdbcType=VARCHAR},
</if>
<if test="shipperCity != null">
#{shipperCity,jdbcType=VARCHAR},
</if>
<if test="shipperEmail != null">
#{shipperEmail,jdbcType=VARCHAR},
</if>
<if test="recipientContactName != null">
#{recipientContactName,jdbcType=VARCHAR},
</if>
<if test="recipientPhone != null">
#{recipientPhone,jdbcType=VARCHAR},
</if>
<if test="recipientCompany != null">
#{recipientCompany,jdbcType=VARCHAR},
</if>
<if test="recipientAddrLine1 != null">
#{recipientAddrLine1,jdbcType=VARCHAR},
</if>
<if test="recipientAddrLine2 != null">
#{recipientAddrLine2,jdbcType=VARCHAR},
</if>
<if test="recipientAddrLine3 != null">
#{recipientAddrLine3,jdbcType=VARCHAR},
</if>
<if test="recipientCity != null">
#{recipientCity,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<select id="countByExample" parameterType="com.fedex.connect.common.model.biz.CeInfoExample" resultType="java.lang.Long">
select count(*) from T_BIZ_CE_INFO
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</select>
<update id="updateByExampleSelective" parameterType="map">
update T_BIZ_CE_INFO
<set>
<if test="record.id != null">
ID = #{record.id,jdbcType=NUMERIC},
</if>
<if test="record.consignmentCode != null">
CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR},
</if>
<if test="record.sendTime != null">
SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
</if>
<if test="record.shipDate != null">
SHIP_DATE = #{record.shipDate,jdbcType=TIMESTAMP},
</if>
<if test="record.shipperCountry != null">
SHIPPER_COUNTRY = #{record.shipperCountry,jdbcType=VARCHAR},
</if>
<if test="record.recipientCountry != null">
RECIPIENT_COUNTRY = #{record.recipientCountry,jdbcType=VARCHAR},
</if>
<if test="record.destIataCode != null">
DEST_IATA_CODE = #{record.destIataCode,jdbcType=VARCHAR},
</if>
<if test="record.createTime != null">
CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
</if>
<if test="record.createUserId != null">
CREATE_USER_ID = #{record.createUserId,jdbcType=NUMERIC},
</if>
<if test="record.createUserName != null">
CREATE_USER_NAME = #{record.createUserName,jdbcType=VARCHAR},
</if>
<if test="record.modifyTime != null">
MODIFY_TIME = #{record.modifyTime,jdbcType=TIMESTAMP},
</if>
<if test="record.modifyUserId != null">
MODIFY_USER_ID = #{record.modifyUserId,jdbcType=NUMERIC},
</if>
<if test="record.modifyUserName != null">
MODIFY_USER_NAME = #{record.modifyUserName,jdbcType=VARCHAR},
</if>
<if test="record.countOrigin != null">
COUNT_ORIGIN = #{record.countOrigin,jdbcType=VARCHAR},
</if>
<if test="record.destinationCountry != null">
DESTINATION_COUNTRY = #{record.destinationCountry,jdbcType=VARCHAR},
</if>
<if test="record.customsCurrency != null">
CUSTOMS_CURRENCY = #{record.customsCurrency,jdbcType=VARCHAR},
</if>
<if test="record.customsValue != null">
CUSTOMS_VALUE = #{record.customsValue,jdbcType=NUMERIC},
</if>
<if test="record.weight != null">
WEIGHT = #{record.weight,jdbcType=NUMERIC},
</if>
<if test="record.weightunit != null">
WEIGHTUNIT = #{record.weightunit,jdbcType=NUMERIC},
</if>
<if test="record.scandate != null">
SCANDATE = #{record.scandate,jdbcType=TIMESTAMP},
</if>
<if test="record.shipperContactName != null">
SHIPPER_CONTACT_NAME = #{record.shipperContactName,jdbcType=VARCHAR},
</if>
<if test="record.shipperPhone != null">
SHIPPER_PHONE = #{record.shipperPhone,jdbcType=VARCHAR},
</if>
<if test="record.shipperAccount != null">
SHIPPER_ACCOUNT = #{record.shipperAccount,jdbcType=VARCHAR},
</if>
<if test="record.shipperCompany != null">
SHIPPER_COMPANY = #{record.shipperCompany,jdbcType=VARCHAR},
</if>
<if test="record.shipperAddrLine1 != null">
SHIPPER_ADDR_LINE1 = #{record.shipperAddrLine1,jdbcType=VARCHAR},
</if>
<if test="record.shipperAddrLine2 != null">
SHIPPER_ADDR_LINE2 = #{record.shipperAddrLine2,jdbcType=VARCHAR},
</if>
<if test="record.shipperCity != null">
SHIPPER_CITY = #{record.shipperCity,jdbcType=VARCHAR},
</if>
<if test="record.shipperEmail != null">
SHIPPER_EMAIL = #{record.shipperEmail,jdbcType=VARCHAR},
</if>
<if test="record.recipientContactName != null">
RECIPIENT_CONTACT_NAME = #{record.recipientContactName,jdbcType=VARCHAR},
</if>
<if test="record.recipientPhone != null">
RECIPIENT_PHONE = #{record.recipientPhone,jdbcType=VARCHAR},
</if>
<if test="record.recipientCompany != null">
RECIPIENT_COMPANY = #{record.recipientCompany,jdbcType=VARCHAR},
</if>
<if test="record.recipientAddrLine1 != null">
RECIPIENT_ADDR_LINE1 = #{record.recipientAddrLine1,jdbcType=VARCHAR},
</if>
<if test="record.recipientAddrLine2 != null">
RECIPIENT_ADDR_LINE2 = #{record.recipientAddrLine2,jdbcType=VARCHAR},
</if>
<if test="record.recipientAddrLine3 != null">
RECIPIENT_ADDR_LINE3 = #{record.recipientAddrLine3,jdbcType=VARCHAR},
</if>
<if test="record.recipientCity != null">
RECIPIENT_CITY = #{record.recipientCity,jdbcType=VARCHAR},
</if>
</set>
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByExample" parameterType="map">
update T_BIZ_CE_INFO
set ID = #{record.id,jdbcType=NUMERIC},
CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR},
SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
SHIP_DATE = #{record.shipDate,jdbcType=TIMESTAMP},
SHIPPER_COUNTRY = #{record.shipperCountry,jdbcType=VARCHAR},
RECIPIENT_COUNTRY = #{record.recipientCountry,jdbcType=VARCHAR},
DEST_IATA_CODE = #{record.destIataCode,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},
COUNT_ORIGIN = #{record.countOrigin,jdbcType=VARCHAR},
DESTINATION_COUNTRY = #{record.destinationCountry,jdbcType=VARCHAR},
CUSTOMS_CURRENCY = #{record.customsCurrency,jdbcType=VARCHAR},
CUSTOMS_VALUE = #{record.customsValue,jdbcType=NUMERIC},
WEIGHT = #{record.weight,jdbcType=NUMERIC},
WEIGHTUNIT = #{record.weightunit,jdbcType=NUMERIC},
SCANDATE = #{record.scandate,jdbcType=TIMESTAMP},
SHIPPER_CONTACT_NAME = #{record.shipperContactName,jdbcType=VARCHAR},
SHIPPER_PHONE = #{record.shipperPhone,jdbcType=VARCHAR},
SHIPPER_ACCOUNT = #{record.shipperAccount,jdbcType=VARCHAR},
SHIPPER_COMPANY = #{record.shipperCompany,jdbcType=VARCHAR},
SHIPPER_ADDR_LINE1 = #{record.shipperAddrLine1,jdbcType=VARCHAR},
SHIPPER_ADDR_LINE2 = #{record.shipperAddrLine2,jdbcType=VARCHAR},
SHIPPER_CITY = #{record.shipperCity,jdbcType=VARCHAR},
SHIPPER_EMAIL = #{record.shipperEmail,jdbcType=VARCHAR},
RECIPIENT_CONTACT_NAME = #{record.recipientContactName,jdbcType=VARCHAR},
RECIPIENT_PHONE = #{record.recipientPhone,jdbcType=VARCHAR},
RECIPIENT_COMPANY = #{record.recipientCompany,jdbcType=VARCHAR},
RECIPIENT_ADDR_LINE1 = #{record.recipientAddrLine1,jdbcType=VARCHAR},
RECIPIENT_ADDR_LINE2 = #{record.recipientAddrLine2,jdbcType=VARCHAR},
RECIPIENT_ADDR_LINE3 = #{record.recipientAddrLine3,jdbcType=VARCHAR},
RECIPIENT_CITY = #{record.recipientCity,jdbcType=VARCHAR}
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.biz.CeInfo">
update T_BIZ_CE_INFO
<set>
<if test="consignmentCode != null">
CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR},
</if>
<if test="sendTime != null">
SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
</if>
<if test="shipDate != null">
SHIP_DATE = #{shipDate,jdbcType=TIMESTAMP},
</if>
<if test="shipperCountry != null">
SHIPPER_COUNTRY = #{shipperCountry,jdbcType=VARCHAR},
</if>
<if test="recipientCountry != null">
RECIPIENT_COUNTRY = #{recipientCountry,jdbcType=VARCHAR},
</if>
<if test="destIataCode != null">
DEST_IATA_CODE = #{destIataCode,jdbcType=VARCHAR},
</if>
<if test="createTime != null">
CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
</if>
<if test="createUserId != null">
CREATE_USER_ID = #{createUserId,jdbcType=NUMERIC},
</if>
<if test="createUserName != null">
CREATE_USER_NAME = #{createUserName,jdbcType=VARCHAR},
</if>
<if test="modifyTime != null">
MODIFY_TIME = #{modifyTime,jdbcType=TIMESTAMP},
</if>
<if test="modifyUserId != null">
MODIFY_USER_ID = #{modifyUserId,jdbcType=NUMERIC},
</if>
<if test="modifyUserName != null">
MODIFY_USER_NAME = #{modifyUserName,jdbcType=VARCHAR},
</if>
<if test="countOrigin != null">
COUNT_ORIGIN = #{countOrigin,jdbcType=VARCHAR},
</if>
<if test="destinationCountry != null">
DESTINATION_COUNTRY = #{destinationCountry,jdbcType=VARCHAR},
</if>
<if test="customsCurrency != null">
CUSTOMS_CURRENCY = #{customsCurrency,jdbcType=VARCHAR},
</if>
<if test="customsValue != null">
CUSTOMS_VALUE = #{customsValue,jdbcType=NUMERIC},
</if>
<if test="weight != null">
WEIGHT = #{weight,jdbcType=NUMERIC},
</if>
<if test="weightunit != null">
WEIGHTUNIT = #{weightunit,jdbcType=NUMERIC},
</if>
<if test="scandate != null">
SCANDATE = #{scandate,jdbcType=TIMESTAMP},
</if>
<if test="shipperContactName != null">
SHIPPER_CONTACT_NAME = #{shipperContactName,jdbcType=VARCHAR},
</if>
<if test="shipperPhone != null">
SHIPPER_PHONE = #{shipperPhone,jdbcType=VARCHAR},
</if>
<if test="shipperAccount != null">
SHIPPER_ACCOUNT = #{shipperAccount,jdbcType=VARCHAR},
</if>
<if test="shipperCompany != null">
SHIPPER_COMPANY = #{shipperCompany,jdbcType=VARCHAR},
</if>
<if test="shipperAddrLine1 != null">
SHIPPER_ADDR_LINE1 = #{shipperAddrLine1,jdbcType=VARCHAR},
</if>
<if test="shipperAddrLine2 != null">
SHIPPER_ADDR_LINE2 = #{shipperAddrLine2,jdbcType=VARCHAR},
</if>
<if test="shipperCity != null">
SHIPPER_CITY = #{shipperCity,jdbcType=VARCHAR},
</if>
<if test="shipperEmail != null">
SHIPPER_EMAIL = #{shipperEmail,jdbcType=VARCHAR},
</if>
<if test="recipientContactName != null">
RECIPIENT_CONTACT_NAME = #{recipientContactName,jdbcType=VARCHAR},
</if>
<if test="recipientPhone != null">
RECIPIENT_PHONE = #{recipientPhone,jdbcType=VARCHAR},
</if>
<if test="recipientCompany != null">
RECIPIENT_COMPANY = #{recipientCompany,jdbcType=VARCHAR},
</if>
<if test="recipientAddrLine1 != null">
RECIPIENT_ADDR_LINE1 = #{recipientAddrLine1,jdbcType=VARCHAR},
</if>
<if test="recipientAddrLine2 != null">
RECIPIENT_ADDR_LINE2 = #{recipientAddrLine2,jdbcType=VARCHAR},
</if>
<if test="recipientAddrLine3 != null">
RECIPIENT_ADDR_LINE3 = #{recipientAddrLine3,jdbcType=VARCHAR},
</if>
<if test="recipientCity != null">
RECIPIENT_CITY = #{recipientCity,jdbcType=VARCHAR},
</if>
</set>
where ID = #{id,jdbcType=NUMERIC}
</update>
<update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.biz.CeInfo">
update T_BIZ_CE_INFO
set CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR},
SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
SHIP_DATE = #{shipDate,jdbcType=TIMESTAMP},
SHIPPER_COUNTRY = #{shipperCountry,jdbcType=VARCHAR},
RECIPIENT_COUNTRY = #{recipientCountry,jdbcType=VARCHAR},
DEST_IATA_CODE = #{destIataCode,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},
COUNT_ORIGIN = #{countOrigin,jdbcType=VARCHAR},
DESTINATION_COUNTRY = #{destinationCountry,jdbcType=VARCHAR},
CUSTOMS_CURRENCY = #{customsCurrency,jdbcType=VARCHAR},
CUSTOMS_VALUE = #{customsValue,jdbcType=NUMERIC},
WEIGHT = #{weight,jdbcType=NUMERIC},
WEIGHTUNIT = #{weightunit,jdbcType=NUMERIC},
SCANDATE = #{scandate,jdbcType=TIMESTAMP},
SHIPPER_CONTACT_NAME = #{shipperContactName,jdbcType=VARCHAR},
SHIPPER_PHONE = #{shipperPhone,jdbcType=VARCHAR},
SHIPPER_ACCOUNT = #{shipperAccount,jdbcType=VARCHAR},
SHIPPER_COMPANY = #{shipperCompany,jdbcType=VARCHAR},
SHIPPER_ADDR_LINE1 = #{shipperAddrLine1,jdbcType=VARCHAR},
SHIPPER_ADDR_LINE2 = #{shipperAddrLine2,jdbcType=VARCHAR},
SHIPPER_CITY = #{shipperCity,jdbcType=VARCHAR},
SHIPPER_EMAIL = #{shipperEmail,jdbcType=VARCHAR},
RECIPIENT_CONTACT_NAME = #{recipientContactName,jdbcType=VARCHAR},
RECIPIENT_PHONE = #{recipientPhone,jdbcType=VARCHAR},
RECIPIENT_COMPANY = #{recipientCompany,jdbcType=VARCHAR},
RECIPIENT_ADDR_LINE1 = #{recipientAddrLine1,jdbcType=VARCHAR},
RECIPIENT_ADDR_LINE2 = #{recipientAddrLine2,jdbcType=VARCHAR},
RECIPIENT_ADDR_LINE3 = #{recipientAddrLine3,jdbcType=VARCHAR},
RECIPIENT_CITY = #{recipientCity,jdbcType=VARCHAR}
where ID = #{id,jdbcType=NUMERIC}
</update>
<sql id="OracleDialectPrefix">
<if test="limitStart != null and limitStart&gt;=0">
select * from ( select row_.*, rownum rownum_ from (
</if>
</sql>
<sql id="OracleDialectSuffix">
<if test="limitStart != null and limitStart&gt;=0">
<![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]>
</if>
</sql>
<resultMap id="BaseResultMap" type="com.fedex.connect.common.model.biz.CeInfo">
<id column="ID" jdbcType="NUMERIC" property="id" />
<result column="CONSIGNMENT_CODE" jdbcType="VARCHAR" property="consignmentCode" />
<result column="SEND_TIME" jdbcType="TIMESTAMP" property="sendTime" />
<result column="SHIP_DATE" jdbcType="TIMESTAMP" property="shipDate" />
<result column="SHIPPER_COUNTRY" jdbcType="VARCHAR" property="shipperCountry" />
<result column="RECIPIENT_COUNTRY" jdbcType="VARCHAR" property="recipientCountry" />
<result column="DEST_IATA_CODE" jdbcType="VARCHAR" property="destIataCode" />
<result column="CREATE_TIME" jdbcType="TIMESTAMP" property="createTime" />
</resultMap>
<sql id="Example_Where_Clause">
<where>
<foreach collection="oredCriteria" item="criteria" separator="or">
<if test="criteria.valid">
<trim prefix="(" prefixOverrides="and" suffix=")">
<foreach collection="criteria.criteria" item="criterion">
<choose>
<when test="criterion.noValue">
and ${criterion.condition}
</when>
<when test="criterion.singleValue">
and ${criterion.condition} #{criterion.value}
</when>
<when test="criterion.betweenValue">
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when test="criterion.listValue">
and ${criterion.condition}
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql id="Update_By_Example_Where_Clause">
<where>
<foreach collection="example.oredCriteria" item="criteria" separator="or">
<if test="criteria.valid">
<trim prefix="(" prefixOverrides="and" suffix=")">
<foreach collection="criteria.criteria" item="criterion">
<choose>
<when test="criterion.noValue">
and ${criterion.condition}
</when>
<when test="criterion.singleValue">
and ${criterion.condition} #{criterion.value}
</when>
<when test="criterion.betweenValue">
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when test="criterion.listValue">
and ${criterion.condition}
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql id="Base_Column_List">
ID, CONSIGNMENT_CODE, SEND_TIME, SHIP_DATE, SHIPPER_COUNTRY, RECIPIENT_COUNTRY, DEST_IATA_CODE,
CREATE_TIME
</sql>
<select id="selectByExample" parameterType="com.fedex.connect.common.model.biz.CeInfoExample" resultMap="BaseResultMap">
<include refid="OracleDialectPrefix" />
select
<if test="distinct">
distinct
</if>
'true' as QUERYID,
<include refid="Base_Column_List" />
from T_BIZ_CE_INFO
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
<if test="orderByClause != null">
order by ${orderByClause}
</if>
<include refid="OracleDialectSuffix" />
</select>
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from T_BIZ_CE_INFO
where ID = #{id,jdbcType=NUMERIC}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
delete from T_BIZ_CE_INFO
where ID = #{id,jdbcType=NUMERIC}
</delete>
<delete id="deleteByExample" parameterType="com.fedex.connect.common.model.biz.CeInfoExample">
delete from T_BIZ_CE_INFO
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</delete>
<insert id="insert" parameterType="com.fedex.connect.common.model.biz.CeInfo">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_BIZ_CE_INFO.NEXTVAL FROM DUAL
</selectKey>
insert into T_BIZ_CE_INFO (ID, CONSIGNMENT_CODE, SEND_TIME,
SHIP_DATE, SHIPPER_COUNTRY, RECIPIENT_COUNTRY,
DEST_IATA_CODE, CREATE_TIME)
values (#{id,jdbcType=NUMERIC}, #{consignmentCode,jdbcType=VARCHAR}, #{sendTime,jdbcType=TIMESTAMP},
#{shipDate,jdbcType=TIMESTAMP}, #{shipperCountry,jdbcType=VARCHAR}, #{recipientCountry,jdbcType=VARCHAR},
#{destIataCode,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP})
</insert>
<insert id="insertSelective" parameterType="com.fedex.connect.common.model.biz.CeInfo">
<selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
SELECT SEQ_T_BIZ_CE_INFO.NEXTVAL FROM DUAL
</selectKey>
insert into T_BIZ_CE_INFO
<trim prefix="(" suffix=")" suffixOverrides=",">
ID,
<if test="consignmentCode != null">
CONSIGNMENT_CODE,
</if>
<if test="sendTime != null">
SEND_TIME,
</if>
<if test="shipDate != null">
SHIP_DATE,
</if>
<if test="shipperCountry != null">
SHIPPER_COUNTRY,
</if>
<if test="recipientCountry != null">
RECIPIENT_COUNTRY,
</if>
<if test="destIataCode != null">
DEST_IATA_CODE,
</if>
<if test="createTime != null">
CREATE_TIME,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
#{id,jdbcType=NUMERIC},
<if test="consignmentCode != null">
#{consignmentCode,jdbcType=VARCHAR},
</if>
<if test="sendTime != null">
#{sendTime,jdbcType=TIMESTAMP},
</if>
<if test="shipDate != null">
#{shipDate,jdbcType=TIMESTAMP},
</if>
<if test="shipperCountry != null">
#{shipperCountry,jdbcType=VARCHAR},
</if>
<if test="recipientCountry != null">
#{recipientCountry,jdbcType=VARCHAR},
</if>
<if test="destIataCode != null">
#{destIataCode,jdbcType=VARCHAR},
</if>
<if test="createTime != null">
#{createTime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<select id="countByExample" parameterType="com.fedex.connect.common.model.biz.CeInfoExample" resultType="java.lang.Long">
select count(*) from T_BIZ_CE_INFO
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</select>
<update id="updateByExampleSelective" parameterType="map">
update T_BIZ_CE_INFO
<set>
<if test="record.id != null">
ID = #{record.id,jdbcType=NUMERIC},
</if>
<if test="record.consignmentCode != null">
CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR},
</if>
<if test="record.sendTime != null">
SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
</if>
<if test="record.shipDate != null">
SHIP_DATE = #{record.shipDate,jdbcType=TIMESTAMP},
</if>
<if test="record.shipperCountry != null">
SHIPPER_COUNTRY = #{record.shipperCountry,jdbcType=VARCHAR},
</if>
<if test="record.recipientCountry != null">
RECIPIENT_COUNTRY = #{record.recipientCountry,jdbcType=VARCHAR},
</if>
<if test="record.destIataCode != null">
DEST_IATA_CODE = #{record.destIataCode,jdbcType=VARCHAR},
</if>
<if test="record.createTime != null">
CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
</if>
</set>
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByExample" parameterType="map">
update T_BIZ_CE_INFO
set ID = #{record.id,jdbcType=NUMERIC},
CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR},
SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
SHIP_DATE = #{record.shipDate,jdbcType=TIMESTAMP},
SHIPPER_COUNTRY = #{record.shipperCountry,jdbcType=VARCHAR},
RECIPIENT_COUNTRY = #{record.recipientCountry,jdbcType=VARCHAR},
DEST_IATA_CODE = #{record.destIataCode,jdbcType=VARCHAR},
CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP}
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.biz.CeInfo">
update T_BIZ_CE_INFO
<set>
<if test="consignmentCode != null">
CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR},
</if>
<if test="sendTime != null">
SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
</if>
<if test="shipDate != null">
SHIP_DATE = #{shipDate,jdbcType=TIMESTAMP},
</if>
<if test="shipperCountry != null">
SHIPPER_COUNTRY = #{shipperCountry,jdbcType=VARCHAR},
</if>
<if test="recipientCountry != null">
RECIPIENT_COUNTRY = #{recipientCountry,jdbcType=VARCHAR},
</if>
<if test="destIataCode != null">
DEST_IATA_CODE = #{destIataCode,jdbcType=VARCHAR},
</if>
<if test="createTime != null">
CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
</if>
</set>
where ID = #{id,jdbcType=NUMERIC}
</update>
<update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.biz.CeInfo">
update T_BIZ_CE_INFO
set CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR},
SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
SHIP_DATE = #{shipDate,jdbcType=TIMESTAMP},
SHIPPER_COUNTRY = #{shipperCountry,jdbcType=VARCHAR},
RECIPIENT_COUNTRY = #{recipientCountry,jdbcType=VARCHAR},
DEST_IATA_CODE = #{destIataCode,jdbcType=VARCHAR},
CREATE_TIME = #{createTime,jdbcType=TIMESTAMP}
where ID = #{id,jdbcType=NUMERIC}
</update>
<sql id="OracleDialectPrefix">
<if test="limitStart != null and limitStart&gt;=0">
select * from ( select row_.*, rownum rownum_ from (
</if>
</sql>
<sql id="OracleDialectSuffix">
<if test="limitStart != null and limitStart&gt;=0">
<![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]>
</if>
</sql>
</mapper>
\ No newline at end of file
package com.fedex.connect.common.model.biz;
import java.io.Serializable;
import java.util.Date;
/**
* DESC: CE501报文业务表
* TABLE: T_BIZ_CE_INFO
*/
public class CeInfo implements Serializable {
/**
* ID,自动增加
*/
private Long id;
/**
* 运单号
*/
private String consignmentCode;
/**
* DM发送时间
*/
private Date sendTime;
/**
* 预计取件时间
*/
private Date shipDate;
/**
* 发货人国家
*/
private String shipperCountry;
/**
* 收件人国家
*/
private String recipientCountry;
/**
* 目的国口岸
*/
private String destIataCode;
/**
* 创建时间
*/
private Date createTime;
/**
* 创建人ID,关联用户表ID
*/
private Long createUserId;
/**
* 创建人名称
*/
private String createUserName;
/**
* 修改时间
*/
private Date modifyTime;
/**
* 修改人ID,关联用户表ID
*/
private Long modifyUserId;
/**
* 修改人名称
*/
private String modifyUserName;
/**
* 原产国全称
*/
private String countOrigin;
/**
* 目的国全称
*/
private String destinationCountry;
/**
* 申报币制
*/
private String customsCurrency;
/**
* 申报价格
*/
private Long customsValue;
/**
* 重量
*/
private Long weight;
/**
* 重量单位
*/
private Long weightunit;
/**
* 扫描状态日期
*/
private Date scandate;
/**
* 发货联系人姓名
*/
private String shipperContactName;
/**
* 发货人手机号
*/
private String shipperPhone;
/**
* 发货人计费账号
*/
private String shipperAccount;
/**
* 发货人公司
*/
private String shipperCompany;
/**
* 发货人地址1
*/
private String shipperAddrLine1;
/**
* 发货人地址2
*/
private String shipperAddrLine2;
/**
* 发货人城市
*/
private String shipperCity;
/**
* 发货人邮箱
*/
private String shipperEmail;
/**
* 收件联系人姓名
*/
private String recipientContactName;
/**
* 收件人手机号
*/
private String recipientPhone;
/**
* 收件人公司
*/
private String recipientCompany;
/**
* 收件人地址1
*/
private String recipientAddrLine1;
/**
* 收件人地址2
*/
private String recipientAddrLine2;
/**
* 收件人地址3
*/
private String recipientAddrLine3;
/**
* 收件人城市
*/
private String recipientCity;
private static final long serialVersionUID = 1L;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getConsignmentCode() {
return consignmentCode;
}
public void setConsignmentCode(String consignmentCode) {
this.consignmentCode = consignmentCode == null ? null : consignmentCode.trim();
}
public Date getSendTime() {
return sendTime;
}
public void setSendTime(Date sendTime) {
this.sendTime = sendTime;
}
public Date getShipDate() {
return shipDate;
}
public void setShipDate(Date shipDate) {
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;
}
public void setDestIataCode(String destIataCode) {
this.destIataCode = destIataCode == null ? null : destIataCode.trim();
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Long getCreateUserId() {
return createUserId;
}
public void setCreateUserId(Long createUserId) {
this.createUserId = createUserId;
}
public String getCreateUserName() {
return createUserName;
}
public void setCreateUserName(String createUserName) {
this.createUserName = createUserName == null ? null : createUserName.trim();
}
public Date getModifyTime() {
return modifyTime;
}
public void setModifyTime(Date modifyTime) {
this.modifyTime = modifyTime;
}
public Long getModifyUserId() {
return modifyUserId;
}
public void setModifyUserId(Long modifyUserId) {
this.modifyUserId = modifyUserId;
}
public String getModifyUserName() {
return modifyUserName;
}
public void setModifyUserName(String modifyUserName) {
this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
}
public String getCountOrigin() {
return countOrigin;
}
public void setCountOrigin(String countOrigin) {
this.countOrigin = countOrigin == null ? null : countOrigin.trim();
}
public String getDestinationCountry() {
return destinationCountry;
}
public void setDestinationCountry(String destinationCountry) {
this.destinationCountry = destinationCountry == null ? null : destinationCountry.trim();
}
public String getCustomsCurrency() {
return customsCurrency;
}
public void setCustomsCurrency(String customsCurrency) {
this.customsCurrency = customsCurrency == null ? null : customsCurrency.trim();
}
public Long getCustomsValue() {
return customsValue;
}
public void setCustomsValue(Long customsValue) {
this.customsValue = customsValue;
}
public Long getWeight() {
return weight;
}
public void setWeight(Long weight) {
this.weight = weight;
}
public Long getWeightunit() {
return weightunit;
}
public void setWeightunit(Long weightunit) {
this.weightunit = weightunit;
}
public Date getScandate() {
return scandate;
}
public void setScandate(Date scandate) {
this.scandate = scandate;
}
public String getShipperContactName() {
return shipperContactName;
}
public void setShipperContactName(String shipperContactName) {
this.shipperContactName = shipperContactName == null ? null : shipperContactName.trim();
}
public String getShipperPhone() {
return shipperPhone;
}
public void setShipperPhone(String shipperPhone) {
this.shipperPhone = shipperPhone == null ? null : shipperPhone.trim();
}
public String getShipperAccount() {
return shipperAccount;
}
public void setShipperAccount(String shipperAccount) {
this.shipperAccount = shipperAccount == null ? null : shipperAccount.trim();
}
public String getShipperCompany() {
return shipperCompany;
}
public void setShipperCompany(String shipperCompany) {
this.shipperCompany = shipperCompany == null ? null : shipperCompany.trim();
}
public String getShipperAddrLine1() {
return shipperAddrLine1;
}
public void setShipperAddrLine1(String shipperAddrLine1) {
this.shipperAddrLine1 = shipperAddrLine1 == null ? null : shipperAddrLine1.trim();
}
public String getShipperAddrLine2() {
return shipperAddrLine2;
}
public void setShipperAddrLine2(String shipperAddrLine2) {
this.shipperAddrLine2 = shipperAddrLine2 == null ? null : shipperAddrLine2.trim();
}
public String getShipperCity() {
return shipperCity;
}
public void setShipperCity(String shipperCity) {
this.shipperCity = shipperCity == null ? null : shipperCity.trim();
}
public String getShipperEmail() {
return shipperEmail;
}
public void setShipperEmail(String shipperEmail) {
this.shipperEmail = shipperEmail == null ? null : shipperEmail.trim();
}
public String getRecipientContactName() {
return recipientContactName;
}
public void setRecipientContactName(String recipientContactName) {
this.recipientContactName = recipientContactName == null ? null : recipientContactName.trim();
}
public String getRecipientPhone() {
return recipientPhone;
}
public void setRecipientPhone(String recipientPhone) {
this.recipientPhone = recipientPhone == null ? null : recipientPhone.trim();
}
public String getRecipientCompany() {
return recipientCompany;
}
public void setRecipientCompany(String recipientCompany) {
this.recipientCompany = recipientCompany == null ? null : recipientCompany.trim();
}
public String getRecipientAddrLine1() {
return recipientAddrLine1;
}
public void setRecipientAddrLine1(String recipientAddrLine1) {
this.recipientAddrLine1 = recipientAddrLine1 == null ? null : recipientAddrLine1.trim();
}
public String getRecipientAddrLine2() {
return recipientAddrLine2;
}
public void setRecipientAddrLine2(String recipientAddrLine2) {
this.recipientAddrLine2 = recipientAddrLine2 == null ? null : recipientAddrLine2.trim();
}
public String getRecipientAddrLine3() {
return recipientAddrLine3;
}
public void setRecipientAddrLine3(String recipientAddrLine3) {
this.recipientAddrLine3 = recipientAddrLine3 == null ? null : recipientAddrLine3.trim();
}
public String getRecipientCity() {
return recipientCity;
}
public void setRecipientCity(String recipientCity) {
this.recipientCity = recipientCity == null ? null : recipientCity.trim();
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", id=").append(id);
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);
sb.append(", createUserName=").append(createUserName);
sb.append(", modifyTime=").append(modifyTime);
sb.append(", modifyUserId=").append(modifyUserId);
sb.append(", modifyUserName=").append(modifyUserName);
sb.append(", countOrigin=").append(countOrigin);
sb.append(", destinationCountry=").append(destinationCountry);
sb.append(", customsCurrency=").append(customsCurrency);
sb.append(", customsValue=").append(customsValue);
sb.append(", weight=").append(weight);
sb.append(", weightunit=").append(weightunit);
sb.append(", scandate=").append(scandate);
sb.append(", shipperContactName=").append(shipperContactName);
sb.append(", shipperPhone=").append(shipperPhone);
sb.append(", shipperAccount=").append(shipperAccount);
sb.append(", shipperCompany=").append(shipperCompany);
sb.append(", shipperAddrLine1=").append(shipperAddrLine1);
sb.append(", shipperAddrLine2=").append(shipperAddrLine2);
sb.append(", shipperCity=").append(shipperCity);
sb.append(", shipperEmail=").append(shipperEmail);
sb.append(", recipientContactName=").append(recipientContactName);
sb.append(", recipientPhone=").append(recipientPhone);
sb.append(", recipientCompany=").append(recipientCompany);
sb.append(", recipientAddrLine1=").append(recipientAddrLine1);
sb.append(", recipientAddrLine2=").append(recipientAddrLine2);
sb.append(", recipientAddrLine3=").append(recipientAddrLine3);
sb.append(", recipientCity=").append(recipientCity);
sb.append(", serialVersionUID=").append(serialVersionUID);
sb.append("]");
return sb.toString();
}
}
\ No newline at end of file
package com.fedex.connect.common.model.biz;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class CeInfoExample {
protected String orderByClause;
protected boolean distinct;
protected List<Criteria> oredCriteria;
protected Integer limitStart;
protected Integer limitSize;
public CeInfoExample() {
oredCriteria = new ArrayList<Criteria>();
}
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
public String getOrderByClause() {
return orderByClause;
}
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
public boolean isDistinct() {
return distinct;
}
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
public void setLimitStart(Integer limitStart) {
this.limitStart=limitStart;
}
public Integer getLimitStart() {
return limitStart;
}
public void setLimitSize(Integer limitSize) {
this.limitSize=limitSize;
}
public Integer getLimitSize() {
return limitSize;
}
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andIdIsNull() {
addCriterion("ID is null");
return (Criteria) this;
}
public Criteria andIdIsNotNull() {
addCriterion("ID is not null");
return (Criteria) this;
}
public Criteria andIdEqualTo(Long value) {
addCriterion("ID =", value, "id");
return (Criteria) this;
}
public Criteria andIdNotEqualTo(Long value) {
addCriterion("ID <>", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThan(Long value) {
addCriterion("ID >", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThanOrEqualTo(Long value) {
addCriterion("ID >=", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThan(Long value) {
addCriterion("ID <", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThanOrEqualTo(Long value) {
addCriterion("ID <=", value, "id");
return (Criteria) this;
}
public Criteria andIdIn(List<Long> values) {
addCriterion("ID in", values, "id");
return (Criteria) this;
}
public Criteria andIdNotIn(List<Long> values) {
addCriterion("ID not in", values, "id");
return (Criteria) this;
}
public Criteria andIdBetween(Long value1, Long value2) {
addCriterion("ID between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andIdNotBetween(Long value1, Long value2) {
addCriterion("ID not between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andConsignmentCodeIsNull() {
addCriterion("CONSIGNMENT_CODE is null");
return (Criteria) this;
}
public Criteria andConsignmentCodeIsNotNull() {
addCriterion("CONSIGNMENT_CODE is not null");
return (Criteria) this;
}
public Criteria andConsignmentCodeEqualTo(String value) {
addCriterion("CONSIGNMENT_CODE =", value, "consignmentCode");
return (Criteria) this;
}
public Criteria andConsignmentCodeNotEqualTo(String value) {
addCriterion("CONSIGNMENT_CODE <>", value, "consignmentCode");
return (Criteria) this;
}
public Criteria andConsignmentCodeGreaterThan(String value) {
addCriterion("CONSIGNMENT_CODE >", value, "consignmentCode");
return (Criteria) this;
}
public Criteria andConsignmentCodeGreaterThanOrEqualTo(String value) {
addCriterion("CONSIGNMENT_CODE >=", value, "consignmentCode");
return (Criteria) this;
}
public Criteria andConsignmentCodeLessThan(String value) {
addCriterion("CONSIGNMENT_CODE <", value, "consignmentCode");
return (Criteria) this;
}
public Criteria andConsignmentCodeLessThanOrEqualTo(String value) {
addCriterion("CONSIGNMENT_CODE <=", value, "consignmentCode");
return (Criteria) this;
}
public Criteria andConsignmentCodeLike(String value) {
addCriterion("CONSIGNMENT_CODE like", value, "consignmentCode");
return (Criteria) this;
}
public Criteria andConsignmentCodeNotLike(String value) {
addCriterion("CONSIGNMENT_CODE not like", value, "consignmentCode");
return (Criteria) this;
}
public Criteria andConsignmentCodeIn(List<String> values) {
addCriterion("CONSIGNMENT_CODE in", values, "consignmentCode");
return (Criteria) this;
}
public Criteria andConsignmentCodeNotIn(List<String> values) {
addCriterion("CONSIGNMENT_CODE not in", values, "consignmentCode");
return (Criteria) this;
}
public Criteria andConsignmentCodeBetween(String value1, String value2) {
addCriterion("CONSIGNMENT_CODE between", value1, value2, "consignmentCode");
return (Criteria) this;
}
public Criteria andConsignmentCodeNotBetween(String value1, String value2) {
addCriterion("CONSIGNMENT_CODE not between", value1, value2, "consignmentCode");
return (Criteria) this;
}
public Criteria andSendTimeIsNull() {
addCriterion("SEND_TIME is null");
return (Criteria) this;
}
public Criteria andSendTimeIsNotNull() {
addCriterion("SEND_TIME is not null");
return (Criteria) this;
}
public Criteria andSendTimeEqualTo(Date value) {
addCriterion("SEND_TIME =", value, "sendTime");
return (Criteria) this;
}
public Criteria andSendTimeNotEqualTo(Date value) {
addCriterion("SEND_TIME <>", value, "sendTime");
return (Criteria) this;
}
public Criteria andSendTimeGreaterThan(Date value) {
addCriterion("SEND_TIME >", value, "sendTime");
return (Criteria) this;
}
public Criteria andSendTimeGreaterThanOrEqualTo(Date value) {
addCriterion("SEND_TIME >=", value, "sendTime");
return (Criteria) this;
}
public Criteria andSendTimeLessThan(Date value) {
addCriterion("SEND_TIME <", value, "sendTime");
return (Criteria) this;
}
public Criteria andSendTimeLessThanOrEqualTo(Date value) {
addCriterion("SEND_TIME <=", value, "sendTime");
return (Criteria) this;
}
public Criteria andSendTimeIn(List<Date> values) {
addCriterion("SEND_TIME in", values, "sendTime");
return (Criteria) this;
}
public Criteria andSendTimeNotIn(List<Date> values) {
addCriterion("SEND_TIME not in", values, "sendTime");
return (Criteria) this;
}
public Criteria andSendTimeBetween(Date value1, Date value2) {
addCriterion("SEND_TIME between", value1, value2, "sendTime");
return (Criteria) this;
}
public Criteria andSendTimeNotBetween(Date value1, Date value2) {
addCriterion("SEND_TIME not between", value1, value2, "sendTime");
return (Criteria) this;
}
public Criteria andShipDateIsNull() {
addCriterion("SHIP_DATE is null");
return (Criteria) this;
}
public Criteria andShipDateIsNotNull() {
addCriterion("SHIP_DATE is not null");
return (Criteria) this;
}
public Criteria andShipDateEqualTo(Date value) {
addCriterion("SHIP_DATE =", value, "shipDate");
return (Criteria) this;
}
public Criteria andShipDateNotEqualTo(Date value) {
addCriterion("SHIP_DATE <>", value, "shipDate");
return (Criteria) this;
}
public Criteria andShipDateGreaterThan(Date value) {
addCriterion("SHIP_DATE >", value, "shipDate");
return (Criteria) this;
}
public Criteria andShipDateGreaterThanOrEqualTo(Date value) {
addCriterion("SHIP_DATE >=", value, "shipDate");
return (Criteria) this;
}
public Criteria andShipDateLessThan(Date value) {
addCriterion("SHIP_DATE <", value, "shipDate");
return (Criteria) this;
}
public Criteria andShipDateLessThanOrEqualTo(Date value) {
addCriterion("SHIP_DATE <=", value, "shipDate");
return (Criteria) this;
}
public Criteria andShipDateIn(List<Date> values) {
addCriterion("SHIP_DATE in", values, "shipDate");
return (Criteria) this;
}
public Criteria andShipDateNotIn(List<Date> values) {
addCriterion("SHIP_DATE not in", values, "shipDate");
return (Criteria) this;
}
public Criteria andShipDateBetween(Date value1, Date value2) {
addCriterion("SHIP_DATE between", value1, value2, "shipDate");
return (Criteria) this;
}
public Criteria andShipDateNotBetween(Date value1, Date value2) {
addCriterion("SHIP_DATE not between", value1, value2, "shipDate");
return (Criteria) this;
}
public Criteria andShipperCountryIsNull() {
addCriterion("SHIPPER_COUNTRY is null");
return (Criteria) this;
}
public Criteria andShipperCountryIsNotNull() {
addCriterion("SHIPPER_COUNTRY is not null");
return (Criteria) this;
}
public Criteria andShipperCountryEqualTo(String value) {
addCriterion("SHIPPER_COUNTRY =", value, "shipperCountry");
return (Criteria) this;
}
public Criteria andShipperCountryNotEqualTo(String value) {
addCriterion("SHIPPER_COUNTRY <>", value, "shipperCountry");
return (Criteria) this;
}
public Criteria andShipperCountryGreaterThan(String value) {
addCriterion("SHIPPER_COUNTRY >", value, "shipperCountry");
return (Criteria) this;
}
public Criteria andShipperCountryGreaterThanOrEqualTo(String value) {
addCriterion("SHIPPER_COUNTRY >=", value, "shipperCountry");
return (Criteria) this;
}
public Criteria andShipperCountryLessThan(String value) {
addCriterion("SHIPPER_COUNTRY <", value, "shipperCountry");
return (Criteria) this;
}
public Criteria andShipperCountryLessThanOrEqualTo(String value) {
addCriterion("SHIPPER_COUNTRY <=", value, "shipperCountry");
return (Criteria) this;
}
public Criteria andShipperCountryLike(String value) {
addCriterion("SHIPPER_COUNTRY like", value, "shipperCountry");
return (Criteria) this;
}
public Criteria andShipperCountryNotLike(String value) {
addCriterion("SHIPPER_COUNTRY not like", value, "shipperCountry");
return (Criteria) this;
}
public Criteria andShipperCountryIn(List<String> values) {
addCriterion("SHIPPER_COUNTRY in", values, "shipperCountry");
return (Criteria) this;
}
public Criteria andShipperCountryNotIn(List<String> values) {
addCriterion("SHIPPER_COUNTRY not in", values, "shipperCountry");
return (Criteria) this;
}
public Criteria andShipperCountryBetween(String value1, String value2) {
addCriterion("SHIPPER_COUNTRY between", value1, value2, "shipperCountry");
return (Criteria) this;
}
public Criteria andShipperCountryNotBetween(String value1, String value2) {
addCriterion("SHIPPER_COUNTRY not between", value1, value2, "shipperCountry");
return (Criteria) this;
}
public Criteria andRecipientCountryIsNull() {
addCriterion("RECIPIENT_COUNTRY is null");
return (Criteria) this;
}
public Criteria andRecipientCountryIsNotNull() {
addCriterion("RECIPIENT_COUNTRY is not null");
return (Criteria) this;
}
public Criteria andRecipientCountryEqualTo(String value) {
addCriterion("RECIPIENT_COUNTRY =", value, "recipientCountry");
return (Criteria) this;
}
public Criteria andRecipientCountryNotEqualTo(String value) {
addCriterion("RECIPIENT_COUNTRY <>", value, "recipientCountry");
return (Criteria) this;
}
public Criteria andRecipientCountryGreaterThan(String value) {
addCriterion("RECIPIENT_COUNTRY >", value, "recipientCountry");
return (Criteria) this;
}
public Criteria andRecipientCountryGreaterThanOrEqualTo(String value) {
addCriterion("RECIPIENT_COUNTRY >=", value, "recipientCountry");
return (Criteria) this;
}
public Criteria andRecipientCountryLessThan(String value) {
addCriterion("RECIPIENT_COUNTRY <", value, "recipientCountry");
return (Criteria) this;
}
public Criteria andRecipientCountryLessThanOrEqualTo(String value) {
addCriterion("RECIPIENT_COUNTRY <=", value, "recipientCountry");
return (Criteria) this;
}
public Criteria andRecipientCountryLike(String value) {
addCriterion("RECIPIENT_COUNTRY like", value, "recipientCountry");
return (Criteria) this;
}
public Criteria andRecipientCountryNotLike(String value) {
addCriterion("RECIPIENT_COUNTRY not like", value, "recipientCountry");
return (Criteria) this;
}
public Criteria andRecipientCountryIn(List<String> values) {
addCriterion("RECIPIENT_COUNTRY in", values, "recipientCountry");
return (Criteria) this;
}
public Criteria andRecipientCountryNotIn(List<String> values) {
addCriterion("RECIPIENT_COUNTRY not in", values, "recipientCountry");
return (Criteria) this;
}
public Criteria andRecipientCountryBetween(String value1, String value2) {
addCriterion("RECIPIENT_COUNTRY between", value1, value2, "recipientCountry");
return (Criteria) this;
}
public Criteria andRecipientCountryNotBetween(String value1, String value2) {
addCriterion("RECIPIENT_COUNTRY not between", value1, value2, "recipientCountry");
return (Criteria) this;
}
public Criteria andDestIataCodeIsNull() {
addCriterion("DEST_IATA_CODE is null");
return (Criteria) this;
}
public Criteria andDestIataCodeIsNotNull() {
addCriterion("DEST_IATA_CODE is not null");
return (Criteria) this;
}
public Criteria andDestIataCodeEqualTo(String value) {
addCriterion("DEST_IATA_CODE =", value, "destIataCode");
return (Criteria) this;
}
public Criteria andDestIataCodeNotEqualTo(String value) {
addCriterion("DEST_IATA_CODE <>", value, "destIataCode");
return (Criteria) this;
}
public Criteria andDestIataCodeGreaterThan(String value) {
addCriterion("DEST_IATA_CODE >", value, "destIataCode");
return (Criteria) this;
}
public Criteria andDestIataCodeGreaterThanOrEqualTo(String value) {
addCriterion("DEST_IATA_CODE >=", value, "destIataCode");
return (Criteria) this;
}
public Criteria andDestIataCodeLessThan(String value) {
addCriterion("DEST_IATA_CODE <", value, "destIataCode");
return (Criteria) this;
}
public Criteria andDestIataCodeLessThanOrEqualTo(String value) {
addCriterion("DEST_IATA_CODE <=", value, "destIataCode");
return (Criteria) this;
}
public Criteria andDestIataCodeLike(String value) {
addCriterion("DEST_IATA_CODE like", value, "destIataCode");
return (Criteria) this;
}
public Criteria andDestIataCodeNotLike(String value) {
addCriterion("DEST_IATA_CODE not like", value, "destIataCode");
return (Criteria) this;
}
public Criteria andDestIataCodeIn(List<String> values) {
addCriterion("DEST_IATA_CODE in", values, "destIataCode");
return (Criteria) this;
}
public Criteria andDestIataCodeNotIn(List<String> values) {
addCriterion("DEST_IATA_CODE not in", values, "destIataCode");
return (Criteria) this;
}
public Criteria andDestIataCodeBetween(String value1, String value2) {
addCriterion("DEST_IATA_CODE between", value1, value2, "destIataCode");
return (Criteria) this;
}
public Criteria andDestIataCodeNotBetween(String value1, String value2) {
addCriterion("DEST_IATA_CODE not between", value1, value2, "destIataCode");
return (Criteria) this;
}
public Criteria andCreateTimeIsNull() {
addCriterion("CREATE_TIME is null");
return (Criteria) this;
}
public Criteria andCreateTimeIsNotNull() {
addCriterion("CREATE_TIME is not null");
return (Criteria) this;
}
public Criteria andCreateTimeEqualTo(Date value) {
addCriterion("CREATE_TIME =", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotEqualTo(Date value) {
addCriterion("CREATE_TIME <>", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThan(Date value) {
addCriterion("CREATE_TIME >", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
addCriterion("CREATE_TIME >=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThan(Date value) {
addCriterion("CREATE_TIME <", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
addCriterion("CREATE_TIME <=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeIn(List<Date> values) {
addCriterion("CREATE_TIME in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotIn(List<Date> values) {
addCriterion("CREATE_TIME not in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeBetween(Date value1, Date value2) {
addCriterion("CREATE_TIME between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
addCriterion("CREATE_TIME not between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andCreateUserIdIsNull() {
addCriterion("CREATE_USER_ID is null");
return (Criteria) this;
}
public Criteria andCreateUserIdIsNotNull() {
addCriterion("CREATE_USER_ID is not null");
return (Criteria) this;
}
public Criteria andCreateUserIdEqualTo(Long value) {
addCriterion("CREATE_USER_ID =", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdNotEqualTo(Long value) {
addCriterion("CREATE_USER_ID <>", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdGreaterThan(Long value) {
addCriterion("CREATE_USER_ID >", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdGreaterThanOrEqualTo(Long value) {
addCriterion("CREATE_USER_ID >=", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdLessThan(Long value) {
addCriterion("CREATE_USER_ID <", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdLessThanOrEqualTo(Long value) {
addCriterion("CREATE_USER_ID <=", value, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdIn(List<Long> values) {
addCriterion("CREATE_USER_ID in", values, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdNotIn(List<Long> values) {
addCriterion("CREATE_USER_ID not in", values, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdBetween(Long value1, Long value2) {
addCriterion("CREATE_USER_ID between", value1, value2, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserIdNotBetween(Long value1, Long value2) {
addCriterion("CREATE_USER_ID not between", value1, value2, "createUserId");
return (Criteria) this;
}
public Criteria andCreateUserNameIsNull() {
addCriterion("CREATE_USER_NAME is null");
return (Criteria) this;
}
public Criteria andCreateUserNameIsNotNull() {
addCriterion("CREATE_USER_NAME is not null");
return (Criteria) this;
}
public Criteria andCreateUserNameEqualTo(String value) {
addCriterion("CREATE_USER_NAME =", value, "createUserName");
return (Criteria) this;
}
public Criteria andCreateUserNameNotEqualTo(String value) {
addCriterion("CREATE_USER_NAME <>", value, "createUserName");
return (Criteria) this;
}
public Criteria andCreateUserNameGreaterThan(String value) {
addCriterion("CREATE_USER_NAME >", value, "createUserName");
return (Criteria) this;
}
public Criteria andCreateUserNameGreaterThanOrEqualTo(String value) {
addCriterion("CREATE_USER_NAME >=", value, "createUserName");
return (Criteria) this;
}
public Criteria andCreateUserNameLessThan(String value) {
addCriterion("CREATE_USER_NAME <", value, "createUserName");
return (Criteria) this;
}
public Criteria andCreateUserNameLessThanOrEqualTo(String value) {
addCriterion("CREATE_USER_NAME <=", value, "createUserName");
return (Criteria) this;
}
public Criteria andCreateUserNameLike(String value) {
addCriterion("CREATE_USER_NAME like", value, "createUserName");
return (Criteria) this;
}
public Criteria andCreateUserNameNotLike(String value) {
addCriterion("CREATE_USER_NAME not like", value, "createUserName");
return (Criteria) this;
}
public Criteria andCreateUserNameIn(List<String> values) {
addCriterion("CREATE_USER_NAME in", values, "createUserName");
return (Criteria) this;
}
public Criteria andCreateUserNameNotIn(List<String> values) {
addCriterion("CREATE_USER_NAME not in", values, "createUserName");
return (Criteria) this;
}
public Criteria andCreateUserNameBetween(String value1, String value2) {
addCriterion("CREATE_USER_NAME between", value1, value2, "createUserName");
return (Criteria) this;
}
public Criteria andCreateUserNameNotBetween(String value1, String value2) {
addCriterion("CREATE_USER_NAME not between", value1, value2, "createUserName");
return (Criteria) this;
}
public Criteria andModifyTimeIsNull() {
addCriterion("MODIFY_TIME is null");
return (Criteria) this;
}
public Criteria andModifyTimeIsNotNull() {
addCriterion("MODIFY_TIME is not null");
return (Criteria) this;
}
public Criteria andModifyTimeEqualTo(Date value) {
addCriterion("MODIFY_TIME =", value, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeNotEqualTo(Date value) {
addCriterion("MODIFY_TIME <>", value, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeGreaterThan(Date value) {
addCriterion("MODIFY_TIME >", value, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeGreaterThanOrEqualTo(Date value) {
addCriterion("MODIFY_TIME >=", value, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeLessThan(Date value) {
addCriterion("MODIFY_TIME <", value, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeLessThanOrEqualTo(Date value) {
addCriterion("MODIFY_TIME <=", value, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeIn(List<Date> values) {
addCriterion("MODIFY_TIME in", values, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeNotIn(List<Date> values) {
addCriterion("MODIFY_TIME not in", values, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeBetween(Date value1, Date value2) {
addCriterion("MODIFY_TIME between", value1, value2, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeNotBetween(Date value1, Date value2) {
addCriterion("MODIFY_TIME not between", value1, value2, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyUserIdIsNull() {
addCriterion("MODIFY_USER_ID is null");
return (Criteria) this;
}
public Criteria andModifyUserIdIsNotNull() {
addCriterion("MODIFY_USER_ID is not null");
return (Criteria) this;
}
public Criteria andModifyUserIdEqualTo(Long value) {
addCriterion("MODIFY_USER_ID =", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdNotEqualTo(Long value) {
addCriterion("MODIFY_USER_ID <>", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdGreaterThan(Long value) {
addCriterion("MODIFY_USER_ID >", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdGreaterThanOrEqualTo(Long value) {
addCriterion("MODIFY_USER_ID >=", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdLessThan(Long value) {
addCriterion("MODIFY_USER_ID <", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdLessThanOrEqualTo(Long value) {
addCriterion("MODIFY_USER_ID <=", value, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdIn(List<Long> values) {
addCriterion("MODIFY_USER_ID in", values, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdNotIn(List<Long> values) {
addCriterion("MODIFY_USER_ID not in", values, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdBetween(Long value1, Long value2) {
addCriterion("MODIFY_USER_ID between", value1, value2, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserIdNotBetween(Long value1, Long value2) {
addCriterion("MODIFY_USER_ID not between", value1, value2, "modifyUserId");
return (Criteria) this;
}
public Criteria andModifyUserNameIsNull() {
addCriterion("MODIFY_USER_NAME is null");
return (Criteria) this;
}
public Criteria andModifyUserNameIsNotNull() {
addCriterion("MODIFY_USER_NAME is not null");
return (Criteria) this;
}
public Criteria andModifyUserNameEqualTo(String value) {
addCriterion("MODIFY_USER_NAME =", value, "modifyUserName");
return (Criteria) this;
}
public Criteria andModifyUserNameNotEqualTo(String value) {
addCriterion("MODIFY_USER_NAME <>", value, "modifyUserName");
return (Criteria) this;
}
public Criteria andModifyUserNameGreaterThan(String value) {
addCriterion("MODIFY_USER_NAME >", value, "modifyUserName");
return (Criteria) this;
}
public Criteria andModifyUserNameGreaterThanOrEqualTo(String value) {
addCriterion("MODIFY_USER_NAME >=", value, "modifyUserName");
return (Criteria) this;
}
public Criteria andModifyUserNameLessThan(String value) {
addCriterion("MODIFY_USER_NAME <", value, "modifyUserName");
return (Criteria) this;
}
public Criteria andModifyUserNameLessThanOrEqualTo(String value) {
addCriterion("MODIFY_USER_NAME <=", value, "modifyUserName");
return (Criteria) this;
}
public Criteria andModifyUserNameLike(String value) {
addCriterion("MODIFY_USER_NAME like", value, "modifyUserName");
return (Criteria) this;
}
public Criteria andModifyUserNameNotLike(String value) {
addCriterion("MODIFY_USER_NAME not like", value, "modifyUserName");
return (Criteria) this;
}
public Criteria andModifyUserNameIn(List<String> values) {
addCriterion("MODIFY_USER_NAME in", values, "modifyUserName");
return (Criteria) this;
}
public Criteria andModifyUserNameNotIn(List<String> values) {
addCriterion("MODIFY_USER_NAME not in", values, "modifyUserName");
return (Criteria) this;
}
public Criteria andModifyUserNameBetween(String value1, String value2) {
addCriterion("MODIFY_USER_NAME between", value1, value2, "modifyUserName");
return (Criteria) this;
}
public Criteria andModifyUserNameNotBetween(String value1, String value2) {
addCriterion("MODIFY_USER_NAME not between", value1, value2, "modifyUserName");
return (Criteria) this;
}
public Criteria andCountOriginIsNull() {
addCriterion("COUNT_ORIGIN is null");
return (Criteria) this;
}
public Criteria andCountOriginIsNotNull() {
addCriterion("COUNT_ORIGIN is not null");
return (Criteria) this;
}
public Criteria andCountOriginEqualTo(String value) {
addCriterion("COUNT_ORIGIN =", value, "countOrigin");
return (Criteria) this;
}
public Criteria andCountOriginNotEqualTo(String value) {
addCriterion("COUNT_ORIGIN <>", value, "countOrigin");
return (Criteria) this;
}
public Criteria andCountOriginGreaterThan(String value) {
addCriterion("COUNT_ORIGIN >", value, "countOrigin");
return (Criteria) this;
}
public Criteria andCountOriginGreaterThanOrEqualTo(String value) {
addCriterion("COUNT_ORIGIN >=", value, "countOrigin");
return (Criteria) this;
}
public Criteria andCountOriginLessThan(String value) {
addCriterion("COUNT_ORIGIN <", value, "countOrigin");
return (Criteria) this;
}
public Criteria andCountOriginLessThanOrEqualTo(String value) {
addCriterion("COUNT_ORIGIN <=", value, "countOrigin");
return (Criteria) this;
}
public Criteria andCountOriginLike(String value) {
addCriterion("COUNT_ORIGIN like", value, "countOrigin");
return (Criteria) this;
}
public Criteria andCountOriginNotLike(String value) {
addCriterion("COUNT_ORIGIN not like", value, "countOrigin");
return (Criteria) this;
}
public Criteria andCountOriginIn(List<String> values) {
addCriterion("COUNT_ORIGIN in", values, "countOrigin");
return (Criteria) this;
}
public Criteria andCountOriginNotIn(List<String> values) {
addCriterion("COUNT_ORIGIN not in", values, "countOrigin");
return (Criteria) this;
}
public Criteria andCountOriginBetween(String value1, String value2) {
addCriterion("COUNT_ORIGIN between", value1, value2, "countOrigin");
return (Criteria) this;
}
public Criteria andCountOriginNotBetween(String value1, String value2) {
addCriterion("COUNT_ORIGIN not between", value1, value2, "countOrigin");
return (Criteria) this;
}
public Criteria andDestinationCountryIsNull() {
addCriterion("DESTINATION_COUNTRY is null");
return (Criteria) this;
}
public Criteria andDestinationCountryIsNotNull() {
addCriterion("DESTINATION_COUNTRY is not null");
return (Criteria) this;
}
public Criteria andDestinationCountryEqualTo(String value) {
addCriterion("DESTINATION_COUNTRY =", value, "destinationCountry");
return (Criteria) this;
}
public Criteria andDestinationCountryNotEqualTo(String value) {
addCriterion("DESTINATION_COUNTRY <>", value, "destinationCountry");
return (Criteria) this;
}
public Criteria andDestinationCountryGreaterThan(String value) {
addCriterion("DESTINATION_COUNTRY >", value, "destinationCountry");
return (Criteria) this;
}
public Criteria andDestinationCountryGreaterThanOrEqualTo(String value) {
addCriterion("DESTINATION_COUNTRY >=", value, "destinationCountry");
return (Criteria) this;
}
public Criteria andDestinationCountryLessThan(String value) {
addCriterion("DESTINATION_COUNTRY <", value, "destinationCountry");
return (Criteria) this;
}
public Criteria andDestinationCountryLessThanOrEqualTo(String value) {
addCriterion("DESTINATION_COUNTRY <=", value, "destinationCountry");
return (Criteria) this;
}
public Criteria andDestinationCountryLike(String value) {
addCriterion("DESTINATION_COUNTRY like", value, "destinationCountry");
return (Criteria) this;
}
public Criteria andDestinationCountryNotLike(String value) {
addCriterion("DESTINATION_COUNTRY not like", value, "destinationCountry");
return (Criteria) this;
}
public Criteria andDestinationCountryIn(List<String> values) {
addCriterion("DESTINATION_COUNTRY in", values, "destinationCountry");
return (Criteria) this;
}
public Criteria andDestinationCountryNotIn(List<String> values) {
addCriterion("DESTINATION_COUNTRY not in", values, "destinationCountry");
return (Criteria) this;
}
public Criteria andDestinationCountryBetween(String value1, String value2) {
addCriterion("DESTINATION_COUNTRY between", value1, value2, "destinationCountry");
return (Criteria) this;
}
public Criteria andDestinationCountryNotBetween(String value1, String value2) {
addCriterion("DESTINATION_COUNTRY not between", value1, value2, "destinationCountry");
return (Criteria) this;
}
public Criteria andCustomsCurrencyIsNull() {
addCriterion("CUSTOMS_CURRENCY is null");
return (Criteria) this;
}
public Criteria andCustomsCurrencyIsNotNull() {
addCriterion("CUSTOMS_CURRENCY is not null");
return (Criteria) this;
}
public Criteria andCustomsCurrencyEqualTo(String value) {
addCriterion("CUSTOMS_CURRENCY =", value, "customsCurrency");
return (Criteria) this;
}
public Criteria andCustomsCurrencyNotEqualTo(String value) {
addCriterion("CUSTOMS_CURRENCY <>", value, "customsCurrency");
return (Criteria) this;
}
public Criteria andCustomsCurrencyGreaterThan(String value) {
addCriterion("CUSTOMS_CURRENCY >", value, "customsCurrency");
return (Criteria) this;
}
public Criteria andCustomsCurrencyGreaterThanOrEqualTo(String value) {
addCriterion("CUSTOMS_CURRENCY >=", value, "customsCurrency");
return (Criteria) this;
}
public Criteria andCustomsCurrencyLessThan(String value) {
addCriterion("CUSTOMS_CURRENCY <", value, "customsCurrency");
return (Criteria) this;
}
public Criteria andCustomsCurrencyLessThanOrEqualTo(String value) {
addCriterion("CUSTOMS_CURRENCY <=", value, "customsCurrency");
return (Criteria) this;
}
public Criteria andCustomsCurrencyLike(String value) {
addCriterion("CUSTOMS_CURRENCY like", value, "customsCurrency");
return (Criteria) this;
}
public Criteria andCustomsCurrencyNotLike(String value) {
addCriterion("CUSTOMS_CURRENCY not like", value, "customsCurrency");
return (Criteria) this;
}
public Criteria andCustomsCurrencyIn(List<String> values) {
addCriterion("CUSTOMS_CURRENCY in", values, "customsCurrency");
return (Criteria) this;
}
public Criteria andCustomsCurrencyNotIn(List<String> values) {
addCriterion("CUSTOMS_CURRENCY not in", values, "customsCurrency");
return (Criteria) this;
}
public Criteria andCustomsCurrencyBetween(String value1, String value2) {
addCriterion("CUSTOMS_CURRENCY between", value1, value2, "customsCurrency");
return (Criteria) this;
}
public Criteria andCustomsCurrencyNotBetween(String value1, String value2) {
addCriterion("CUSTOMS_CURRENCY not between", value1, value2, "customsCurrency");
return (Criteria) this;
}
public Criteria andCustomsValueIsNull() {
addCriterion("CUSTOMS_VALUE is null");
return (Criteria) this;
}
public Criteria andCustomsValueIsNotNull() {
addCriterion("CUSTOMS_VALUE is not null");
return (Criteria) this;
}
public Criteria andCustomsValueEqualTo(Long value) {
addCriterion("CUSTOMS_VALUE =", value, "customsValue");
return (Criteria) this;
}
public Criteria andCustomsValueNotEqualTo(Long value) {
addCriterion("CUSTOMS_VALUE <>", value, "customsValue");
return (Criteria) this;
}
public Criteria andCustomsValueGreaterThan(Long value) {
addCriterion("CUSTOMS_VALUE >", value, "customsValue");
return (Criteria) this;
}
public Criteria andCustomsValueGreaterThanOrEqualTo(Long value) {
addCriterion("CUSTOMS_VALUE >=", value, "customsValue");
return (Criteria) this;
}
public Criteria andCustomsValueLessThan(Long value) {
addCriterion("CUSTOMS_VALUE <", value, "customsValue");
return (Criteria) this;
}
public Criteria andCustomsValueLessThanOrEqualTo(Long value) {
addCriterion("CUSTOMS_VALUE <=", value, "customsValue");
return (Criteria) this;
}
public Criteria andCustomsValueIn(List<Long> values) {
addCriterion("CUSTOMS_VALUE in", values, "customsValue");
return (Criteria) this;
}
public Criteria andCustomsValueNotIn(List<Long> values) {
addCriterion("CUSTOMS_VALUE not in", values, "customsValue");
return (Criteria) this;
}
public Criteria andCustomsValueBetween(Long value1, Long value2) {
addCriterion("CUSTOMS_VALUE between", value1, value2, "customsValue");
return (Criteria) this;
}
public Criteria andCustomsValueNotBetween(Long value1, Long value2) {
addCriterion("CUSTOMS_VALUE not between", value1, value2, "customsValue");
return (Criteria) this;
}
public Criteria andWeightIsNull() {
addCriterion("WEIGHT is null");
return (Criteria) this;
}
public Criteria andWeightIsNotNull() {
addCriterion("WEIGHT is not null");
return (Criteria) this;
}
public Criteria andWeightEqualTo(Long value) {
addCriterion("WEIGHT =", value, "weight");
return (Criteria) this;
}
public Criteria andWeightNotEqualTo(Long value) {
addCriterion("WEIGHT <>", value, "weight");
return (Criteria) this;
}
public Criteria andWeightGreaterThan(Long value) {
addCriterion("WEIGHT >", value, "weight");
return (Criteria) this;
}
public Criteria andWeightGreaterThanOrEqualTo(Long value) {
addCriterion("WEIGHT >=", value, "weight");
return (Criteria) this;
}
public Criteria andWeightLessThan(Long value) {
addCriterion("WEIGHT <", value, "weight");
return (Criteria) this;
}
public Criteria andWeightLessThanOrEqualTo(Long value) {
addCriterion("WEIGHT <=", value, "weight");
return (Criteria) this;
}
public Criteria andWeightIn(List<Long> values) {
addCriterion("WEIGHT in", values, "weight");
return (Criteria) this;
}
public Criteria andWeightNotIn(List<Long> values) {
addCriterion("WEIGHT not in", values, "weight");
return (Criteria) this;
}
public Criteria andWeightBetween(Long value1, Long value2) {
addCriterion("WEIGHT between", value1, value2, "weight");
return (Criteria) this;
}
public Criteria andWeightNotBetween(Long value1, Long value2) {
addCriterion("WEIGHT not between", value1, value2, "weight");
return (Criteria) this;
}
public Criteria andWeightunitIsNull() {
addCriterion("WEIGHTUNIT is null");
return (Criteria) this;
}
public Criteria andWeightunitIsNotNull() {
addCriterion("WEIGHTUNIT is not null");
return (Criteria) this;
}
public Criteria andWeightunitEqualTo(Long value) {
addCriterion("WEIGHTUNIT =", value, "weightunit");
return (Criteria) this;
}
public Criteria andWeightunitNotEqualTo(Long value) {
addCriterion("WEIGHTUNIT <>", value, "weightunit");
return (Criteria) this;
}
public Criteria andWeightunitGreaterThan(Long value) {
addCriterion("WEIGHTUNIT >", value, "weightunit");
return (Criteria) this;
}
public Criteria andWeightunitGreaterThanOrEqualTo(Long value) {
addCriterion("WEIGHTUNIT >=", value, "weightunit");
return (Criteria) this;
}
public Criteria andWeightunitLessThan(Long value) {
addCriterion("WEIGHTUNIT <", value, "weightunit");
return (Criteria) this;
}
public Criteria andWeightunitLessThanOrEqualTo(Long value) {
addCriterion("WEIGHTUNIT <=", value, "weightunit");
return (Criteria) this;
}
public Criteria andWeightunitIn(List<Long> values) {
addCriterion("WEIGHTUNIT in", values, "weightunit");
return (Criteria) this;
}
public Criteria andWeightunitNotIn(List<Long> values) {
addCriterion("WEIGHTUNIT not in", values, "weightunit");
return (Criteria) this;
}
public Criteria andWeightunitBetween(Long value1, Long value2) {
addCriterion("WEIGHTUNIT between", value1, value2, "weightunit");
return (Criteria) this;
}
public Criteria andWeightunitNotBetween(Long value1, Long value2) {
addCriterion("WEIGHTUNIT not between", value1, value2, "weightunit");
return (Criteria) this;
}
public Criteria andScandateIsNull() {
addCriterion("SCANDATE is null");
return (Criteria) this;
}
public Criteria andScandateIsNotNull() {
addCriterion("SCANDATE is not null");
return (Criteria) this;
}
public Criteria andScandateEqualTo(Date value) {
addCriterion("SCANDATE =", value, "scandate");
return (Criteria) this;
}
public Criteria andScandateNotEqualTo(Date value) {
addCriterion("SCANDATE <>", value, "scandate");
return (Criteria) this;
}
public Criteria andScandateGreaterThan(Date value) {
addCriterion("SCANDATE >", value, "scandate");
return (Criteria) this;
}
public Criteria andScandateGreaterThanOrEqualTo(Date value) {
addCriterion("SCANDATE >=", value, "scandate");
return (Criteria) this;
}
public Criteria andScandateLessThan(Date value) {
addCriterion("SCANDATE <", value, "scandate");
return (Criteria) this;
}
public Criteria andScandateLessThanOrEqualTo(Date value) {
addCriterion("SCANDATE <=", value, "scandate");
return (Criteria) this;
}
public Criteria andScandateIn(List<Date> values) {
addCriterion("SCANDATE in", values, "scandate");
return (Criteria) this;
}
public Criteria andScandateNotIn(List<Date> values) {
addCriterion("SCANDATE not in", values, "scandate");
return (Criteria) this;
}
public Criteria andScandateBetween(Date value1, Date value2) {
addCriterion("SCANDATE between", value1, value2, "scandate");
return (Criteria) this;
}
public Criteria andScandateNotBetween(Date value1, Date value2) {
addCriterion("SCANDATE not between", value1, value2, "scandate");
return (Criteria) this;
}
public Criteria andShipperContactNameIsNull() {
addCriterion("SHIPPER_CONTACT_NAME is null");
return (Criteria) this;
}
public Criteria andShipperContactNameIsNotNull() {
addCriterion("SHIPPER_CONTACT_NAME is not null");
return (Criteria) this;
}
public Criteria andShipperContactNameEqualTo(String value) {
addCriterion("SHIPPER_CONTACT_NAME =", value, "shipperContactName");
return (Criteria) this;
}
public Criteria andShipperContactNameNotEqualTo(String value) {
addCriterion("SHIPPER_CONTACT_NAME <>", value, "shipperContactName");
return (Criteria) this;
}
public Criteria andShipperContactNameGreaterThan(String value) {
addCriterion("SHIPPER_CONTACT_NAME >", value, "shipperContactName");
return (Criteria) this;
}
public Criteria andShipperContactNameGreaterThanOrEqualTo(String value) {
addCriterion("SHIPPER_CONTACT_NAME >=", value, "shipperContactName");
return (Criteria) this;
}
public Criteria andShipperContactNameLessThan(String value) {
addCriterion("SHIPPER_CONTACT_NAME <", value, "shipperContactName");
return (Criteria) this;
}
public Criteria andShipperContactNameLessThanOrEqualTo(String value) {
addCriterion("SHIPPER_CONTACT_NAME <=", value, "shipperContactName");
return (Criteria) this;
}
public Criteria andShipperContactNameLike(String value) {
addCriterion("SHIPPER_CONTACT_NAME like", value, "shipperContactName");
return (Criteria) this;
}
public Criteria andShipperContactNameNotLike(String value) {
addCriterion("SHIPPER_CONTACT_NAME not like", value, "shipperContactName");
return (Criteria) this;
}
public Criteria andShipperContactNameIn(List<String> values) {
addCriterion("SHIPPER_CONTACT_NAME in", values, "shipperContactName");
return (Criteria) this;
}
public Criteria andShipperContactNameNotIn(List<String> values) {
addCriterion("SHIPPER_CONTACT_NAME not in", values, "shipperContactName");
return (Criteria) this;
}
public Criteria andShipperContactNameBetween(String value1, String value2) {
addCriterion("SHIPPER_CONTACT_NAME between", value1, value2, "shipperContactName");
return (Criteria) this;
}
public Criteria andShipperContactNameNotBetween(String value1, String value2) {
addCriterion("SHIPPER_CONTACT_NAME not between", value1, value2, "shipperContactName");
return (Criteria) this;
}
public Criteria andShipperPhoneIsNull() {
addCriterion("SHIPPER_PHONE is null");
return (Criteria) this;
}
public Criteria andShipperPhoneIsNotNull() {
addCriterion("SHIPPER_PHONE is not null");
return (Criteria) this;
}
public Criteria andShipperPhoneEqualTo(String value) {
addCriterion("SHIPPER_PHONE =", value, "shipperPhone");
return (Criteria) this;
}
public Criteria andShipperPhoneNotEqualTo(String value) {
addCriterion("SHIPPER_PHONE <>", value, "shipperPhone");
return (Criteria) this;
}
public Criteria andShipperPhoneGreaterThan(String value) {
addCriterion("SHIPPER_PHONE >", value, "shipperPhone");
return (Criteria) this;
}
public Criteria andShipperPhoneGreaterThanOrEqualTo(String value) {
addCriterion("SHIPPER_PHONE >=", value, "shipperPhone");
return (Criteria) this;
}
public Criteria andShipperPhoneLessThan(String value) {
addCriterion("SHIPPER_PHONE <", value, "shipperPhone");
return (Criteria) this;
}
public Criteria andShipperPhoneLessThanOrEqualTo(String value) {
addCriterion("SHIPPER_PHONE <=", value, "shipperPhone");
return (Criteria) this;
}
public Criteria andShipperPhoneLike(String value) {
addCriterion("SHIPPER_PHONE like", value, "shipperPhone");
return (Criteria) this;
}
public Criteria andShipperPhoneNotLike(String value) {
addCriterion("SHIPPER_PHONE not like", value, "shipperPhone");
return (Criteria) this;
}
public Criteria andShipperPhoneIn(List<String> values) {
addCriterion("SHIPPER_PHONE in", values, "shipperPhone");
return (Criteria) this;
}
public Criteria andShipperPhoneNotIn(List<String> values) {
addCriterion("SHIPPER_PHONE not in", values, "shipperPhone");
return (Criteria) this;
}
public Criteria andShipperPhoneBetween(String value1, String value2) {
addCriterion("SHIPPER_PHONE between", value1, value2, "shipperPhone");
return (Criteria) this;
}
public Criteria andShipperPhoneNotBetween(String value1, String value2) {
addCriterion("SHIPPER_PHONE not between", value1, value2, "shipperPhone");
return (Criteria) this;
}
public Criteria andShipperAccountIsNull() {
addCriterion("SHIPPER_ACCOUNT is null");
return (Criteria) this;
}
public Criteria andShipperAccountIsNotNull() {
addCriterion("SHIPPER_ACCOUNT is not null");
return (Criteria) this;
}
public Criteria andShipperAccountEqualTo(String value) {
addCriterion("SHIPPER_ACCOUNT =", value, "shipperAccount");
return (Criteria) this;
}
public Criteria andShipperAccountNotEqualTo(String value) {
addCriterion("SHIPPER_ACCOUNT <>", value, "shipperAccount");
return (Criteria) this;
}
public Criteria andShipperAccountGreaterThan(String value) {
addCriterion("SHIPPER_ACCOUNT >", value, "shipperAccount");
return (Criteria) this;
}
public Criteria andShipperAccountGreaterThanOrEqualTo(String value) {
addCriterion("SHIPPER_ACCOUNT >=", value, "shipperAccount");
return (Criteria) this;
}
public Criteria andShipperAccountLessThan(String value) {
addCriterion("SHIPPER_ACCOUNT <", value, "shipperAccount");
return (Criteria) this;
}
public Criteria andShipperAccountLessThanOrEqualTo(String value) {
addCriterion("SHIPPER_ACCOUNT <=", value, "shipperAccount");
return (Criteria) this;
}
public Criteria andShipperAccountLike(String value) {
addCriterion("SHIPPER_ACCOUNT like", value, "shipperAccount");
return (Criteria) this;
}
public Criteria andShipperAccountNotLike(String value) {
addCriterion("SHIPPER_ACCOUNT not like", value, "shipperAccount");
return (Criteria) this;
}
public Criteria andShipperAccountIn(List<String> values) {
addCriterion("SHIPPER_ACCOUNT in", values, "shipperAccount");
return (Criteria) this;
}
public Criteria andShipperAccountNotIn(List<String> values) {
addCriterion("SHIPPER_ACCOUNT not in", values, "shipperAccount");
return (Criteria) this;
}
public Criteria andShipperAccountBetween(String value1, String value2) {
addCriterion("SHIPPER_ACCOUNT between", value1, value2, "shipperAccount");
return (Criteria) this;
}
public Criteria andShipperAccountNotBetween(String value1, String value2) {
addCriterion("SHIPPER_ACCOUNT not between", value1, value2, "shipperAccount");
return (Criteria) this;
}
public Criteria andShipperCompanyIsNull() {
addCriterion("SHIPPER_COMPANY is null");
return (Criteria) this;
}
public Criteria andShipperCompanyIsNotNull() {
addCriterion("SHIPPER_COMPANY is not null");
return (Criteria) this;
}
public Criteria andShipperCompanyEqualTo(String value) {
addCriterion("SHIPPER_COMPANY =", value, "shipperCompany");
return (Criteria) this;
}
public Criteria andShipperCompanyNotEqualTo(String value) {
addCriterion("SHIPPER_COMPANY <>", value, "shipperCompany");
return (Criteria) this;
}
public Criteria andShipperCompanyGreaterThan(String value) {
addCriterion("SHIPPER_COMPANY >", value, "shipperCompany");
return (Criteria) this;
}
public Criteria andShipperCompanyGreaterThanOrEqualTo(String value) {
addCriterion("SHIPPER_COMPANY >=", value, "shipperCompany");
return (Criteria) this;
}
public Criteria andShipperCompanyLessThan(String value) {
addCriterion("SHIPPER_COMPANY <", value, "shipperCompany");
return (Criteria) this;
}
public Criteria andShipperCompanyLessThanOrEqualTo(String value) {
addCriterion("SHIPPER_COMPANY <=", value, "shipperCompany");
return (Criteria) this;
}
public Criteria andShipperCompanyLike(String value) {
addCriterion("SHIPPER_COMPANY like", value, "shipperCompany");
return (Criteria) this;
}
public Criteria andShipperCompanyNotLike(String value) {
addCriterion("SHIPPER_COMPANY not like", value, "shipperCompany");
return (Criteria) this;
}
public Criteria andShipperCompanyIn(List<String> values) {
addCriterion("SHIPPER_COMPANY in", values, "shipperCompany");
return (Criteria) this;
}
public Criteria andShipperCompanyNotIn(List<String> values) {
addCriterion("SHIPPER_COMPANY not in", values, "shipperCompany");
return (Criteria) this;
}
public Criteria andShipperCompanyBetween(String value1, String value2) {
addCriterion("SHIPPER_COMPANY between", value1, value2, "shipperCompany");
return (Criteria) this;
}
public Criteria andShipperCompanyNotBetween(String value1, String value2) {
addCriterion("SHIPPER_COMPANY not between", value1, value2, "shipperCompany");
return (Criteria) this;
}
public Criteria andShipperAddrLine1IsNull() {
addCriterion("SHIPPER_ADDR_LINE1 is null");
return (Criteria) this;
}
public Criteria andShipperAddrLine1IsNotNull() {
addCriterion("SHIPPER_ADDR_LINE1 is not null");
return (Criteria) this;
}
public Criteria andShipperAddrLine1EqualTo(String value) {
addCriterion("SHIPPER_ADDR_LINE1 =", value, "shipperAddrLine1");
return (Criteria) this;
}
public Criteria andShipperAddrLine1NotEqualTo(String value) {
addCriterion("SHIPPER_ADDR_LINE1 <>", value, "shipperAddrLine1");
return (Criteria) this;
}
public Criteria andShipperAddrLine1GreaterThan(String value) {
addCriterion("SHIPPER_ADDR_LINE1 >", value, "shipperAddrLine1");
return (Criteria) this;
}
public Criteria andShipperAddrLine1GreaterThanOrEqualTo(String value) {
addCriterion("SHIPPER_ADDR_LINE1 >=", value, "shipperAddrLine1");
return (Criteria) this;
}
public Criteria andShipperAddrLine1LessThan(String value) {
addCriterion("SHIPPER_ADDR_LINE1 <", value, "shipperAddrLine1");
return (Criteria) this;
}
public Criteria andShipperAddrLine1LessThanOrEqualTo(String value) {
addCriterion("SHIPPER_ADDR_LINE1 <=", value, "shipperAddrLine1");
return (Criteria) this;
}
public Criteria andShipperAddrLine1Like(String value) {
addCriterion("SHIPPER_ADDR_LINE1 like", value, "shipperAddrLine1");
return (Criteria) this;
}
public Criteria andShipperAddrLine1NotLike(String value) {
addCriterion("SHIPPER_ADDR_LINE1 not like", value, "shipperAddrLine1");
return (Criteria) this;
}
public Criteria andShipperAddrLine1In(List<String> values) {
addCriterion("SHIPPER_ADDR_LINE1 in", values, "shipperAddrLine1");
return (Criteria) this;
}
public Criteria andShipperAddrLine1NotIn(List<String> values) {
addCriterion("SHIPPER_ADDR_LINE1 not in", values, "shipperAddrLine1");
return (Criteria) this;
}
public Criteria andShipperAddrLine1Between(String value1, String value2) {
addCriterion("SHIPPER_ADDR_LINE1 between", value1, value2, "shipperAddrLine1");
return (Criteria) this;
}
public Criteria andShipperAddrLine1NotBetween(String value1, String value2) {
addCriterion("SHIPPER_ADDR_LINE1 not between", value1, value2, "shipperAddrLine1");
return (Criteria) this;
}
public Criteria andShipperAddrLine2IsNull() {
addCriterion("SHIPPER_ADDR_LINE2 is null");
return (Criteria) this;
}
public Criteria andShipperAddrLine2IsNotNull() {
addCriterion("SHIPPER_ADDR_LINE2 is not null");
return (Criteria) this;
}
public Criteria andShipperAddrLine2EqualTo(String value) {
addCriterion("SHIPPER_ADDR_LINE2 =", value, "shipperAddrLine2");
return (Criteria) this;
}
public Criteria andShipperAddrLine2NotEqualTo(String value) {
addCriterion("SHIPPER_ADDR_LINE2 <>", value, "shipperAddrLine2");
return (Criteria) this;
}
public Criteria andShipperAddrLine2GreaterThan(String value) {
addCriterion("SHIPPER_ADDR_LINE2 >", value, "shipperAddrLine2");
return (Criteria) this;
}
public Criteria andShipperAddrLine2GreaterThanOrEqualTo(String value) {
addCriterion("SHIPPER_ADDR_LINE2 >=", value, "shipperAddrLine2");
return (Criteria) this;
}
public Criteria andShipperAddrLine2LessThan(String value) {
addCriterion("SHIPPER_ADDR_LINE2 <", value, "shipperAddrLine2");
return (Criteria) this;
}
public Criteria andShipperAddrLine2LessThanOrEqualTo(String value) {
addCriterion("SHIPPER_ADDR_LINE2 <=", value, "shipperAddrLine2");
return (Criteria) this;
}
public Criteria andShipperAddrLine2Like(String value) {
addCriterion("SHIPPER_ADDR_LINE2 like", value, "shipperAddrLine2");
return (Criteria) this;
}
public Criteria andShipperAddrLine2NotLike(String value) {
addCriterion("SHIPPER_ADDR_LINE2 not like", value, "shipperAddrLine2");
return (Criteria) this;
}
public Criteria andShipperAddrLine2In(List<String> values) {
addCriterion("SHIPPER_ADDR_LINE2 in", values, "shipperAddrLine2");
return (Criteria) this;
}
public Criteria andShipperAddrLine2NotIn(List<String> values) {
addCriterion("SHIPPER_ADDR_LINE2 not in", values, "shipperAddrLine2");
return (Criteria) this;
}
public Criteria andShipperAddrLine2Between(String value1, String value2) {
addCriterion("SHIPPER_ADDR_LINE2 between", value1, value2, "shipperAddrLine2");
return (Criteria) this;
}
public Criteria andShipperAddrLine2NotBetween(String value1, String value2) {
addCriterion("SHIPPER_ADDR_LINE2 not between", value1, value2, "shipperAddrLine2");
return (Criteria) this;
}
public Criteria andShipperCityIsNull() {
addCriterion("SHIPPER_CITY is null");
return (Criteria) this;
}
public Criteria andShipperCityIsNotNull() {
addCriterion("SHIPPER_CITY is not null");
return (Criteria) this;
}
public Criteria andShipperCityEqualTo(String value) {
addCriterion("SHIPPER_CITY =", value, "shipperCity");
return (Criteria) this;
}
public Criteria andShipperCityNotEqualTo(String value) {
addCriterion("SHIPPER_CITY <>", value, "shipperCity");
return (Criteria) this;
}
public Criteria andShipperCityGreaterThan(String value) {
addCriterion("SHIPPER_CITY >", value, "shipperCity");
return (Criteria) this;
}
public Criteria andShipperCityGreaterThanOrEqualTo(String value) {
addCriterion("SHIPPER_CITY >=", value, "shipperCity");
return (Criteria) this;
}
public Criteria andShipperCityLessThan(String value) {
addCriterion("SHIPPER_CITY <", value, "shipperCity");
return (Criteria) this;
}
public Criteria andShipperCityLessThanOrEqualTo(String value) {
addCriterion("SHIPPER_CITY <=", value, "shipperCity");
return (Criteria) this;
}
public Criteria andShipperCityLike(String value) {
addCriterion("SHIPPER_CITY like", value, "shipperCity");
return (Criteria) this;
}
public Criteria andShipperCityNotLike(String value) {
addCriterion("SHIPPER_CITY not like", value, "shipperCity");
return (Criteria) this;
}
public Criteria andShipperCityIn(List<String> values) {
addCriterion("SHIPPER_CITY in", values, "shipperCity");
return (Criteria) this;
}
public Criteria andShipperCityNotIn(List<String> values) {
addCriterion("SHIPPER_CITY not in", values, "shipperCity");
return (Criteria) this;
}
public Criteria andShipperCityBetween(String value1, String value2) {
addCriterion("SHIPPER_CITY between", value1, value2, "shipperCity");
return (Criteria) this;
}
public Criteria andShipperCityNotBetween(String value1, String value2) {
addCriterion("SHIPPER_CITY not between", value1, value2, "shipperCity");
return (Criteria) this;
}
public Criteria andShipperEmailIsNull() {
addCriterion("SHIPPER_EMAIL is null");
return (Criteria) this;
}
public Criteria andShipperEmailIsNotNull() {
addCriterion("SHIPPER_EMAIL is not null");
return (Criteria) this;
}
public Criteria andShipperEmailEqualTo(String value) {
addCriterion("SHIPPER_EMAIL =", value, "shipperEmail");
return (Criteria) this;
}
public Criteria andShipperEmailNotEqualTo(String value) {
addCriterion("SHIPPER_EMAIL <>", value, "shipperEmail");
return (Criteria) this;
}
public Criteria andShipperEmailGreaterThan(String value) {
addCriterion("SHIPPER_EMAIL >", value, "shipperEmail");
return (Criteria) this;
}
public Criteria andShipperEmailGreaterThanOrEqualTo(String value) {
addCriterion("SHIPPER_EMAIL >=", value, "shipperEmail");
return (Criteria) this;
}
public Criteria andShipperEmailLessThan(String value) {
addCriterion("SHIPPER_EMAIL <", value, "shipperEmail");
return (Criteria) this;
}
public Criteria andShipperEmailLessThanOrEqualTo(String value) {
addCriterion("SHIPPER_EMAIL <=", value, "shipperEmail");
return (Criteria) this;
}
public Criteria andShipperEmailLike(String value) {
addCriterion("SHIPPER_EMAIL like", value, "shipperEmail");
return (Criteria) this;
}
public Criteria andShipperEmailNotLike(String value) {
addCriterion("SHIPPER_EMAIL not like", value, "shipperEmail");
return (Criteria) this;
}
public Criteria andShipperEmailIn(List<String> values) {
addCriterion("SHIPPER_EMAIL in", values, "shipperEmail");
return (Criteria) this;
}
public Criteria andShipperEmailNotIn(List<String> values) {
addCriterion("SHIPPER_EMAIL not in", values, "shipperEmail");
return (Criteria) this;
}
public Criteria andShipperEmailBetween(String value1, String value2) {
addCriterion("SHIPPER_EMAIL between", value1, value2, "shipperEmail");
return (Criteria) this;
}
public Criteria andShipperEmailNotBetween(String value1, String value2) {
addCriterion("SHIPPER_EMAIL not between", value1, value2, "shipperEmail");
return (Criteria) this;
}
public Criteria andRecipientContactNameIsNull() {
addCriterion("RECIPIENT_CONTACT_NAME is null");
return (Criteria) this;
}
public Criteria andRecipientContactNameIsNotNull() {
addCriterion("RECIPIENT_CONTACT_NAME is not null");
return (Criteria) this;
}
public Criteria andRecipientContactNameEqualTo(String value) {
addCriterion("RECIPIENT_CONTACT_NAME =", value, "recipientContactName");
return (Criteria) this;
}
public Criteria andRecipientContactNameNotEqualTo(String value) {
addCriterion("RECIPIENT_CONTACT_NAME <>", value, "recipientContactName");
return (Criteria) this;
}
public Criteria andRecipientContactNameGreaterThan(String value) {
addCriterion("RECIPIENT_CONTACT_NAME >", value, "recipientContactName");
return (Criteria) this;
}
public Criteria andRecipientContactNameGreaterThanOrEqualTo(String value) {
addCriterion("RECIPIENT_CONTACT_NAME >=", value, "recipientContactName");
return (Criteria) this;
}
public Criteria andRecipientContactNameLessThan(String value) {
addCriterion("RECIPIENT_CONTACT_NAME <", value, "recipientContactName");
return (Criteria) this;
}
public Criteria andRecipientContactNameLessThanOrEqualTo(String value) {
addCriterion("RECIPIENT_CONTACT_NAME <=", value, "recipientContactName");
return (Criteria) this;
}
public Criteria andRecipientContactNameLike(String value) {
addCriterion("RECIPIENT_CONTACT_NAME like", value, "recipientContactName");
return (Criteria) this;
}
public Criteria andRecipientContactNameNotLike(String value) {
addCriterion("RECIPIENT_CONTACT_NAME not like", value, "recipientContactName");
return (Criteria) this;
}
public Criteria andRecipientContactNameIn(List<String> values) {
addCriterion("RECIPIENT_CONTACT_NAME in", values, "recipientContactName");
return (Criteria) this;
}
public Criteria andRecipientContactNameNotIn(List<String> values) {
addCriterion("RECIPIENT_CONTACT_NAME not in", values, "recipientContactName");
return (Criteria) this;
}
public Criteria andRecipientContactNameBetween(String value1, String value2) {
addCriterion("RECIPIENT_CONTACT_NAME between", value1, value2, "recipientContactName");
return (Criteria) this;
}
public Criteria andRecipientContactNameNotBetween(String value1, String value2) {
addCriterion("RECIPIENT_CONTACT_NAME not between", value1, value2, "recipientContactName");
return (Criteria) this;
}
public Criteria andRecipientPhoneIsNull() {
addCriterion("RECIPIENT_PHONE is null");
return (Criteria) this;
}
public Criteria andRecipientPhoneIsNotNull() {
addCriterion("RECIPIENT_PHONE is not null");
return (Criteria) this;
}
public Criteria andRecipientPhoneEqualTo(String value) {
addCriterion("RECIPIENT_PHONE =", value, "recipientPhone");
return (Criteria) this;
}
public Criteria andRecipientPhoneNotEqualTo(String value) {
addCriterion("RECIPIENT_PHONE <>", value, "recipientPhone");
return (Criteria) this;
}
public Criteria andRecipientPhoneGreaterThan(String value) {
addCriterion("RECIPIENT_PHONE >", value, "recipientPhone");
return (Criteria) this;
}
public Criteria andRecipientPhoneGreaterThanOrEqualTo(String value) {
addCriterion("RECIPIENT_PHONE >=", value, "recipientPhone");
return (Criteria) this;
}
public Criteria andRecipientPhoneLessThan(String value) {
addCriterion("RECIPIENT_PHONE <", value, "recipientPhone");
return (Criteria) this;
}
public Criteria andRecipientPhoneLessThanOrEqualTo(String value) {
addCriterion("RECIPIENT_PHONE <=", value, "recipientPhone");
return (Criteria) this;
}
public Criteria andRecipientPhoneLike(String value) {
addCriterion("RECIPIENT_PHONE like", value, "recipientPhone");
return (Criteria) this;
}
public Criteria andRecipientPhoneNotLike(String value) {
addCriterion("RECIPIENT_PHONE not like", value, "recipientPhone");
return (Criteria) this;
}
public Criteria andRecipientPhoneIn(List<String> values) {
addCriterion("RECIPIENT_PHONE in", values, "recipientPhone");
return (Criteria) this;
}
public Criteria andRecipientPhoneNotIn(List<String> values) {
addCriterion("RECIPIENT_PHONE not in", values, "recipientPhone");
return (Criteria) this;
}
public Criteria andRecipientPhoneBetween(String value1, String value2) {
addCriterion("RECIPIENT_PHONE between", value1, value2, "recipientPhone");
return (Criteria) this;
}
public Criteria andRecipientPhoneNotBetween(String value1, String value2) {
addCriterion("RECIPIENT_PHONE not between", value1, value2, "recipientPhone");
return (Criteria) this;
}
public Criteria andRecipientCompanyIsNull() {
addCriterion("RECIPIENT_COMPANY is null");
return (Criteria) this;
}
public Criteria andRecipientCompanyIsNotNull() {
addCriterion("RECIPIENT_COMPANY is not null");
return (Criteria) this;
}
public Criteria andRecipientCompanyEqualTo(String value) {
addCriterion("RECIPIENT_COMPANY =", value, "recipientCompany");
return (Criteria) this;
}
public Criteria andRecipientCompanyNotEqualTo(String value) {
addCriterion("RECIPIENT_COMPANY <>", value, "recipientCompany");
return (Criteria) this;
}
public Criteria andRecipientCompanyGreaterThan(String value) {
addCriterion("RECIPIENT_COMPANY >", value, "recipientCompany");
return (Criteria) this;
}
public Criteria andRecipientCompanyGreaterThanOrEqualTo(String value) {
addCriterion("RECIPIENT_COMPANY >=", value, "recipientCompany");
return (Criteria) this;
}
public Criteria andRecipientCompanyLessThan(String value) {
addCriterion("RECIPIENT_COMPANY <", value, "recipientCompany");
return (Criteria) this;
}
public Criteria andRecipientCompanyLessThanOrEqualTo(String value) {
addCriterion("RECIPIENT_COMPANY <=", value, "recipientCompany");
return (Criteria) this;
}
public Criteria andRecipientCompanyLike(String value) {
addCriterion("RECIPIENT_COMPANY like", value, "recipientCompany");
return (Criteria) this;
}
public Criteria andRecipientCompanyNotLike(String value) {
addCriterion("RECIPIENT_COMPANY not like", value, "recipientCompany");
return (Criteria) this;
}
public Criteria andRecipientCompanyIn(List<String> values) {
addCriterion("RECIPIENT_COMPANY in", values, "recipientCompany");
return (Criteria) this;
}
public Criteria andRecipientCompanyNotIn(List<String> values) {
addCriterion("RECIPIENT_COMPANY not in", values, "recipientCompany");
return (Criteria) this;
}
public Criteria andRecipientCompanyBetween(String value1, String value2) {
addCriterion("RECIPIENT_COMPANY between", value1, value2, "recipientCompany");
return (Criteria) this;
}
public Criteria andRecipientCompanyNotBetween(String value1, String value2) {
addCriterion("RECIPIENT_COMPANY not between", value1, value2, "recipientCompany");
return (Criteria) this;
}
public Criteria andRecipientAddrLine1IsNull() {
addCriterion("RECIPIENT_ADDR_LINE1 is null");
return (Criteria) this;
}
public Criteria andRecipientAddrLine1IsNotNull() {
addCriterion("RECIPIENT_ADDR_LINE1 is not null");
return (Criteria) this;
}
public Criteria andRecipientAddrLine1EqualTo(String value) {
addCriterion("RECIPIENT_ADDR_LINE1 =", value, "recipientAddrLine1");
return (Criteria) this;
}
public Criteria andRecipientAddrLine1NotEqualTo(String value) {
addCriterion("RECIPIENT_ADDR_LINE1 <>", value, "recipientAddrLine1");
return (Criteria) this;
}
public Criteria andRecipientAddrLine1GreaterThan(String value) {
addCriterion("RECIPIENT_ADDR_LINE1 >", value, "recipientAddrLine1");
return (Criteria) this;
}
public Criteria andRecipientAddrLine1GreaterThanOrEqualTo(String value) {
addCriterion("RECIPIENT_ADDR_LINE1 >=", value, "recipientAddrLine1");
return (Criteria) this;
}
public Criteria andRecipientAddrLine1LessThan(String value) {
addCriterion("RECIPIENT_ADDR_LINE1 <", value, "recipientAddrLine1");
return (Criteria) this;
}
public Criteria andRecipientAddrLine1LessThanOrEqualTo(String value) {
addCriterion("RECIPIENT_ADDR_LINE1 <=", value, "recipientAddrLine1");
return (Criteria) this;
}
public Criteria andRecipientAddrLine1Like(String value) {
addCriterion("RECIPIENT_ADDR_LINE1 like", value, "recipientAddrLine1");
return (Criteria) this;
}
public Criteria andRecipientAddrLine1NotLike(String value) {
addCriterion("RECIPIENT_ADDR_LINE1 not like", value, "recipientAddrLine1");
return (Criteria) this;
}
public Criteria andRecipientAddrLine1In(List<String> values) {
addCriterion("RECIPIENT_ADDR_LINE1 in", values, "recipientAddrLine1");
return (Criteria) this;
}
public Criteria andRecipientAddrLine1NotIn(List<String> values) {
addCriterion("RECIPIENT_ADDR_LINE1 not in", values, "recipientAddrLine1");
return (Criteria) this;
}
public Criteria andRecipientAddrLine1Between(String value1, String value2) {
addCriterion("RECIPIENT_ADDR_LINE1 between", value1, value2, "recipientAddrLine1");
return (Criteria) this;
}
public Criteria andRecipientAddrLine1NotBetween(String value1, String value2) {
addCriterion("RECIPIENT_ADDR_LINE1 not between", value1, value2, "recipientAddrLine1");
return (Criteria) this;
}
public Criteria andRecipientAddrLine2IsNull() {
addCriterion("RECIPIENT_ADDR_LINE2 is null");
return (Criteria) this;
}
public Criteria andRecipientAddrLine2IsNotNull() {
addCriterion("RECIPIENT_ADDR_LINE2 is not null");
return (Criteria) this;
}
public Criteria andRecipientAddrLine2EqualTo(String value) {
addCriterion("RECIPIENT_ADDR_LINE2 =", value, "recipientAddrLine2");
return (Criteria) this;
}
public Criteria andRecipientAddrLine2NotEqualTo(String value) {
addCriterion("RECIPIENT_ADDR_LINE2 <>", value, "recipientAddrLine2");
return (Criteria) this;
}
public Criteria andRecipientAddrLine2GreaterThan(String value) {
addCriterion("RECIPIENT_ADDR_LINE2 >", value, "recipientAddrLine2");
return (Criteria) this;
}
public Criteria andRecipientAddrLine2GreaterThanOrEqualTo(String value) {
addCriterion("RECIPIENT_ADDR_LINE2 >=", value, "recipientAddrLine2");
return (Criteria) this;
}
public Criteria andRecipientAddrLine2LessThan(String value) {
addCriterion("RECIPIENT_ADDR_LINE2 <", value, "recipientAddrLine2");
return (Criteria) this;
}
public Criteria andRecipientAddrLine2LessThanOrEqualTo(String value) {
addCriterion("RECIPIENT_ADDR_LINE2 <=", value, "recipientAddrLine2");
return (Criteria) this;
}
public Criteria andRecipientAddrLine2Like(String value) {
addCriterion("RECIPIENT_ADDR_LINE2 like", value, "recipientAddrLine2");
return (Criteria) this;
}
public Criteria andRecipientAddrLine2NotLike(String value) {
addCriterion("RECIPIENT_ADDR_LINE2 not like", value, "recipientAddrLine2");
return (Criteria) this;
}
public Criteria andRecipientAddrLine2In(List<String> values) {
addCriterion("RECIPIENT_ADDR_LINE2 in", values, "recipientAddrLine2");
return (Criteria) this;
}
public Criteria andRecipientAddrLine2NotIn(List<String> values) {
addCriterion("RECIPIENT_ADDR_LINE2 not in", values, "recipientAddrLine2");
return (Criteria) this;
}
public Criteria andRecipientAddrLine2Between(String value1, String value2) {
addCriterion("RECIPIENT_ADDR_LINE2 between", value1, value2, "recipientAddrLine2");
return (Criteria) this;
}
public Criteria andRecipientAddrLine2NotBetween(String value1, String value2) {
addCriterion("RECIPIENT_ADDR_LINE2 not between", value1, value2, "recipientAddrLine2");
return (Criteria) this;
}
public Criteria andRecipientAddrLine3IsNull() {
addCriterion("RECIPIENT_ADDR_LINE3 is null");
return (Criteria) this;
}
public Criteria andRecipientAddrLine3IsNotNull() {
addCriterion("RECIPIENT_ADDR_LINE3 is not null");
return (Criteria) this;
}
public Criteria andRecipientAddrLine3EqualTo(String value) {
addCriterion("RECIPIENT_ADDR_LINE3 =", value, "recipientAddrLine3");
return (Criteria) this;
}
public Criteria andRecipientAddrLine3NotEqualTo(String value) {
addCriterion("RECIPIENT_ADDR_LINE3 <>", value, "recipientAddrLine3");
return (Criteria) this;
}
public Criteria andRecipientAddrLine3GreaterThan(String value) {
addCriterion("RECIPIENT_ADDR_LINE3 >", value, "recipientAddrLine3");
return (Criteria) this;
}
public Criteria andRecipientAddrLine3GreaterThanOrEqualTo(String value) {
addCriterion("RECIPIENT_ADDR_LINE3 >=", value, "recipientAddrLine3");
return (Criteria) this;
}
public Criteria andRecipientAddrLine3LessThan(String value) {
addCriterion("RECIPIENT_ADDR_LINE3 <", value, "recipientAddrLine3");
return (Criteria) this;
}
public Criteria andRecipientAddrLine3LessThanOrEqualTo(String value) {
addCriterion("RECIPIENT_ADDR_LINE3 <=", value, "recipientAddrLine3");
return (Criteria) this;
}
public Criteria andRecipientAddrLine3Like(String value) {
addCriterion("RECIPIENT_ADDR_LINE3 like", value, "recipientAddrLine3");
return (Criteria) this;
}
public Criteria andRecipientAddrLine3NotLike(String value) {
addCriterion("RECIPIENT_ADDR_LINE3 not like", value, "recipientAddrLine3");
return (Criteria) this;
}
public Criteria andRecipientAddrLine3In(List<String> values) {
addCriterion("RECIPIENT_ADDR_LINE3 in", values, "recipientAddrLine3");
return (Criteria) this;
}
public Criteria andRecipientAddrLine3NotIn(List<String> values) {
addCriterion("RECIPIENT_ADDR_LINE3 not in", values, "recipientAddrLine3");
return (Criteria) this;
}
public Criteria andRecipientAddrLine3Between(String value1, String value2) {
addCriterion("RECIPIENT_ADDR_LINE3 between", value1, value2, "recipientAddrLine3");
return (Criteria) this;
}
public Criteria andRecipientAddrLine3NotBetween(String value1, String value2) {
addCriterion("RECIPIENT_ADDR_LINE3 not between", value1, value2, "recipientAddrLine3");
return (Criteria) this;
}
public Criteria andRecipientCityIsNull() {
addCriterion("RECIPIENT_CITY is null");
return (Criteria) this;
}
public Criteria andRecipientCityIsNotNull() {
addCriterion("RECIPIENT_CITY is not null");
return (Criteria) this;
}
public Criteria andRecipientCityEqualTo(String value) {
addCriterion("RECIPIENT_CITY =", value, "recipientCity");
return (Criteria) this;
}
public Criteria andRecipientCityNotEqualTo(String value) {
addCriterion("RECIPIENT_CITY <>", value, "recipientCity");
return (Criteria) this;
}
public Criteria andRecipientCityGreaterThan(String value) {
addCriterion("RECIPIENT_CITY >", value, "recipientCity");
return (Criteria) this;
}
public Criteria andRecipientCityGreaterThanOrEqualTo(String value) {
addCriterion("RECIPIENT_CITY >=", value, "recipientCity");
return (Criteria) this;
}
public Criteria andRecipientCityLessThan(String value) {
addCriterion("RECIPIENT_CITY <", value, "recipientCity");
return (Criteria) this;
}
public Criteria andRecipientCityLessThanOrEqualTo(String value) {
addCriterion("RECIPIENT_CITY <=", value, "recipientCity");
return (Criteria) this;
}
public Criteria andRecipientCityLike(String value) {
addCriterion("RECIPIENT_CITY like", value, "recipientCity");
return (Criteria) this;
}
public Criteria andRecipientCityNotLike(String value) {
addCriterion("RECIPIENT_CITY not like", value, "recipientCity");
return (Criteria) this;
}
public Criteria andRecipientCityIn(List<String> values) {
addCriterion("RECIPIENT_CITY in", values, "recipientCity");
return (Criteria) this;
}
public Criteria andRecipientCityNotIn(List<String> values) {
addCriterion("RECIPIENT_CITY not in", values, "recipientCity");
return (Criteria) this;
}
public Criteria andRecipientCityBetween(String value1, String value2) {
addCriterion("RECIPIENT_CITY between", value1, value2, "recipientCity");
return (Criteria) this;
}
public Criteria andRecipientCityNotBetween(String value1, String value2) {
addCriterion("RECIPIENT_CITY not between", value1, value2, "recipientCity");
return (Criteria) this;
}
}
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
}
\ No newline at end of file
......@@ -40,7 +40,7 @@
sys:系统 系统相关表,例如kafka表
log: 日志 日志记录表,例如邮件发送日志表
-->
<javaModelGenerator targetPackage="com.fedex.connect.common.model.sys" targetProject="src/main/java">
<javaModelGenerator targetPackage="com.fedex.connect.common.model.biz" targetProject="src/main/java">
<!---enableSubPackages:如果true,MBG会根据catalog和schema来生成子包。如果false就会直接用targetPackage属性-->
<property name="enableSubPackages" value="false"/>
<!--该属性只对MyBatis3有效,如果true就会使用构造方法入参,如果false就会使用setter方式。默认为false-->
......@@ -52,13 +52,13 @@
</javaModelGenerator>
<!-- 生成映射文件*.xml的位置-->
<sqlMapGenerator targetPackage="mapper.sys" targetProject="src/main/java/com/fedex/connect/common">
<sqlMapGenerator targetPackage="mapper.biz" targetProject="src/main/java/com/fedex/connect/common">
<!--如果true,MBG会根据catalog和schema来生成子包。如果false就会直接用targetPackage属性。默认为false-->
<property name="enableSubPackages" value="false"/>
</sqlMapGenerator>
<!-- 生成DAO的包名和位置 -->
<javaClientGenerator type="XMLMAPPER" targetPackage="com.fedex.connect.common.dao.sys" targetProject="src/main/java">
<javaClientGenerator type="XMLMAPPER" targetPackage="com.fedex.connect.common.dao.biz" targetProject="src/main/java">
<!--如果true,MBG会根据catalog和schema来生成子包。如果false就会直接用targetPackage属性。默认为false-->
<property name="enableSubPackages" value="false"/>
</javaClientGenerator>
......@@ -95,12 +95,12 @@
<!-- selectByExampleQueryId="true">-->
<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_BIZ_ATTACHMENT.NEXTVAL FROM DUAL" />-->
<!-- </table>-->
<!-- <table tableName="T_BIZ_CE_INFO" domainObjectName="CeInfo"-->
<!-- enableCountByExample="true" enableUpdateByExample="true"-->
<!-- enableDeleteByExample="true" enableSelectByExample="true"-->
<!-- selectByExampleQueryId="true">-->
<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_BIZ_CE_INFO.NEXTVAL FROM DUAL" />-->
<!-- </table>-->
<table tableName="T_BIZ_CE_INFO" domainObjectName="CeInfo"
enableCountByExample="true" enableUpdateByExample="true"
enableDeleteByExample="true" enableSelectByExample="true"
selectByExampleQueryId="true">
<generatedKey column="ID" sqlStatement="SELECT SEQ_T_BIZ_CE_INFO.NEXTVAL FROM DUAL" />
</table>
<!-- <table tableName="T_BIZ_CONSIGNMENT" domainObjectName="Consignment"-->
<!-- enableCountByExample="true" enableUpdateByExample="true"-->
<!-- enableDeleteByExample="true" enableSelectByExample="true"-->
......@@ -141,12 +141,12 @@
<!-- selectByExampleQueryId="true">-->
<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_REDIS_SLAB.NEXTVAL FROM DUAL" />-->
<!-- </table>-->
<table tableName="T_SYS_KAFKA_STORAGE_HISTORY" domainObjectName="KafkaStorageHistory"
enableCountByExample="true" enableUpdateByExample="true"
enableDeleteByExample="true" enableSelectByExample="true"
selectByExampleQueryId="true">
<generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_KAFKA_STORAGE_HISTORY.NEXTVAL FROM DUAL" />
</table>
<!-- <table tableName="T_SYS_KAFKA_STORAGE_HISTORY" domainObjectName="KafkaStorageHistory"-->
<!-- enableCountByExample="true" enableUpdateByExample="true"-->
<!-- enableDeleteByExample="true" enableSelectByExample="true"-->
<!-- selectByExampleQueryId="true">-->
<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_KAFKA_STORAGE_HISTORY.NEXTVAL FROM DUAL" />-->
<!-- </table>-->
<!-- <table tableName="T_SYS_KAFKA_TEMPORARY_STORAGE" domainObjectName="KafkaTemporaryStorage"-->
<!-- enableCountByExample="true" enableUpdateByExample="true"-->
<!-- enableDeleteByExample="true" enableSelectByExample="true"-->
......