| | |
| | | package com.vci.ubcs.code.vo.webserviceModel.attrmap; |
| | | |
| | | import com.thoughtworks.xstream.annotations.XStreamAlias; |
| | | import com.thoughtworks.xstream.annotations.XStreamAsAttribute; |
| | | |
| | | /** |
| | | * 属性映射 |
| | | */ |
| | | @XStreamAlias("clsf") |
| | | public class ClsfAttrMappingDO { |
| | | /*** |
| | | * 数据源系统内部字段 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String sourceKey=""; |
| | | /*** |
| | | * 数据源系统名称 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String sourceName=""; |
| | | /*** |
| | | * 目标系统内部字段 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String targetKey="" ; |
| | | /*** |
| | | * 目标系统内部名称 |
| | | */ |
| | | @XStreamAsAttribute |
| | | private String targetName=""; |
| | | |
| | | public String getSourceKey() { |
| | | return sourceKey; |
| | | } |
| | | |
| | | public void setSourceKey(String sourceKey) { |
| | | this.sourceKey = sourceKey; |
| | | } |
| | | |
| | | public String getSourceName() { |
| | | return sourceName; |
| | | } |
| | | |
| | | public void setSourceName(String sourceName) { |
| | | this.sourceName = sourceName; |
| | | } |
| | | |
| | | public String getTargetKey() { |
| | | return targetKey; |
| | | } |
| | | |
| | | public void setTargetKey(String targetKey) { |
| | | this.targetKey = targetKey; |
| | | } |
| | | |
| | | public String getTargetName() { |
| | | return targetName; |
| | | } |
| | | |
| | | public void setTargetName(String targetName) { |
| | | this.targetName = targetName; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ClsfAttrMappingDO{" + |
| | | "sourceKey='" + sourceKey + '\'' + |
| | | ", sourceName='" + sourceName + '\'' + |
| | | ", targetKey='" + targetKey + '\'' + |
| | | ", targetName='" + targetName + '\'' + |
| | | '}'; |
| | | } |
| | | } |