fjl
fujunling
2023-07-18 2c6c24281d4c261b172d02a98df9524cffc0c276
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
package com.vci.ubcs.code.webService.config;
 
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
 
import java.util.List;
import java.util.Map;
 
@ConfigurationProperties(prefix="code.universalinterface.attrconfig")
@Component
public class AttributeMapConfig {
    private Map<String,String> system_attrmap;
 
    /****
     * 无人机主数据与ERP集成字段值转换
     */
    private Map<String,String> attrKey1ToKey2Map;
    public Map<String, String> getSystem_attrmap() {
        return system_attrmap;
    }
    public void setSystem_attrmap(Map<String, String> system_attrmap) {
        this.system_attrmap = system_attrmap;
    }
 
 
    public Map<String, String> getAttrKey1ToKey2Map() {
        return attrKey1ToKey2Map;
    }
 
    public void setAttrKey1ToKey2Map(Map<String, String> attrKey1ToKey2Map) {
        this.attrKey1ToKey2Map = attrKey1ToKey2Map;
    }
 
    @Override
    public String toString() {
        return "AttributeMapConfig{" +
            "system_attrmap=" + system_attrmap +
            ", attrKey1ToKey2Map=" + attrKey1ToKey2Map +
            '}';
    }
}