Files
meta-plugin/src/main/resources/msgmapper1/java/OrgId.java

36 lines
563 B
Java
Raw Normal View History

2026-03-27 10:02:59 +08:00
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;
}
}