This commit is contained in:
dlandy
2026-03-27 10:02:59 +08:00
commit 188b497e15
204 changed files with 17633 additions and 0 deletions

View 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;
}
}