init
This commit is contained in:
35
src/main/resources/msgmapper1/java/OrgId.java
Normal file
35
src/main/resources/msgmapper1/java/OrgId.java
Normal file
@@ -0,0 +1,35 @@
|
||||
package com.example.message;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class OrgId {
|
||||
|
||||
private String anyBIC;
|
||||
private String lEI;
|
||||
private List<Othr> othr;
|
||||
|
||||
public String getAnyBIC() {
|
||||
return anyBIC;
|
||||
}
|
||||
|
||||
public void setAnyBIC(String anyBIC) {
|
||||
this.anyBIC = anyBIC;
|
||||
}
|
||||
|
||||
public String getLEI() {
|
||||
return lEI;
|
||||
}
|
||||
|
||||
public void setLEI(String lEI) {
|
||||
this.lEI = lEI;
|
||||
}
|
||||
|
||||
public List<Othr> getOthr() {
|
||||
return othr;
|
||||
}
|
||||
|
||||
public void setOthr(List<Othr> othr) {
|
||||
this.othr = othr;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user