tao.mo

Merge remote-tracking branch 'origin/master'

Showing 55 changed files with 2200 additions and 54 deletions
1 -package com.fedex.connect.common.dao.base; 1 +package com.fedex.connect.common.dao.bi;
2 2
3 -import com.fedex.connect.common.model.base.DictionaryEntries; 3 +import com.fedex.connect.common.model.bi.DictionaryEntries;
4 -import com.fedex.connect.common.model.base.DictionaryEntriesExample; 4 +import com.fedex.connect.common.model.bi.DictionaryEntriesExample;
5 import org.apache.ibatis.annotations.Param; 5 import org.apache.ibatis.annotations.Param;
6 6
7 import java.util.List; 7 import java.util.List;
......
1 -package com.fedex.connect.common.dao.base; 1 +package com.fedex.connect.common.dao.bi;
2 2
3 -import com.fedex.connect.common.model.base.Dictionary; 3 +import com.fedex.connect.common.model.bi.Dictionary;
4 -import com.fedex.connect.common.model.base.DictionaryExample; 4 +import com.fedex.connect.common.model.bi.DictionaryExample;
5 import java.util.List; 5 import java.util.List;
6 import org.apache.ibatis.annotations.Param; 6 import org.apache.ibatis.annotations.Param;
7 7
......
1 +package com.fedex.connect.common.dao.bi;
2 +
3 +import com.fedex.connect.common.model.bi.PortclearEmailMapping;
4 +import com.fedex.connect.common.model.bi.PortclearEmailMappingExample;
5 +import org.apache.ibatis.annotations.Param;
6 +
7 +import java.util.List;
8 +
9 +public interface PortclearEmailMappingMapper {
10 + long countByExample(PortclearEmailMappingExample example);
11 +
12 + int deleteByExample(PortclearEmailMappingExample example);
13 +
14 + int deleteByPrimaryKey(Long id);
15 +
16 + int insert(PortclearEmailMapping record);
17 +
18 + int insertSelective(PortclearEmailMapping record);
19 +
20 + List<PortclearEmailMapping> selectByExample(PortclearEmailMappingExample example);
21 +
22 + PortclearEmailMapping selectByPrimaryKey(Long id);
23 +
24 + int updateByExampleSelective(@Param("record") PortclearEmailMapping record, @Param("example") PortclearEmailMappingExample example);
25 +
26 + int updateByExample(@Param("record") PortclearEmailMapping record, @Param("example") PortclearEmailMappingExample example);
27 +
28 + int updateByPrimaryKeySelective(PortclearEmailMapping record);
29 +
30 + int updateByPrimaryKey(PortclearEmailMapping record);
31 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.dao.biz;
2 +
3 +import com.fedex.connect.common.model.biz.Attachment;
4 +import com.fedex.connect.common.model.biz.AttachmentExample;
5 +import java.util.List;
6 +import org.apache.ibatis.annotations.Param;
7 +
8 +public interface AttachmentMapper {
9 + long countByExample(AttachmentExample example);
10 +
11 + int deleteByExample(AttachmentExample example);
12 +
13 + int deleteByPrimaryKey(Long id);
14 +
15 + int insert(Attachment record);
16 +
17 + int insertSelective(Attachment record);
18 +
19 + List<Attachment> selectByExample(AttachmentExample example);
20 +
21 + Attachment selectByPrimaryKey(Long id);
22 +
23 + int updateByExampleSelective(@Param("record") Attachment record, @Param("example") AttachmentExample example);
24 +
25 + int updateByExample(@Param("record") Attachment record, @Param("example") AttachmentExample example);
26 +
27 + int updateByPrimaryKeySelective(Attachment record);
28 +
29 + int updateByPrimaryKey(Attachment record);
30 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.dao.biz;
2 +
3 +import com.fedex.connect.common.model.biz.CeInfo;
4 +import com.fedex.connect.common.model.biz.CeInfoExample;
5 +import java.util.List;
6 +import org.apache.ibatis.annotations.Param;
7 +
8 +public interface CeInfoMapper {
9 + long countByExample(CeInfoExample example);
10 +
11 + int deleteByExample(CeInfoExample example);
12 +
13 + int deleteByPrimaryKey(Long id);
14 +
15 + int insert(CeInfo record);
16 +
17 + int insertSelective(CeInfo record);
18 +
19 + List<CeInfo> selectByExample(CeInfoExample example);
20 +
21 + CeInfo selectByPrimaryKey(Long id);
22 +
23 + int updateByExampleSelective(@Param("record") CeInfo record, @Param("example") CeInfoExample example);
24 +
25 + int updateByExample(@Param("record") CeInfo record, @Param("example") CeInfoExample example);
26 +
27 + int updateByPrimaryKeySelective(CeInfo record);
28 +
29 + int updateByPrimaryKey(CeInfo record);
30 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.dao.biz;
2 +
3 +import com.fedex.connect.common.model.biz.Consignment;
4 +import com.fedex.connect.common.model.biz.ConsignmentExample;
5 +import java.util.List;
6 +import org.apache.ibatis.annotations.Param;
7 +
8 +public interface ConsignmentMapper {
9 + long countByExample(ConsignmentExample example);
10 +
11 + int deleteByExample(ConsignmentExample example);
12 +
13 + int deleteByPrimaryKey(Long id);
14 +
15 + int insert(Consignment record);
16 +
17 + int insertSelective(Consignment record);
18 +
19 + List<Consignment> selectByExample(ConsignmentExample example);
20 +
21 + Consignment selectByPrimaryKey(Long id);
22 +
23 + int updateByExampleSelective(@Param("record") Consignment record, @Param("example") ConsignmentExample example);
24 +
25 + int updateByExample(@Param("record") Consignment record, @Param("example") ConsignmentExample example);
26 +
27 + int updateByPrimaryKeySelective(Consignment record);
28 +
29 + int updateByPrimaryKey(Consignment record);
30 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.dao.biz;
2 +
3 +import com.fedex.connect.common.model.biz.Email;
4 +import com.fedex.connect.common.model.biz.EmailExample;
5 +import java.util.List;
6 +import org.apache.ibatis.annotations.Param;
7 +
8 +public interface EmailMapper {
9 + long countByExample(EmailExample example);
10 +
11 + int deleteByExample(EmailExample example);
12 +
13 + int deleteByPrimaryKey(Long id);
14 +
15 + int insert(Email record);
16 +
17 + int insertSelective(Email record);
18 +
19 + List<Email> selectByExampleWithBLOBs(EmailExample example);
20 +
21 + List<Email> selectByExample(EmailExample example);
22 +
23 + Email selectByPrimaryKey(Long id);
24 +
25 + int updateByExampleSelective(@Param("record") Email record, @Param("example") EmailExample example);
26 +
27 + int updateByExampleWithBLOBs(@Param("record") Email record, @Param("example") EmailExample example);
28 +
29 + int updateByExample(@Param("record") Email record, @Param("example") EmailExample example);
30 +
31 + int updateByPrimaryKeySelective(Email record);
32 +
33 + int updateByPrimaryKeyWithBLOBs(Email record);
34 +
35 + int updateByPrimaryKey(Email record);
36 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.dao.biz;
2 +
3 +import com.fedex.connect.common.model.biz.PushObDetail;
4 +import com.fedex.connect.common.model.biz.PushObDetailExample;
5 +import java.util.List;
6 +import org.apache.ibatis.annotations.Param;
7 +
8 +public interface PushObDetailMapper {
9 + long countByExample(PushObDetailExample example);
10 +
11 + int deleteByExample(PushObDetailExample example);
12 +
13 + int deleteByPrimaryKey(Long id);
14 +
15 + int insert(PushObDetail record);
16 +
17 + int insertSelective(PushObDetail record);
18 +
19 + List<PushObDetail> selectByExample(PushObDetailExample example);
20 +
21 + PushObDetail selectByPrimaryKey(Long id);
22 +
23 + int updateByExampleSelective(@Param("record") PushObDetail record, @Param("example") PushObDetailExample example);
24 +
25 + int updateByExample(@Param("record") PushObDetail record, @Param("example") PushObDetailExample example);
26 +
27 + int updateByPrimaryKeySelective(PushObDetail record);
28 +
29 + int updateByPrimaryKey(PushObDetail record);
30 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.dao.biz;
2 +
3 +import com.fedex.connect.common.model.biz.PushOb;
4 +import com.fedex.connect.common.model.biz.PushObExample;
5 +import java.util.List;
6 +import org.apache.ibatis.annotations.Param;
7 +
8 +public interface PushObMapper {
9 + long countByExample(PushObExample example);
10 +
11 + int deleteByExample(PushObExample example);
12 +
13 + int deleteByPrimaryKey(Long id);
14 +
15 + int insert(PushOb record);
16 +
17 + int insertSelective(PushOb record);
18 +
19 + List<PushOb> selectByExample(PushObExample example);
20 +
21 + PushOb selectByPrimaryKey(Long id);
22 +
23 + int updateByExampleSelective(@Param("record") PushOb record, @Param("example") PushObExample example);
24 +
25 + int updateByExample(@Param("record") PushOb record, @Param("example") PushObExample example);
26 +
27 + int updateByPrimaryKeySelective(PushOb record);
28 +
29 + int updateByPrimaryKey(PushOb record);
30 +}
...\ No newline at end of file ...\ No newline at end of file
1 -package com.fedex.connect.common.dao.biz;
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.dao.log;
2 +
3 +import com.fedex.connect.common.model.log.EmailHistory;
4 +import com.fedex.connect.common.model.log.EmailHistoryExample;
5 +import org.apache.ibatis.annotations.Param;
6 +
7 +import java.util.List;
8 +
9 +public interface EmailHistoryMapper {
10 + long countByExample(EmailHistoryExample example);
11 +
12 + int deleteByExample(EmailHistoryExample example);
13 +
14 + int deleteByPrimaryKey(Long id);
15 +
16 + int insert(EmailHistory record);
17 +
18 + int insertSelective(EmailHistory record);
19 +
20 + List<EmailHistory> selectByExampleWithBLOBs(EmailHistoryExample example);
21 +
22 + List<EmailHistory> selectByExample(EmailHistoryExample example);
23 +
24 + EmailHistory selectByPrimaryKey(Long id);
25 +
26 + int updateByExampleSelective(@Param("record") EmailHistory record, @Param("example") EmailHistoryExample example);
27 +
28 + int updateByExampleWithBLOBs(@Param("record") EmailHistory record, @Param("example") EmailHistoryExample example);
29 +
30 + int updateByExample(@Param("record") EmailHistory record, @Param("example") EmailHistoryExample example);
31 +
32 + int updateByPrimaryKeySelective(EmailHistory record);
33 +
34 + int updateByPrimaryKeyWithBLOBs(EmailHistory record);
35 +
36 + int updateByPrimaryKey(EmailHistory record);
37 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.dao.log;
2 +
3 +import com.fedex.connect.common.model.log.Operation;
4 +import com.fedex.connect.common.model.log.OperationExample;
5 +import java.util.List;
6 +import org.apache.ibatis.annotations.Param;
7 +
8 +public interface OperationMapper {
9 + long countByExample(OperationExample example);
10 +
11 + int deleteByExample(OperationExample example);
12 +
13 + int deleteByPrimaryKey(Long id);
14 +
15 + int insert(Operation record);
16 +
17 + int insertSelective(Operation record);
18 +
19 + List<Operation> selectByExampleWithBLOBs(OperationExample example);
20 +
21 + List<Operation> selectByExample(OperationExample example);
22 +
23 + Operation selectByPrimaryKey(Long id);
24 +
25 + int updateByExampleSelective(@Param("record") Operation record, @Param("example") OperationExample example);
26 +
27 + int updateByExampleWithBLOBs(@Param("record") Operation record, @Param("example") OperationExample example);
28 +
29 + int updateByExample(@Param("record") Operation record, @Param("example") OperationExample example);
30 +
31 + int updateByPrimaryKeySelective(Operation record);
32 +
33 + int updateByPrimaryKeyWithBLOBs(Operation record);
34 +
35 + int updateByPrimaryKey(Operation record);
36 +}
...\ No newline at end of file ...\ No newline at end of file
...@@ -2,9 +2,10 @@ package com.fedex.connect.common.dao.sys; ...@@ -2,9 +2,10 @@ package com.fedex.connect.common.dao.sys;
2 2
3 import com.fedex.connect.common.model.sys.KafkaStorageHistory; 3 import com.fedex.connect.common.model.sys.KafkaStorageHistory;
4 import com.fedex.connect.common.model.sys.KafkaStorageHistoryExample; 4 import com.fedex.connect.common.model.sys.KafkaStorageHistoryExample;
5 -import java.util.List;
6 import org.apache.ibatis.annotations.Param; 5 import org.apache.ibatis.annotations.Param;
7 6
7 +import java.util.List;
8 +
8 public interface KafkaStorageHistoryMapper { 9 public interface KafkaStorageHistoryMapper {
9 long countByExample(KafkaStorageHistoryExample example); 10 long countByExample(KafkaStorageHistoryExample example);
10 11
......
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> 2 <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
3 -<mapper namespace="com.fedex.connect.common.dao.base.DictionaryEntriesMapper"> 3 +<mapper namespace="com.fedex.connect.common.dao.bi.DictionaryEntriesMapper">
4 - <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.base.DictionaryEntries"> 4 + <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.bi.DictionaryEntries">
5 <id column="ID" jdbcType="NUMERIC" property="id" /> 5 <id column="ID" jdbcType="NUMERIC" property="id" />
6 <result column="CODE" jdbcType="VARCHAR" property="code" /> 6 <result column="CODE" jdbcType="VARCHAR" property="code" />
7 <result column="ENGLISH_NAME" jdbcType="VARCHAR" property="englishName" /> 7 <result column="ENGLISH_NAME" jdbcType="VARCHAR" property="englishName" />
...@@ -85,7 +85,7 @@ ...@@ -85,7 +85,7 @@
85 EXT1, EXT2, EXT3, EXT4, CREATE_TIME, CREATE_USER_ID, CREATE_USER_NAME, MODIFY_TIME, 85 EXT1, EXT2, EXT3, EXT4, CREATE_TIME, CREATE_USER_ID, CREATE_USER_NAME, MODIFY_TIME,
86 MODIFY_USER_ID, MODIFY_USER_NAME 86 MODIFY_USER_ID, MODIFY_USER_NAME
87 </sql> 87 </sql>
88 - <select id="selectByExample" parameterType="com.fedex.connect.common.model.base.DictionaryEntriesExample" resultMap="BaseResultMap"> 88 + <select id="selectByExample" parameterType="com.fedex.connect.common.model.bi.DictionaryEntriesExample" resultMap="BaseResultMap">
89 <include refid="OracleDialectPrefix" /> 89 <include refid="OracleDialectPrefix" />
90 select 90 select
91 <if test="distinct"> 91 <if test="distinct">
...@@ -112,13 +112,13 @@ ...@@ -112,13 +112,13 @@
112 delete from T_BI_DICTIONARY_ENTRIES 112 delete from T_BI_DICTIONARY_ENTRIES
113 where ID = #{id,jdbcType=NUMERIC} 113 where ID = #{id,jdbcType=NUMERIC}
114 </delete> 114 </delete>
115 - <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.base.DictionaryEntriesExample"> 115 + <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.bi.DictionaryEntriesExample">
116 delete from T_BI_DICTIONARY_ENTRIES 116 delete from T_BI_DICTIONARY_ENTRIES
117 <if test="_parameter != null"> 117 <if test="_parameter != null">
118 <include refid="Example_Where_Clause" /> 118 <include refid="Example_Where_Clause" />
119 </if> 119 </if>
120 </delete> 120 </delete>
121 - <insert id="insert" parameterType="com.fedex.connect.common.model.base.DictionaryEntries"> 121 + <insert id="insert" parameterType="com.fedex.connect.common.model.bi.DictionaryEntries">
122 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long"> 122 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
123 SELECT SEQ_T_BI_DICTIONARY_ENTRIES.NEXTVAL FROM DUAL 123 SELECT SEQ_T_BI_DICTIONARY_ENTRIES.NEXTVAL FROM DUAL
124 </selectKey> 124 </selectKey>
...@@ -137,7 +137,7 @@ ...@@ -137,7 +137,7 @@
137 #{modifyTime,jdbcType=TIMESTAMP}, #{modifyUserId,jdbcType=NUMERIC}, #{modifyUserName,jdbcType=VARCHAR} 137 #{modifyTime,jdbcType=TIMESTAMP}, #{modifyUserId,jdbcType=NUMERIC}, #{modifyUserName,jdbcType=VARCHAR}
138 ) 138 )
139 </insert> 139 </insert>
140 - <insert id="insertSelective" parameterType="com.fedex.connect.common.model.base.DictionaryEntries"> 140 + <insert id="insertSelective" parameterType="com.fedex.connect.common.model.bi.DictionaryEntries">
141 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long"> 141 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
142 SELECT SEQ_T_BI_DICTIONARY_ENTRIES.NEXTVAL FROM DUAL 142 SELECT SEQ_T_BI_DICTIONARY_ENTRIES.NEXTVAL FROM DUAL
143 </selectKey> 143 </selectKey>
...@@ -257,7 +257,7 @@ ...@@ -257,7 +257,7 @@
257 </if> 257 </if>
258 </trim> 258 </trim>
259 </insert> 259 </insert>
260 - <select id="countByExample" parameterType="com.fedex.connect.common.model.base.DictionaryEntriesExample" resultType="java.lang.Long"> 260 + <select id="countByExample" parameterType="com.fedex.connect.common.model.bi.DictionaryEntriesExample" resultType="java.lang.Long">
261 select count(*) from T_BI_DICTIONARY_ENTRIES 261 select count(*) from T_BI_DICTIONARY_ENTRIES
262 <if test="_parameter != null"> 262 <if test="_parameter != null">
263 <include refid="Example_Where_Clause" /> 263 <include refid="Example_Where_Clause" />
...@@ -353,7 +353,7 @@ ...@@ -353,7 +353,7 @@
353 <include refid="Update_By_Example_Where_Clause" /> 353 <include refid="Update_By_Example_Where_Clause" />
354 </if> 354 </if>
355 </update> 355 </update>
356 - <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.base.DictionaryEntries"> 356 + <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.bi.DictionaryEntries">
357 update T_BI_DICTIONARY_ENTRIES 357 update T_BI_DICTIONARY_ENTRIES
358 <set> 358 <set>
359 <if test="code != null"> 359 <if test="code != null">
...@@ -413,7 +413,7 @@ ...@@ -413,7 +413,7 @@
413 </set> 413 </set>
414 where ID = #{id,jdbcType=NUMERIC} 414 where ID = #{id,jdbcType=NUMERIC}
415 </update> 415 </update>
416 - <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.base.DictionaryEntries"> 416 + <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.bi.DictionaryEntries">
417 update T_BI_DICTIONARY_ENTRIES 417 update T_BI_DICTIONARY_ENTRIES
418 set CODE = #{code,jdbcType=VARCHAR}, 418 set CODE = #{code,jdbcType=VARCHAR},
419 ENGLISH_NAME = #{englishName,jdbcType=VARCHAR}, 419 ENGLISH_NAME = #{englishName,jdbcType=VARCHAR},
......
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> 2 <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
3 -<mapper namespace="com.fedex.connect.common.dao.base.DictionaryMapper"> 3 +<mapper namespace="com.fedex.connect.common.dao.bi.DictionaryMapper">
4 - <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.base.Dictionary"> 4 + <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.bi.Dictionary">
5 <id column="ID" jdbcType="NUMERIC" property="id" /> 5 <id column="ID" jdbcType="NUMERIC" property="id" />
6 <result column="CODE" jdbcType="VARCHAR" property="code" /> 6 <result column="CODE" jdbcType="VARCHAR" property="code" />
7 <result column="ENGLISH_NAME" jdbcType="VARCHAR" property="englishName" /> 7 <result column="ENGLISH_NAME" jdbcType="VARCHAR" property="englishName" />
...@@ -81,7 +81,7 @@ ...@@ -81,7 +81,7 @@
81 ID, CODE, ENGLISH_NAME, DESCRIPTION, STATUS, PARENT_ID, EXT1, EXT2, EXT3, EXT4, CREATE_TIME, 81 ID, CODE, ENGLISH_NAME, DESCRIPTION, STATUS, PARENT_ID, EXT1, EXT2, EXT3, EXT4, CREATE_TIME,
82 CREATE_USER_ID, CREATE_USER_NAME, MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME 82 CREATE_USER_ID, CREATE_USER_NAME, MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME
83 </sql> 83 </sql>
84 - <select id="selectByExample" parameterType="com.fedex.connect.common.model.base.DictionaryExample" resultMap="BaseResultMap"> 84 + <select id="selectByExample" parameterType="com.fedex.connect.common.model.bi.DictionaryExample" resultMap="BaseResultMap">
85 <include refid="OracleDialectPrefix" /> 85 <include refid="OracleDialectPrefix" />
86 select 86 select
87 <if test="distinct"> 87 <if test="distinct">
...@@ -108,13 +108,13 @@ ...@@ -108,13 +108,13 @@
108 delete from T_BI_DICTIONARY 108 delete from T_BI_DICTIONARY
109 where ID = #{id,jdbcType=NUMERIC} 109 where ID = #{id,jdbcType=NUMERIC}
110 </delete> 110 </delete>
111 - <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.base.DictionaryExample"> 111 + <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.bi.DictionaryExample">
112 delete from T_BI_DICTIONARY 112 delete from T_BI_DICTIONARY
113 <if test="_parameter != null"> 113 <if test="_parameter != null">
114 <include refid="Example_Where_Clause" /> 114 <include refid="Example_Where_Clause" />
115 </if> 115 </if>
116 </delete> 116 </delete>
117 - <insert id="insert" parameterType="com.fedex.connect.common.model.base.Dictionary"> 117 + <insert id="insert" parameterType="com.fedex.connect.common.model.bi.Dictionary">
118 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long"> 118 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
119 SELECT SEQ_T_BI_DICTIONARY.NEXTVAL FROM DUAL 119 SELECT SEQ_T_BI_DICTIONARY.NEXTVAL FROM DUAL
120 </selectKey> 120 </selectKey>
...@@ -131,7 +131,7 @@ ...@@ -131,7 +131,7 @@
131 #{modifyTime,jdbcType=TIMESTAMP}, #{modifyUserId,jdbcType=NUMERIC}, #{modifyUserName,jdbcType=VARCHAR} 131 #{modifyTime,jdbcType=TIMESTAMP}, #{modifyUserId,jdbcType=NUMERIC}, #{modifyUserName,jdbcType=VARCHAR}
132 ) 132 )
133 </insert> 133 </insert>
134 - <insert id="insertSelective" parameterType="com.fedex.connect.common.model.base.Dictionary"> 134 + <insert id="insertSelective" parameterType="com.fedex.connect.common.model.bi.Dictionary">
135 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long"> 135 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
136 SELECT SEQ_T_BI_DICTIONARY.NEXTVAL FROM DUAL 136 SELECT SEQ_T_BI_DICTIONARY.NEXTVAL FROM DUAL
137 </selectKey> 137 </selectKey>
...@@ -233,7 +233,7 @@ ...@@ -233,7 +233,7 @@
233 </if> 233 </if>
234 </trim> 234 </trim>
235 </insert> 235 </insert>
236 - <select id="countByExample" parameterType="com.fedex.connect.common.model.base.DictionaryExample" resultType="java.lang.Long"> 236 + <select id="countByExample" parameterType="com.fedex.connect.common.model.bi.DictionaryExample" resultType="java.lang.Long">
237 select count(*) from T_BI_DICTIONARY 237 select count(*) from T_BI_DICTIONARY
238 <if test="_parameter != null"> 238 <if test="_parameter != null">
239 <include refid="Example_Where_Clause" /> 239 <include refid="Example_Where_Clause" />
...@@ -317,7 +317,7 @@ ...@@ -317,7 +317,7 @@
317 <include refid="Update_By_Example_Where_Clause" /> 317 <include refid="Update_By_Example_Where_Clause" />
318 </if> 318 </if>
319 </update> 319 </update>
320 - <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.base.Dictionary"> 320 + <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.bi.Dictionary">
321 update T_BI_DICTIONARY 321 update T_BI_DICTIONARY
322 <set> 322 <set>
323 <if test="code != null"> 323 <if test="code != null">
...@@ -368,7 +368,7 @@ ...@@ -368,7 +368,7 @@
368 </set> 368 </set>
369 where ID = #{id,jdbcType=NUMERIC} 369 where ID = #{id,jdbcType=NUMERIC}
370 </update> 370 </update>
371 - <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.base.Dictionary"> 371 + <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.bi.Dictionary">
372 update T_BI_DICTIONARY 372 update T_BI_DICTIONARY
373 set CODE = #{code,jdbcType=VARCHAR}, 373 set CODE = #{code,jdbcType=VARCHAR},
374 ENGLISH_NAME = #{englishName,jdbcType=VARCHAR}, 374 ENGLISH_NAME = #{englishName,jdbcType=VARCHAR},
......
1 -package com.fedex.connect.common.mapper.biz;
...\ No newline at end of file ...\ No newline at end of file
1 -package com.fedex.connect.common.model.base; 1 +package com.fedex.connect.common.model.bi;
2 2
3 import java.io.Serializable; 3 import java.io.Serializable;
4 import java.util.Date; 4 import java.util.Date;
......
1 -package com.fedex.connect.common.model.base; 1 +package com.fedex.connect.common.model.bi;
2 2
3 import java.io.Serializable; 3 import java.io.Serializable;
4 import java.util.Date; 4 import java.util.Date;
......
1 -package com.fedex.connect.common.model.base; 1 +package com.fedex.connect.common.model.bi;
2 2
3 import java.util.ArrayList; 3 import java.util.ArrayList;
4 import java.util.Date; 4 import java.util.Date;
......
1 -package com.fedex.connect.common.model.base; 1 +package com.fedex.connect.common.model.bi;
2 2
3 import java.util.ArrayList; 3 import java.util.ArrayList;
4 import java.util.Date; 4 import java.util.Date;
......
1 +package com.fedex.connect.common.model.bi;
2 +
3 +import java.io.Serializable;
4 +import java.util.Date;
5 +
6 +/**
7 + * DESC: 口岸清关组邮箱mapping表
8 + * TABLE: T_BI_PORTCLEAR_EMAIL_MAPPING
9 + */
10 +public class PortclearEmailMapping implements Serializable {
11 + /**
12 + * ID,自动增长
13 + */
14 + private Long id;
15 +
16 + /**
17 + * 口岸编码
18 + */
19 + private String portCode;
20 +
21 + /**
22 + * 邮箱地址
23 + */
24 + private String email;
25 +
26 + /**
27 + * 是否有效(1:有效[true]。0:无效[false]。)
28 + */
29 + private Long status;
30 +
31 + /**
32 + * 创建时间
33 + */
34 + private Date createTime;
35 +
36 + /**
37 + * 创建人ID,关联用户表ID
38 + */
39 + private Long createUserId;
40 +
41 + /**
42 + * 创建人名称
43 + */
44 + private String createUserName;
45 +
46 + /**
47 + * 修改时间
48 + */
49 + private Date modifyTime;
50 +
51 + /**
52 + * 修改人ID,关联用户表ID
53 + */
54 + private Long modifyUserId;
55 +
56 + /**
57 + * 修改人名称
58 + */
59 + private String modifyUserName;
60 +
61 + private static final long serialVersionUID = 1L;
62 +
63 + public Long getId() {
64 + return id;
65 + }
66 +
67 + public void setId(Long id) {
68 + this.id = id;
69 + }
70 +
71 + public String getPortCode() {
72 + return portCode;
73 + }
74 +
75 + public void setPortCode(String portCode) {
76 + this.portCode = portCode == null ? null : portCode.trim();
77 + }
78 +
79 + public String getEmail() {
80 + return email;
81 + }
82 +
83 + public void setEmail(String email) {
84 + this.email = email == null ? null : email.trim();
85 + }
86 +
87 + public Long getStatus() {
88 + return status;
89 + }
90 +
91 + public void setStatus(Long status) {
92 + this.status = status;
93 + }
94 +
95 + public Date getCreateTime() {
96 + return createTime;
97 + }
98 +
99 + public void setCreateTime(Date createTime) {
100 + this.createTime = createTime;
101 + }
102 +
103 + public Long getCreateUserId() {
104 + return createUserId;
105 + }
106 +
107 + public void setCreateUserId(Long createUserId) {
108 + this.createUserId = createUserId;
109 + }
110 +
111 + public String getCreateUserName() {
112 + return createUserName;
113 + }
114 +
115 + public void setCreateUserName(String createUserName) {
116 + this.createUserName = createUserName == null ? null : createUserName.trim();
117 + }
118 +
119 + public Date getModifyTime() {
120 + return modifyTime;
121 + }
122 +
123 + public void setModifyTime(Date modifyTime) {
124 + this.modifyTime = modifyTime;
125 + }
126 +
127 + public Long getModifyUserId() {
128 + return modifyUserId;
129 + }
130 +
131 + public void setModifyUserId(Long modifyUserId) {
132 + this.modifyUserId = modifyUserId;
133 + }
134 +
135 + public String getModifyUserName() {
136 + return modifyUserName;
137 + }
138 +
139 + public void setModifyUserName(String modifyUserName) {
140 + this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
141 + }
142 +
143 + @Override
144 + public String toString() {
145 + StringBuilder sb = new StringBuilder();
146 + sb.append(getClass().getSimpleName());
147 + sb.append(" [");
148 + sb.append("Hash = ").append(hashCode());
149 + sb.append(", id=").append(id);
150 + sb.append(", portCode=").append(portCode);
151 + sb.append(", email=").append(email);
152 + sb.append(", status=").append(status);
153 + sb.append(", createTime=").append(createTime);
154 + sb.append(", createUserId=").append(createUserId);
155 + sb.append(", createUserName=").append(createUserName);
156 + sb.append(", modifyTime=").append(modifyTime);
157 + sb.append(", modifyUserId=").append(modifyUserId);
158 + sb.append(", modifyUserName=").append(modifyUserName);
159 + sb.append(", serialVersionUID=").append(serialVersionUID);
160 + sb.append("]");
161 + return sb.toString();
162 + }
163 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.model.biz;
2 +
3 +import java.io.Serializable;
4 +import java.util.Date;
5 +
6 +/**
7 + * DESC: 附件表
8 + * TABLE: T_BIZ_ATTACHMENT
9 + */
10 +public class Attachment implements Serializable {
11 + /**
12 + * ID,自动增加
13 + */
14 + private Long id;
15 +
16 + /**
17 + * 业务ID,目前该字段为运单表ID
18 + */
19 + private Long bizId;
20 +
21 + /**
22 + * 业务类型ID。
23 +关联数据字典表。指定字典目录CODE:ATTACHMENT_BIZ_TYPE
24 + */
25 + private Long bizTypeId;
26 +
27 + /**
28 + * 业务类型名称(用户上传、系统生成)
29 + */
30 + private String bizTypeName;
31 +
32 + /**
33 + * 用户上传文件名称
34 + */
35 + private String sourceFileName;
36 +
37 + /**
38 + * 服务器文件名称
39 + */
40 + private String fileName;
41 +
42 + /**
43 + * 服务器文件路径
44 + */
45 + private String filePath;
46 +
47 + /**
48 + * 文件类型ID。关联数据字典表。指定字典目录CODE:ATTACHMENT_FILE_TYPE
49 + */
50 + private Long fileTypeId;
51 +
52 + /**
53 + * 文件类型名称(压缩包、PDF)
54 + */
55 + private String fileTypeName;
56 +
57 + /**
58 + * 状态(0:无效、1:有效)
59 + */
60 + private Long status;
61 +
62 + /**
63 + * 创建时间
64 + */
65 + private Date createTime;
66 +
67 + /**
68 + * 创建人ID,关联用户表ID
69 + */
70 + private Long createUserId;
71 +
72 + /**
73 + * 创建人名称
74 + */
75 + private String createUserName;
76 +
77 + /**
78 + * 修改时间
79 + */
80 + private Date modifyTime;
81 +
82 + /**
83 + * 修改人ID,关联用户表ID
84 + */
85 + private Long modifyUserId;
86 +
87 + /**
88 + * 修改人名称
89 + */
90 + private String modifyUserName;
91 +
92 + private static final long serialVersionUID = 1L;
93 +
94 + public Long getId() {
95 + return id;
96 + }
97 +
98 + public void setId(Long id) {
99 + this.id = id;
100 + }
101 +
102 + public Long getBizId() {
103 + return bizId;
104 + }
105 +
106 + public void setBizId(Long bizId) {
107 + this.bizId = bizId;
108 + }
109 +
110 + public Long getBizTypeId() {
111 + return bizTypeId;
112 + }
113 +
114 + public void setBizTypeId(Long bizTypeId) {
115 + this.bizTypeId = bizTypeId;
116 + }
117 +
118 + public String getBizTypeName() {
119 + return bizTypeName;
120 + }
121 +
122 + public void setBizTypeName(String bizTypeName) {
123 + this.bizTypeName = bizTypeName == null ? null : bizTypeName.trim();
124 + }
125 +
126 + public String getSourceFileName() {
127 + return sourceFileName;
128 + }
129 +
130 + public void setSourceFileName(String sourceFileName) {
131 + this.sourceFileName = sourceFileName == null ? null : sourceFileName.trim();
132 + }
133 +
134 + public String getFileName() {
135 + return fileName;
136 + }
137 +
138 + public void setFileName(String fileName) {
139 + this.fileName = fileName == null ? null : fileName.trim();
140 + }
141 +
142 + public String getFilePath() {
143 + return filePath;
144 + }
145 +
146 + public void setFilePath(String filePath) {
147 + this.filePath = filePath == null ? null : filePath.trim();
148 + }
149 +
150 + public Long getFileTypeId() {
151 + return fileTypeId;
152 + }
153 +
154 + public void setFileTypeId(Long fileTypeId) {
155 + this.fileTypeId = fileTypeId;
156 + }
157 +
158 + public String getFileTypeName() {
159 + return fileTypeName;
160 + }
161 +
162 + public void setFileTypeName(String fileTypeName) {
163 + this.fileTypeName = fileTypeName == null ? null : fileTypeName.trim();
164 + }
165 +
166 + public Long getStatus() {
167 + return status;
168 + }
169 +
170 + public void setStatus(Long status) {
171 + this.status = status;
172 + }
173 +
174 + public Date getCreateTime() {
175 + return createTime;
176 + }
177 +
178 + public void setCreateTime(Date createTime) {
179 + this.createTime = createTime;
180 + }
181 +
182 + public Long getCreateUserId() {
183 + return createUserId;
184 + }
185 +
186 + public void setCreateUserId(Long createUserId) {
187 + this.createUserId = createUserId;
188 + }
189 +
190 + public String getCreateUserName() {
191 + return createUserName;
192 + }
193 +
194 + public void setCreateUserName(String createUserName) {
195 + this.createUserName = createUserName == null ? null : createUserName.trim();
196 + }
197 +
198 + public Date getModifyTime() {
199 + return modifyTime;
200 + }
201 +
202 + public void setModifyTime(Date modifyTime) {
203 + this.modifyTime = modifyTime;
204 + }
205 +
206 + public Long getModifyUserId() {
207 + return modifyUserId;
208 + }
209 +
210 + public void setModifyUserId(Long modifyUserId) {
211 + this.modifyUserId = modifyUserId;
212 + }
213 +
214 + public String getModifyUserName() {
215 + return modifyUserName;
216 + }
217 +
218 + public void setModifyUserName(String modifyUserName) {
219 + this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
220 + }
221 +
222 + @Override
223 + public String toString() {
224 + StringBuilder sb = new StringBuilder();
225 + sb.append(getClass().getSimpleName());
226 + sb.append(" [");
227 + sb.append("Hash = ").append(hashCode());
228 + sb.append(", id=").append(id);
229 + sb.append(", bizId=").append(bizId);
230 + sb.append(", bizTypeId=").append(bizTypeId);
231 + sb.append(", bizTypeName=").append(bizTypeName);
232 + sb.append(", sourceFileName=").append(sourceFileName);
233 + sb.append(", fileName=").append(fileName);
234 + sb.append(", filePath=").append(filePath);
235 + sb.append(", fileTypeId=").append(fileTypeId);
236 + sb.append(", fileTypeName=").append(fileTypeName);
237 + sb.append(", status=").append(status);
238 + sb.append(", createTime=").append(createTime);
239 + sb.append(", createUserId=").append(createUserId);
240 + sb.append(", createUserName=").append(createUserName);
241 + sb.append(", modifyTime=").append(modifyTime);
242 + sb.append(", modifyUserId=").append(modifyUserId);
243 + sb.append(", modifyUserName=").append(modifyUserName);
244 + sb.append(", serialVersionUID=").append(serialVersionUID);
245 + sb.append("]");
246 + return sb.toString();
247 + }
248 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.model.biz;
2 +
3 +import java.io.Serializable;
4 +import java.util.Date;
5 +
6 +/**
7 + * DESC: 待发送邮件业务表
8 + * TABLE: T_BIZ_EMAIL
9 + */
10 +public class Email implements Serializable {
11 + /**
12 + * ID,主键自增
13 + */
14 + private Long id;
15 +
16 + /**
17 + * 业务ID
18 + */
19 + private Long bizId;
20 +
21 + /**
22 + * 业务编号(业务相关的编号:例如运单号)
23 + */
24 + private String bizCode;
25 +
26 + /**
27 + * 收件人邮箱
28 + */
29 + private String toAddress;
30 +
31 + /**
32 + * 抄送人邮箱
33 + */
34 + private String ccAddress;
35 +
36 + /**
37 + * 邮件标题
38 + */
39 + private String subject;
40 +
41 + /**
42 + * 邮件类型ID,关联数据字典表。指定字典目录CODE:EMAIL_TYPE
43 + */
44 + private Long typeId;
45 +
46 + /**
47 + * 邮件类型名称
48 + */
49 + private String typeName;
50 +
51 + /**
52 + * 邮件状态ID,关联数据字典表。指定字典目录CODE:EMAIL_STATUS
53 + */
54 + private Long statusId;
55 +
56 + /**
57 + * 邮件状态名称
58 + */
59 + private String statusName;
60 +
61 + /**
62 + * 发送次数(0-3次)
63 + */
64 + private Long sendNum;
65 +
66 + /**
67 + * 邮件发送时间
68 + */
69 + private Date sendTime;
70 +
71 + /**
72 + * 创建时间
73 + */
74 + private Date createTime;
75 +
76 + /**
77 + * 创建人ID,关联用户表ID
78 + */
79 + private Long createUserId;
80 +
81 + /**
82 + * 创建人名称
83 + */
84 + private String createUserName;
85 +
86 + /**
87 + * 修改时间
88 + */
89 + private Date modifyTime;
90 +
91 + /**
92 + * 修改人ID,关联用户表ID
93 + */
94 + private Long modifyUserId;
95 +
96 + /**
97 + * 修改人名称
98 + */
99 + private String modifyUserName;
100 +
101 + /**
102 + * 邮件内容
103 + */
104 + private String body;
105 +
106 + private static final long serialVersionUID = 1L;
107 +
108 + public Long getId() {
109 + return id;
110 + }
111 +
112 + public void setId(Long id) {
113 + this.id = id;
114 + }
115 +
116 + public Long getBizId() {
117 + return bizId;
118 + }
119 +
120 + public void setBizId(Long bizId) {
121 + this.bizId = bizId;
122 + }
123 +
124 + public String getBizCode() {
125 + return bizCode;
126 + }
127 +
128 + public void setBizCode(String bizCode) {
129 + this.bizCode = bizCode == null ? null : bizCode.trim();
130 + }
131 +
132 + public String getToAddress() {
133 + return toAddress;
134 + }
135 +
136 + public void setToAddress(String toAddress) {
137 + this.toAddress = toAddress == null ? null : toAddress.trim();
138 + }
139 +
140 + public String getCcAddress() {
141 + return ccAddress;
142 + }
143 +
144 + public void setCcAddress(String ccAddress) {
145 + this.ccAddress = ccAddress == null ? null : ccAddress.trim();
146 + }
147 +
148 + public String getSubject() {
149 + return subject;
150 + }
151 +
152 + public void setSubject(String subject) {
153 + this.subject = subject == null ? null : subject.trim();
154 + }
155 +
156 + public Long getTypeId() {
157 + return typeId;
158 + }
159 +
160 + public void setTypeId(Long typeId) {
161 + this.typeId = typeId;
162 + }
163 +
164 + public String getTypeName() {
165 + return typeName;
166 + }
167 +
168 + public void setTypeName(String typeName) {
169 + this.typeName = typeName == null ? null : typeName.trim();
170 + }
171 +
172 + public Long getStatusId() {
173 + return statusId;
174 + }
175 +
176 + public void setStatusId(Long statusId) {
177 + this.statusId = statusId;
178 + }
179 +
180 + public String getStatusName() {
181 + return statusName;
182 + }
183 +
184 + public void setStatusName(String statusName) {
185 + this.statusName = statusName == null ? null : statusName.trim();
186 + }
187 +
188 + public Long getSendNum() {
189 + return sendNum;
190 + }
191 +
192 + public void setSendNum(Long sendNum) {
193 + this.sendNum = sendNum;
194 + }
195 +
196 + public Date getSendTime() {
197 + return sendTime;
198 + }
199 +
200 + public void setSendTime(Date sendTime) {
201 + this.sendTime = sendTime;
202 + }
203 +
204 + public Date getCreateTime() {
205 + return createTime;
206 + }
207 +
208 + public void setCreateTime(Date createTime) {
209 + this.createTime = createTime;
210 + }
211 +
212 + public Long getCreateUserId() {
213 + return createUserId;
214 + }
215 +
216 + public void setCreateUserId(Long createUserId) {
217 + this.createUserId = createUserId;
218 + }
219 +
220 + public String getCreateUserName() {
221 + return createUserName;
222 + }
223 +
224 + public void setCreateUserName(String createUserName) {
225 + this.createUserName = createUserName == null ? null : createUserName.trim();
226 + }
227 +
228 + public Date getModifyTime() {
229 + return modifyTime;
230 + }
231 +
232 + public void setModifyTime(Date modifyTime) {
233 + this.modifyTime = modifyTime;
234 + }
235 +
236 + public Long getModifyUserId() {
237 + return modifyUserId;
238 + }
239 +
240 + public void setModifyUserId(Long modifyUserId) {
241 + this.modifyUserId = modifyUserId;
242 + }
243 +
244 + public String getModifyUserName() {
245 + return modifyUserName;
246 + }
247 +
248 + public void setModifyUserName(String modifyUserName) {
249 + this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
250 + }
251 +
252 + public String getBody() {
253 + return body;
254 + }
255 +
256 + public void setBody(String body) {
257 + this.body = body == null ? null : body.trim();
258 + }
259 +
260 + @Override
261 + public String toString() {
262 + StringBuilder sb = new StringBuilder();
263 + sb.append(getClass().getSimpleName());
264 + sb.append(" [");
265 + sb.append("Hash = ").append(hashCode());
266 + sb.append(", id=").append(id);
267 + sb.append(", bizId=").append(bizId);
268 + sb.append(", bizCode=").append(bizCode);
269 + sb.append(", toAddress=").append(toAddress);
270 + sb.append(", ccAddress=").append(ccAddress);
271 + sb.append(", subject=").append(subject);
272 + sb.append(", typeId=").append(typeId);
273 + sb.append(", typeName=").append(typeName);
274 + sb.append(", statusId=").append(statusId);
275 + sb.append(", statusName=").append(statusName);
276 + sb.append(", sendNum=").append(sendNum);
277 + sb.append(", sendTime=").append(sendTime);
278 + sb.append(", createTime=").append(createTime);
279 + sb.append(", createUserId=").append(createUserId);
280 + sb.append(", createUserName=").append(createUserName);
281 + sb.append(", modifyTime=").append(modifyTime);
282 + sb.append(", modifyUserId=").append(modifyUserId);
283 + sb.append(", modifyUserName=").append(modifyUserName);
284 + sb.append(", body=").append(body);
285 + sb.append(", serialVersionUID=").append(serialVersionUID);
286 + sb.append("]");
287 + return sb.toString();
288 + }
289 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.model.biz;
2 +
3 +import java.io.Serializable;
4 +import java.util.Date;
5 +
6 +/**
7 + * DESC: 推送进口文件主表
8 + * TABLE: T_BIZ_PUSH_OB
9 + */
10 +public class PushOb implements Serializable {
11 + /**
12 + * ID,自动增加
13 + */
14 + private Long id;
15 +
16 + /**
17 + * 运单号
18 + */
19 + private String consignmentCode;
20 +
21 + /**
22 + * 运单ID
23 + */
24 + private Long consignmentId;
25 +
26 + /**
27 + * 推送时间
28 + */
29 + private Date pushTime;
30 +
31 + /**
32 + * 推送状态ID。
33 +关联数据字典表。指定字典目录CODE:PUSH_OB_STATUS
34 + */
35 + private Long statusId;
36 +
37 + /**
38 + * 推送状态名称(待推送、推送成功、推送失败)
39 + */
40 + private String statusName;
41 +
42 + /**
43 + * 推送次数
44 + */
45 + private Long pushNum;
46 +
47 + /**
48 + * 目标绝对路径
49 + */
50 + private String filePath;
51 +
52 + /**
53 + * 备份绝对路径
54 + */
55 + private String fileBackPath;
56 +
57 + /**
58 + * 压缩包文件名
59 + */
60 + private String fileName;
61 +
62 + /**
63 + * 备注
64 + */
65 + private String remark;
66 +
67 + /**
68 + * 创建时间
69 + */
70 + private Date createTime;
71 +
72 + /**
73 + * 创建人ID,关联用户表ID
74 + */
75 + private Long createUserId;
76 +
77 + /**
78 + * 创建人名称
79 + */
80 + private String createUserName;
81 +
82 + /**
83 + * 修改时间
84 + */
85 + private Date modifyTime;
86 +
87 + /**
88 + * 修改人ID,关联用户表ID
89 + */
90 + private Long modifyUserId;
91 +
92 + /**
93 + * 修改人名称
94 + */
95 + private String modifyUserName;
96 +
97 + private static final long serialVersionUID = 1L;
98 +
99 + public Long getId() {
100 + return id;
101 + }
102 +
103 + public void setId(Long id) {
104 + this.id = id;
105 + }
106 +
107 + public String getConsignmentCode() {
108 + return consignmentCode;
109 + }
110 +
111 + public void setConsignmentCode(String consignmentCode) {
112 + this.consignmentCode = consignmentCode == null ? null : consignmentCode.trim();
113 + }
114 +
115 + public Long getConsignmentId() {
116 + return consignmentId;
117 + }
118 +
119 + public void setConsignmentId(Long consignmentId) {
120 + this.consignmentId = consignmentId;
121 + }
122 +
123 + public Date getPushTime() {
124 + return pushTime;
125 + }
126 +
127 + public void setPushTime(Date pushTime) {
128 + this.pushTime = pushTime;
129 + }
130 +
131 + public Long getStatusId() {
132 + return statusId;
133 + }
134 +
135 + public void setStatusId(Long statusId) {
136 + this.statusId = statusId;
137 + }
138 +
139 + public String getStatusName() {
140 + return statusName;
141 + }
142 +
143 + public void setStatusName(String statusName) {
144 + this.statusName = statusName == null ? null : statusName.trim();
145 + }
146 +
147 + public Long getPushNum() {
148 + return pushNum;
149 + }
150 +
151 + public void setPushNum(Long pushNum) {
152 + this.pushNum = pushNum;
153 + }
154 +
155 + public String getFilePath() {
156 + return filePath;
157 + }
158 +
159 + public void setFilePath(String filePath) {
160 + this.filePath = filePath == null ? null : filePath.trim();
161 + }
162 +
163 + public String getFileBackPath() {
164 + return fileBackPath;
165 + }
166 +
167 + public void setFileBackPath(String fileBackPath) {
168 + this.fileBackPath = fileBackPath == null ? null : fileBackPath.trim();
169 + }
170 +
171 + public String getFileName() {
172 + return fileName;
173 + }
174 +
175 + public void setFileName(String fileName) {
176 + this.fileName = fileName == null ? null : fileName.trim();
177 + }
178 +
179 + public String getRemark() {
180 + return remark;
181 + }
182 +
183 + public void setRemark(String remark) {
184 + this.remark = remark == null ? null : remark.trim();
185 + }
186 +
187 + public Date getCreateTime() {
188 + return createTime;
189 + }
190 +
191 + public void setCreateTime(Date createTime) {
192 + this.createTime = createTime;
193 + }
194 +
195 + public Long getCreateUserId() {
196 + return createUserId;
197 + }
198 +
199 + public void setCreateUserId(Long createUserId) {
200 + this.createUserId = createUserId;
201 + }
202 +
203 + public String getCreateUserName() {
204 + return createUserName;
205 + }
206 +
207 + public void setCreateUserName(String createUserName) {
208 + this.createUserName = createUserName == null ? null : createUserName.trim();
209 + }
210 +
211 + public Date getModifyTime() {
212 + return modifyTime;
213 + }
214 +
215 + public void setModifyTime(Date modifyTime) {
216 + this.modifyTime = modifyTime;
217 + }
218 +
219 + public Long getModifyUserId() {
220 + return modifyUserId;
221 + }
222 +
223 + public void setModifyUserId(Long modifyUserId) {
224 + this.modifyUserId = modifyUserId;
225 + }
226 +
227 + public String getModifyUserName() {
228 + return modifyUserName;
229 + }
230 +
231 + public void setModifyUserName(String modifyUserName) {
232 + this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
233 + }
234 +
235 + @Override
236 + public String toString() {
237 + StringBuilder sb = new StringBuilder();
238 + sb.append(getClass().getSimpleName());
239 + sb.append(" [");
240 + sb.append("Hash = ").append(hashCode());
241 + sb.append(", id=").append(id);
242 + sb.append(", consignmentCode=").append(consignmentCode);
243 + sb.append(", consignmentId=").append(consignmentId);
244 + sb.append(", pushTime=").append(pushTime);
245 + sb.append(", statusId=").append(statusId);
246 + sb.append(", statusName=").append(statusName);
247 + sb.append(", pushNum=").append(pushNum);
248 + sb.append(", filePath=").append(filePath);
249 + sb.append(", fileBackPath=").append(fileBackPath);
250 + sb.append(", fileName=").append(fileName);
251 + sb.append(", remark=").append(remark);
252 + sb.append(", createTime=").append(createTime);
253 + sb.append(", createUserId=").append(createUserId);
254 + sb.append(", createUserName=").append(createUserName);
255 + sb.append(", modifyTime=").append(modifyTime);
256 + sb.append(", modifyUserId=").append(modifyUserId);
257 + sb.append(", modifyUserName=").append(modifyUserName);
258 + sb.append(", serialVersionUID=").append(serialVersionUID);
259 + sb.append("]");
260 + return sb.toString();
261 + }
262 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.model.biz;
2 +
3 +import java.io.Serializable;
4 +import java.util.Date;
5 +
6 +/**
7 + * DESC: 推送进口文件明细表
8 + * TABLE: T_BIZ_PUSH_OB_DETAIL
9 + */
10 +public class PushObDetail implements Serializable {
11 + /**
12 + * ID,自动增加
13 + */
14 + private Long id;
15 +
16 + /**
17 + * 运单号
18 + */
19 + private String consignmentCode;
20 +
21 + /**
22 + * 运单ID
23 + */
24 + private Long consignmentId;
25 +
26 + /**
27 + * 推送状态ID。
28 +关联数据字典表。指定字典目录CODE:PUSH_OB_STATUS
29 + */
30 + private Long statusId;
31 +
32 + /**
33 + * 推送状态名称(待推送、推送成功、推送失败)
34 + */
35 + private String statusName;
36 +
37 + /**
38 + * 推送文件类型字典ID,关联数据字典表。指定字典目录CODE:PUSH_OB_FILE_TYPE
39 + */
40 + private Long fileTypeId;
41 +
42 + /**
43 + * 推送文件类型名称(XXX、XXX)
44 + */
45 + private String fileType;
46 +
47 + /**
48 + * 推送文件名
49 + */
50 + private String fileName;
51 +
52 + /**
53 + * 推送进口文件主表ID
54 + */
55 + private Long pushObId;
56 +
57 + /**
58 + * 推送时间
59 + */
60 + private Date pushTime;
61 +
62 + /**
63 + * 备注
64 + */
65 + private String remark;
66 +
67 + /**
68 + * 创建时间
69 + */
70 + private Date createTime;
71 +
72 + /**
73 + * 创建人ID,关联用户表ID
74 + */
75 + private Long createUserId;
76 +
77 + /**
78 + * 创建人名称
79 + */
80 + private String createUserName;
81 +
82 + /**
83 + * 修改时间
84 + */
85 + private Date modifyTime;
86 +
87 + /**
88 + * 修改人ID,关联用户表ID
89 + */
90 + private Long modifyUserId;
91 +
92 + /**
93 + * 修改人名称
94 + */
95 + private String modifyUserName;
96 +
97 + private static final long serialVersionUID = 1L;
98 +
99 + public Long getId() {
100 + return id;
101 + }
102 +
103 + public void setId(Long id) {
104 + this.id = id;
105 + }
106 +
107 + public String getConsignmentCode() {
108 + return consignmentCode;
109 + }
110 +
111 + public void setConsignmentCode(String consignmentCode) {
112 + this.consignmentCode = consignmentCode == null ? null : consignmentCode.trim();
113 + }
114 +
115 + public Long getConsignmentId() {
116 + return consignmentId;
117 + }
118 +
119 + public void setConsignmentId(Long consignmentId) {
120 + this.consignmentId = consignmentId;
121 + }
122 +
123 + public Long getStatusId() {
124 + return statusId;
125 + }
126 +
127 + public void setStatusId(Long statusId) {
128 + this.statusId = statusId;
129 + }
130 +
131 + public String getStatusName() {
132 + return statusName;
133 + }
134 +
135 + public void setStatusName(String statusName) {
136 + this.statusName = statusName == null ? null : statusName.trim();
137 + }
138 +
139 + public Long getFileTypeId() {
140 + return fileTypeId;
141 + }
142 +
143 + public void setFileTypeId(Long fileTypeId) {
144 + this.fileTypeId = fileTypeId;
145 + }
146 +
147 + public String getFileType() {
148 + return fileType;
149 + }
150 +
151 + public void setFileType(String fileType) {
152 + this.fileType = fileType == null ? null : fileType.trim();
153 + }
154 +
155 + public String getFileName() {
156 + return fileName;
157 + }
158 +
159 + public void setFileName(String fileName) {
160 + this.fileName = fileName == null ? null : fileName.trim();
161 + }
162 +
163 + public Long getPushObId() {
164 + return pushObId;
165 + }
166 +
167 + public void setPushObId(Long pushObId) {
168 + this.pushObId = pushObId;
169 + }
170 +
171 + public Date getPushTime() {
172 + return pushTime;
173 + }
174 +
175 + public void setPushTime(Date pushTime) {
176 + this.pushTime = pushTime;
177 + }
178 +
179 + public String getRemark() {
180 + return remark;
181 + }
182 +
183 + public void setRemark(String remark) {
184 + this.remark = remark == null ? null : remark.trim();
185 + }
186 +
187 + public Date getCreateTime() {
188 + return createTime;
189 + }
190 +
191 + public void setCreateTime(Date createTime) {
192 + this.createTime = createTime;
193 + }
194 +
195 + public Long getCreateUserId() {
196 + return createUserId;
197 + }
198 +
199 + public void setCreateUserId(Long createUserId) {
200 + this.createUserId = createUserId;
201 + }
202 +
203 + public String getCreateUserName() {
204 + return createUserName;
205 + }
206 +
207 + public void setCreateUserName(String createUserName) {
208 + this.createUserName = createUserName == null ? null : createUserName.trim();
209 + }
210 +
211 + public Date getModifyTime() {
212 + return modifyTime;
213 + }
214 +
215 + public void setModifyTime(Date modifyTime) {
216 + this.modifyTime = modifyTime;
217 + }
218 +
219 + public Long getModifyUserId() {
220 + return modifyUserId;
221 + }
222 +
223 + public void setModifyUserId(Long modifyUserId) {
224 + this.modifyUserId = modifyUserId;
225 + }
226 +
227 + public String getModifyUserName() {
228 + return modifyUserName;
229 + }
230 +
231 + public void setModifyUserName(String modifyUserName) {
232 + this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
233 + }
234 +
235 + @Override
236 + public String toString() {
237 + StringBuilder sb = new StringBuilder();
238 + sb.append(getClass().getSimpleName());
239 + sb.append(" [");
240 + sb.append("Hash = ").append(hashCode());
241 + sb.append(", id=").append(id);
242 + sb.append(", consignmentCode=").append(consignmentCode);
243 + sb.append(", consignmentId=").append(consignmentId);
244 + sb.append(", statusId=").append(statusId);
245 + sb.append(", statusName=").append(statusName);
246 + sb.append(", fileTypeId=").append(fileTypeId);
247 + sb.append(", fileType=").append(fileType);
248 + sb.append(", fileName=").append(fileName);
249 + sb.append(", pushObId=").append(pushObId);
250 + sb.append(", pushTime=").append(pushTime);
251 + sb.append(", remark=").append(remark);
252 + sb.append(", createTime=").append(createTime);
253 + sb.append(", createUserId=").append(createUserId);
254 + sb.append(", createUserName=").append(createUserName);
255 + sb.append(", modifyTime=").append(modifyTime);
256 + sb.append(", modifyUserId=").append(modifyUserId);
257 + sb.append(", modifyUserName=").append(modifyUserName);
258 + sb.append(", serialVersionUID=").append(serialVersionUID);
259 + sb.append("]");
260 + return sb.toString();
261 + }
262 +}
...\ No newline at end of file ...\ No newline at end of file
1 -package com.fedex.connect.common.model.biz;
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.model.log;
2 +
3 +import java.io.Serializable;
4 +import java.util.Date;
5 +
6 +/**
7 + * DESC: 邮件发送历史日志表
8 + * TABLE: T_LOG_EMAIL_HISTORY
9 + */
10 +public class EmailHistory implements Serializable {
11 + /**
12 + * ID,主键自增
13 + */
14 + private Long id;
15 +
16 + /**
17 + * 业务ID
18 + */
19 + private Long bizId;
20 +
21 + /**
22 + * 业务编号(业务相关的编号:例如运单号)
23 + */
24 + private String bizCode;
25 +
26 + /**
27 + * 收件人邮箱
28 + */
29 + private String toAddress;
30 +
31 + /**
32 + * 抄送人邮箱
33 + */
34 + private String ccAddress;
35 +
36 + /**
37 + * 邮件标题
38 + */
39 + private String subject;
40 +
41 + /**
42 + * 邮件类型ID,关联数据字典表。指定字典目录CODE:EMAIL_TYPE
43 + */
44 + private Long typeId;
45 +
46 + /**
47 + * 邮件类型名称
48 + */
49 + private String typeName;
50 +
51 + /**
52 + * 邮件状态ID,关联数据字典表。指定字典目录CODE:EMAIL_STATUS
53 + */
54 + private Long statusId;
55 +
56 + /**
57 + * 邮件状态名称
58 + */
59 + private String statusName;
60 +
61 + /**
62 + * 发送次数(0-3次)
63 + */
64 + private Long sendNum;
65 +
66 + /**
67 + * 邮件发送时间
68 + */
69 + private Date sendTime;
70 +
71 + /**
72 + * 创建时间
73 + */
74 + private Date createTime;
75 +
76 + /**
77 + * 创建人ID,关联用户表ID
78 + */
79 + private Long createUserId;
80 +
81 + /**
82 + * 创建人名称
83 + */
84 + private String createUserName;
85 +
86 + /**
87 + * 修改时间
88 + */
89 + private Date modifyTime;
90 +
91 + /**
92 + * 修改人ID,关联用户表ID
93 + */
94 + private Long modifyUserId;
95 +
96 + /**
97 + * 修改人名称
98 + */
99 + private String modifyUserName;
100 +
101 + /**
102 + * 邮件内容
103 + */
104 + private String body;
105 +
106 + private static final long serialVersionUID = 1L;
107 +
108 + public Long getId() {
109 + return id;
110 + }
111 +
112 + public void setId(Long id) {
113 + this.id = id;
114 + }
115 +
116 + public Long getBizId() {
117 + return bizId;
118 + }
119 +
120 + public void setBizId(Long bizId) {
121 + this.bizId = bizId;
122 + }
123 +
124 + public String getBizCode() {
125 + return bizCode;
126 + }
127 +
128 + public void setBizCode(String bizCode) {
129 + this.bizCode = bizCode == null ? null : bizCode.trim();
130 + }
131 +
132 + public String getToAddress() {
133 + return toAddress;
134 + }
135 +
136 + public void setToAddress(String toAddress) {
137 + this.toAddress = toAddress == null ? null : toAddress.trim();
138 + }
139 +
140 + public String getCcAddress() {
141 + return ccAddress;
142 + }
143 +
144 + public void setCcAddress(String ccAddress) {
145 + this.ccAddress = ccAddress == null ? null : ccAddress.trim();
146 + }
147 +
148 + public String getSubject() {
149 + return subject;
150 + }
151 +
152 + public void setSubject(String subject) {
153 + this.subject = subject == null ? null : subject.trim();
154 + }
155 +
156 + public Long getTypeId() {
157 + return typeId;
158 + }
159 +
160 + public void setTypeId(Long typeId) {
161 + this.typeId = typeId;
162 + }
163 +
164 + public String getTypeName() {
165 + return typeName;
166 + }
167 +
168 + public void setTypeName(String typeName) {
169 + this.typeName = typeName == null ? null : typeName.trim();
170 + }
171 +
172 + public Long getStatusId() {
173 + return statusId;
174 + }
175 +
176 + public void setStatusId(Long statusId) {
177 + this.statusId = statusId;
178 + }
179 +
180 + public String getStatusName() {
181 + return statusName;
182 + }
183 +
184 + public void setStatusName(String statusName) {
185 + this.statusName = statusName == null ? null : statusName.trim();
186 + }
187 +
188 + public Long getSendNum() {
189 + return sendNum;
190 + }
191 +
192 + public void setSendNum(Long sendNum) {
193 + this.sendNum = sendNum;
194 + }
195 +
196 + public Date getSendTime() {
197 + return sendTime;
198 + }
199 +
200 + public void setSendTime(Date sendTime) {
201 + this.sendTime = sendTime;
202 + }
203 +
204 + public Date getCreateTime() {
205 + return createTime;
206 + }
207 +
208 + public void setCreateTime(Date createTime) {
209 + this.createTime = createTime;
210 + }
211 +
212 + public Long getCreateUserId() {
213 + return createUserId;
214 + }
215 +
216 + public void setCreateUserId(Long createUserId) {
217 + this.createUserId = createUserId;
218 + }
219 +
220 + public String getCreateUserName() {
221 + return createUserName;
222 + }
223 +
224 + public void setCreateUserName(String createUserName) {
225 + this.createUserName = createUserName == null ? null : createUserName.trim();
226 + }
227 +
228 + public Date getModifyTime() {
229 + return modifyTime;
230 + }
231 +
232 + public void setModifyTime(Date modifyTime) {
233 + this.modifyTime = modifyTime;
234 + }
235 +
236 + public Long getModifyUserId() {
237 + return modifyUserId;
238 + }
239 +
240 + public void setModifyUserId(Long modifyUserId) {
241 + this.modifyUserId = modifyUserId;
242 + }
243 +
244 + public String getModifyUserName() {
245 + return modifyUserName;
246 + }
247 +
248 + public void setModifyUserName(String modifyUserName) {
249 + this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
250 + }
251 +
252 + public String getBody() {
253 + return body;
254 + }
255 +
256 + public void setBody(String body) {
257 + this.body = body == null ? null : body.trim();
258 + }
259 +
260 + @Override
261 + public String toString() {
262 + StringBuilder sb = new StringBuilder();
263 + sb.append(getClass().getSimpleName());
264 + sb.append(" [");
265 + sb.append("Hash = ").append(hashCode());
266 + sb.append(", id=").append(id);
267 + sb.append(", bizId=").append(bizId);
268 + sb.append(", bizCode=").append(bizCode);
269 + sb.append(", toAddress=").append(toAddress);
270 + sb.append(", ccAddress=").append(ccAddress);
271 + sb.append(", subject=").append(subject);
272 + sb.append(", typeId=").append(typeId);
273 + sb.append(", typeName=").append(typeName);
274 + sb.append(", statusId=").append(statusId);
275 + sb.append(", statusName=").append(statusName);
276 + sb.append(", sendNum=").append(sendNum);
277 + sb.append(", sendTime=").append(sendTime);
278 + sb.append(", createTime=").append(createTime);
279 + sb.append(", createUserId=").append(createUserId);
280 + sb.append(", createUserName=").append(createUserName);
281 + sb.append(", modifyTime=").append(modifyTime);
282 + sb.append(", modifyUserId=").append(modifyUserId);
283 + sb.append(", modifyUserName=").append(modifyUserName);
284 + sb.append(", body=").append(body);
285 + sb.append(", serialVersionUID=").append(serialVersionUID);
286 + sb.append("]");
287 + return sb.toString();
288 + }
289 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.model.log;
2 +
3 +import java.io.Serializable;
4 +import java.util.Date;
5 +
6 +/**
7 + * DESC: 操作日志
8 + * TABLE: T_LOG_OPERATION
9 + */
10 +public class Operation implements Serializable {
11 + /**
12 + * ID
13 + */
14 + private Long id;
15 +
16 + /**
17 + * 操作人id
18 + */
19 + private Long userId;
20 +
21 + /**
22 + * 操作人名称
23 + */
24 + private String userName;
25 +
26 + /**
27 + * 操作模块
28 + */
29 + private String module;
30 +
31 + /**
32 + * 操作描述
33 + */
34 + private String describe;
35 +
36 + /**
37 + * 操作时间
38 + */
39 + private Date createTime;
40 +
41 + /**
42 + * 请求路径
43 + */
44 + private String url;
45 +
46 + /**
47 + * 请求参数
48 + */
49 + private String requestParameters;
50 +
51 + /**
52 + * 操作结果
53 + */
54 + private String result;
55 +
56 + /**
57 + * 状态 0-不展示 1-展示
58 + */
59 + private Long status;
60 +
61 + /**
62 + * 备注
63 + */
64 + private String remark;
65 +
66 + private static final long serialVersionUID = 1L;
67 +
68 + public Long getId() {
69 + return id;
70 + }
71 +
72 + public void setId(Long id) {
73 + this.id = id;
74 + }
75 +
76 + public Long getUserId() {
77 + return userId;
78 + }
79 +
80 + public void setUserId(Long userId) {
81 + this.userId = userId;
82 + }
83 +
84 + public String getUserName() {
85 + return userName;
86 + }
87 +
88 + public void setUserName(String userName) {
89 + this.userName = userName == null ? null : userName.trim();
90 + }
91 +
92 + public String getModule() {
93 + return module;
94 + }
95 +
96 + public void setModule(String module) {
97 + this.module = module == null ? null : module.trim();
98 + }
99 +
100 + public String getDescribe() {
101 + return describe;
102 + }
103 +
104 + public void setDescribe(String describe) {
105 + this.describe = describe == null ? null : describe.trim();
106 + }
107 +
108 + public Date getCreateTime() {
109 + return createTime;
110 + }
111 +
112 + public void setCreateTime(Date createTime) {
113 + this.createTime = createTime;
114 + }
115 +
116 + public String getUrl() {
117 + return url;
118 + }
119 +
120 + public void setUrl(String url) {
121 + this.url = url == null ? null : url.trim();
122 + }
123 +
124 + public String getRequestParameters() {
125 + return requestParameters;
126 + }
127 +
128 + public void setRequestParameters(String requestParameters) {
129 + this.requestParameters = requestParameters == null ? null : requestParameters.trim();
130 + }
131 +
132 + public String getResult() {
133 + return result;
134 + }
135 +
136 + public void setResult(String result) {
137 + this.result = result == null ? null : result.trim();
138 + }
139 +
140 + public Long getStatus() {
141 + return status;
142 + }
143 +
144 + public void setStatus(Long status) {
145 + this.status = status;
146 + }
147 +
148 + public String getRemark() {
149 + return remark;
150 + }
151 +
152 + public void setRemark(String remark) {
153 + this.remark = remark == null ? null : remark.trim();
154 + }
155 +
156 + @Override
157 + public String toString() {
158 + StringBuilder sb = new StringBuilder();
159 + sb.append(getClass().getSimpleName());
160 + sb.append(" [");
161 + sb.append("Hash = ").append(hashCode());
162 + sb.append(", id=").append(id);
163 + sb.append(", userId=").append(userId);
164 + sb.append(", userName=").append(userName);
165 + sb.append(", module=").append(module);
166 + sb.append(", describe=").append(describe);
167 + sb.append(", createTime=").append(createTime);
168 + sb.append(", url=").append(url);
169 + sb.append(", requestParameters=").append(requestParameters);
170 + sb.append(", result=").append(result);
171 + sb.append(", status=").append(status);
172 + sb.append(", remark=").append(remark);
173 + sb.append(", serialVersionUID=").append(serialVersionUID);
174 + sb.append("]");
175 + return sb.toString();
176 + }
177 +}
...\ No newline at end of file ...\ No newline at end of file
...@@ -4,12 +4,12 @@ import java.io.Serializable; ...@@ -4,12 +4,12 @@ import java.io.Serializable;
4 import java.util.Date; 4 import java.util.Date;
5 5
6 /** 6 /**
7 - * DESC: kafka数据历史 7 + * DESC: KAFKA临时
8 - * TABLE: T_KAFKA_STORAGE_HISTORY 8 + * TABLE: T_SYS_KAFKA_TEMPORARY_STORAGE
9 */ 9 */
10 public class KafkaStorageHistory implements Serializable { 10 public class KafkaStorageHistory implements Serializable {
11 /** 11 /**
12 - * ID,自动增加 12 + * ID,主键自增
13 */ 13 */
14 private Long id; 14 private Long id;
15 15
...@@ -49,9 +49,14 @@ public class KafkaStorageHistory implements Serializable { ...@@ -49,9 +49,14 @@ public class KafkaStorageHistory implements Serializable {
49 private Long frequency; 49 private Long frequency;
50 50
51 /** 51 /**
52 - * 数据状态(0:待处理,1:已处理,2:处理失败) 52 + * KAFKA消息状态ID,关联数据字典表。指定字典目录CODE:KAFKA_MSG_STATUS
53 */ 53 */
54 - private Long status; 54 + private Long statusId;
55 +
56 + /**
57 + * KAFKA消息状态NAME
58 + */
59 + private String statusName;
55 60
56 /** 61 /**
57 * 备注,记录错误信息 62 * 备注,记录错误信息
...@@ -59,11 +64,36 @@ public class KafkaStorageHistory implements Serializable { ...@@ -59,11 +64,36 @@ public class KafkaStorageHistory implements Serializable {
59 private String remark; 64 private String remark;
60 65
61 /** 66 /**
62 - * 系统入库创建时间 67 + * 创建时间
63 */ 68 */
64 private Date createTime; 69 private Date createTime;
65 70
66 /** 71 /**
72 + * 创建人ID,关联用户表ID
73 + */
74 + private Long createUserId;
75 +
76 + /**
77 + * 创建人名称
78 + */
79 + private String createUserName;
80 +
81 + /**
82 + * 修改时间
83 + */
84 + private Date modifyTime;
85 +
86 + /**
87 + * 修改人ID,关联用户表ID
88 + */
89 + private Long modifyUserId;
90 +
91 + /**
92 + * 修改人名称
93 + */
94 + private String modifyUserName;
95 +
96 + /**
67 * 消息体(Json字符串) 97 * 消息体(Json字符串)
68 */ 98 */
69 private String data; 99 private String data;
...@@ -134,12 +164,20 @@ public class KafkaStorageHistory implements Serializable { ...@@ -134,12 +164,20 @@ public class KafkaStorageHistory implements Serializable {
134 this.frequency = frequency; 164 this.frequency = frequency;
135 } 165 }
136 166
137 - public Long getStatus() { 167 + public Long getStatusId() {
138 - return status; 168 + return statusId;
169 + }
170 +
171 + public void setStatusId(Long statusId) {
172 + this.statusId = statusId;
173 + }
174 +
175 + public String getStatusName() {
176 + return statusName;
139 } 177 }
140 178
141 - public void setStatus(Long status) { 179 + public void setStatusName(String statusName) {
142 - this.status = status; 180 + this.statusName = statusName == null ? null : statusName.trim();
143 } 181 }
144 182
145 public String getRemark() { 183 public String getRemark() {
...@@ -158,6 +196,46 @@ public class KafkaStorageHistory implements Serializable { ...@@ -158,6 +196,46 @@ public class KafkaStorageHistory implements Serializable {
158 this.createTime = createTime; 196 this.createTime = createTime;
159 } 197 }
160 198
199 + public Long getCreateUserId() {
200 + return createUserId;
201 + }
202 +
203 + public void setCreateUserId(Long createUserId) {
204 + this.createUserId = createUserId;
205 + }
206 +
207 + public String getCreateUserName() {
208 + return createUserName;
209 + }
210 +
211 + public void setCreateUserName(String createUserName) {
212 + this.createUserName = createUserName == null ? null : createUserName.trim();
213 + }
214 +
215 + public Date getModifyTime() {
216 + return modifyTime;
217 + }
218 +
219 + public void setModifyTime(Date modifyTime) {
220 + this.modifyTime = modifyTime;
221 + }
222 +
223 + public Long getModifyUserId() {
224 + return modifyUserId;
225 + }
226 +
227 + public void setModifyUserId(Long modifyUserId) {
228 + this.modifyUserId = modifyUserId;
229 + }
230 +
231 + public String getModifyUserName() {
232 + return modifyUserName;
233 + }
234 +
235 + public void setModifyUserName(String modifyUserName) {
236 + this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
237 + }
238 +
161 public String getData() { 239 public String getData() {
162 return data; 240 return data;
163 } 241 }
...@@ -180,9 +258,15 @@ public class KafkaStorageHistory implements Serializable { ...@@ -180,9 +258,15 @@ public class KafkaStorageHistory implements Serializable {
180 sb.append(", sendTime=").append(sendTime); 258 sb.append(", sendTime=").append(sendTime);
181 sb.append(", consignmentCode=").append(consignmentCode); 259 sb.append(", consignmentCode=").append(consignmentCode);
182 sb.append(", frequency=").append(frequency); 260 sb.append(", frequency=").append(frequency);
183 - sb.append(", status=").append(status); 261 + sb.append(", statusId=").append(statusId);
262 + sb.append(", statusName=").append(statusName);
184 sb.append(", remark=").append(remark); 263 sb.append(", remark=").append(remark);
185 sb.append(", createTime=").append(createTime); 264 sb.append(", createTime=").append(createTime);
265 + sb.append(", createUserId=").append(createUserId);
266 + sb.append(", createUserName=").append(createUserName);
267 + sb.append(", modifyTime=").append(modifyTime);
268 + sb.append(", modifyUserId=").append(modifyUserId);
269 + sb.append(", modifyUserName=").append(modifyUserName);
186 sb.append(", data=").append(data); 270 sb.append(", data=").append(data);
187 sb.append(", serialVersionUID=").append(serialVersionUID); 271 sb.append(", serialVersionUID=").append(serialVersionUID);
188 sb.append("]"); 272 sb.append("]");
......
...@@ -4,12 +4,12 @@ import java.io.Serializable; ...@@ -4,12 +4,12 @@ import java.io.Serializable;
4 import java.util.Date; 4 import java.util.Date;
5 5
6 /** 6 /**
7 - * DESC: kafka数据临时 7 + * DESC: KAFKA数据历史
8 - * TABLE: T_KAFKA_TEMPORARY_STORAGE 8 + * TABLE: T_SYS_KAFKA_STORAGE_HISTORY
9 */ 9 */
10 public class KafkaTemporaryStorage implements Serializable { 10 public class KafkaTemporaryStorage implements Serializable {
11 /** 11 /**
12 - * ID,自动增加 12 + * ID,主键自增
13 */ 13 */
14 private Long id; 14 private Long id;
15 15
...@@ -49,9 +49,14 @@ public class KafkaTemporaryStorage implements Serializable { ...@@ -49,9 +49,14 @@ public class KafkaTemporaryStorage implements Serializable {
49 private Long frequency; 49 private Long frequency;
50 50
51 /** 51 /**
52 - * 数据状态(0:待处理,1:已处理,2:处理失败) 52 + * KAFKA消息状态ID,关联数据字典表。指定字典目录CODE:KAFKA_MSG_STATUS
53 */ 53 */
54 - private Long status; 54 + private Long statusId;
55 +
56 + /**
57 + * KAFKA消息状态NAME
58 + */
59 + private String statusName;
55 60
56 /** 61 /**
57 * 备注,记录错误信息 62 * 备注,记录错误信息
...@@ -59,11 +64,36 @@ public class KafkaTemporaryStorage implements Serializable { ...@@ -59,11 +64,36 @@ public class KafkaTemporaryStorage implements Serializable {
59 private String remark; 64 private String remark;
60 65
61 /** 66 /**
62 - * 系统入库创建时间 67 + * 创建时间
63 */ 68 */
64 private Date createTime; 69 private Date createTime;
65 70
66 /** 71 /**
72 + * 创建人ID,关联用户表ID
73 + */
74 + private Long createUserId;
75 +
76 + /**
77 + * 创建人名称
78 + */
79 + private String createUserName;
80 +
81 + /**
82 + * 修改时间
83 + */
84 + private Date modifyTime;
85 +
86 + /**
87 + * 修改人ID,关联用户表ID
88 + */
89 + private Long modifyUserId;
90 +
91 + /**
92 + * 修改人名称
93 + */
94 + private String modifyUserName;
95 +
96 + /**
67 * 消息体(Json字符串) 97 * 消息体(Json字符串)
68 */ 98 */
69 private String data; 99 private String data;
...@@ -134,12 +164,20 @@ public class KafkaTemporaryStorage implements Serializable { ...@@ -134,12 +164,20 @@ public class KafkaTemporaryStorage implements Serializable {
134 this.frequency = frequency; 164 this.frequency = frequency;
135 } 165 }
136 166
137 - public Long getStatus() { 167 + public Long getStatusId() {
138 - return status; 168 + return statusId;
169 + }
170 +
171 + public void setStatusId(Long statusId) {
172 + this.statusId = statusId;
173 + }
174 +
175 + public String getStatusName() {
176 + return statusName;
139 } 177 }
140 178
141 - public void setStatus(Long status) { 179 + public void setStatusName(String statusName) {
142 - this.status = status; 180 + this.statusName = statusName == null ? null : statusName.trim();
143 } 181 }
144 182
145 public String getRemark() { 183 public String getRemark() {
...@@ -158,6 +196,46 @@ public class KafkaTemporaryStorage implements Serializable { ...@@ -158,6 +196,46 @@ public class KafkaTemporaryStorage implements Serializable {
158 this.createTime = createTime; 196 this.createTime = createTime;
159 } 197 }
160 198
199 + public Long getCreateUserId() {
200 + return createUserId;
201 + }
202 +
203 + public void setCreateUserId(Long createUserId) {
204 + this.createUserId = createUserId;
205 + }
206 +
207 + public String getCreateUserName() {
208 + return createUserName;
209 + }
210 +
211 + public void setCreateUserName(String createUserName) {
212 + this.createUserName = createUserName == null ? null : createUserName.trim();
213 + }
214 +
215 + public Date getModifyTime() {
216 + return modifyTime;
217 + }
218 +
219 + public void setModifyTime(Date modifyTime) {
220 + this.modifyTime = modifyTime;
221 + }
222 +
223 + public Long getModifyUserId() {
224 + return modifyUserId;
225 + }
226 +
227 + public void setModifyUserId(Long modifyUserId) {
228 + this.modifyUserId = modifyUserId;
229 + }
230 +
231 + public String getModifyUserName() {
232 + return modifyUserName;
233 + }
234 +
235 + public void setModifyUserName(String modifyUserName) {
236 + this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
237 + }
238 +
161 public String getData() { 239 public String getData() {
162 return data; 240 return data;
163 } 241 }
...@@ -180,9 +258,15 @@ public class KafkaTemporaryStorage implements Serializable { ...@@ -180,9 +258,15 @@ public class KafkaTemporaryStorage implements Serializable {
180 sb.append(", sendTime=").append(sendTime); 258 sb.append(", sendTime=").append(sendTime);
181 sb.append(", consignmentCode=").append(consignmentCode); 259 sb.append(", consignmentCode=").append(consignmentCode);
182 sb.append(", frequency=").append(frequency); 260 sb.append(", frequency=").append(frequency);
183 - sb.append(", status=").append(status); 261 + sb.append(", statusId=").append(statusId);
262 + sb.append(", statusName=").append(statusName);
184 sb.append(", remark=").append(remark); 263 sb.append(", remark=").append(remark);
185 sb.append(", createTime=").append(createTime); 264 sb.append(", createTime=").append(createTime);
265 + sb.append(", createUserId=").append(createUserId);
266 + sb.append(", createUserName=").append(createUserName);
267 + sb.append(", modifyTime=").append(modifyTime);
268 + sb.append(", modifyUserId=").append(modifyUserId);
269 + sb.append(", modifyUserName=").append(modifyUserName);
186 sb.append(", data=").append(data); 270 sb.append(", data=").append(data);
187 sb.append(", serialVersionUID=").append(serialVersionUID); 271 sb.append(", serialVersionUID=").append(serialVersionUID);
188 sb.append("]"); 272 sb.append("]");
......