Showing
32 changed files
with
1441 additions
and
3 deletions
server/common-dao/src/main/java/com/fedex/connect/common/dao/bi/PortclearEmailMappingMapper.java
0 → 100644
| 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 |
server/common-dao/src/main/java/com/fedex/connect/common/dao/biz/package-info.java
deleted
100644 → 0
| 1 | -package com.fedex.connect.common.dao.biz; | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
server/common-dao/src/main/java/com/fedex/connect/common/mapper/bi/PortclearEmailMappingMapper.xml
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
server/common-dao/src/main/java/com/fedex/connect/common/mapper/biz/ConsignmentMapper.xml
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
server/common-dao/src/main/java/com/fedex/connect/common/mapper/biz/PushObDetailMapper.xml
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
server/common-dao/src/main/java/com/fedex/connect/common/mapper/biz/package-info.java
deleted
100644 → 0
| 1 | -package com.fedex.connect.common.mapper.biz; | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
server/common-dao/src/main/java/com/fedex/connect/common/model/bi/PortclearEmailMapping.java
0 → 100644
| 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 |
server/common-dao/src/main/java/com/fedex/connect/common/model/bi/PortclearEmailMappingExample.java
0 → 100644
This diff is collapsed. Click to expand it.
| 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 |
server/common-dao/src/main/java/com/fedex/connect/common/model/biz/AttachmentExample.java
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
server/common-dao/src/main/java/com/fedex/connect/common/model/biz/ConsignmentExample.java
0 → 100644
This diff could not be displayed because it is too large.
| 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 |
This diff is collapsed. Click to expand it.
| 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 |
server/common-dao/src/main/java/com/fedex/connect/common/model/biz/PushObDetailExample.java
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
server/common-dao/src/main/java/com/fedex/connect/common/model/biz/package-info.java
deleted
100644 → 0
| 1 | -package com.fedex.connect.common.model.biz; | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
This diff is collapsed. Click to expand it.
-
Please register or login to post a comment