ludc
2023-03-27 82a410d9ec7a5d15eed27e9990cff371feab43a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package org.springblade.code.vo.universalInter.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 + '\'' +
                '}';
    }
}