1919 * <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/Hochfrequenz/BO4E-Schemas/v202401.0.1-/src/bo4e_schemas/bo/Geschaeftsobjekt.json>`_
2020 */
2121public abstract class Geschaeftsobjekt {
22- private String id ;
23- private final Typ typ = Typ .GESCHAEFTSOBJEKT ;
24- private final String boVersion = "202401.4.0" ;
22+ private String _id ;
23+ private final Typ _typ = Typ .GESCHAEFTSOBJEKT ;
24+ private final String _version = "202401.4.0" ;
2525 private List <ZusatzAttribut > zusatzAttribute ;
2626
2727 protected Geschaeftsobjekt (GeschaeftsobjektBuilder builder ) {
28- this .id = builder .id ;
28+ this ._id = builder ._id ;
2929 this .zusatzAttribute = builder .zusatzAttribute ;
3030 }
3131
3232 /**
3333 * Hier können IDs anderer Systeme hinterlegt werden (z.B. eine SAP-GP-Nummer oder eine GUID)
3434 */
35- public String getId () {
36- return id ;
35+ public String get_id () {
36+ return _id ;
3737 }
3838
3939 /**
4040 * Hier können IDs anderer Systeme hinterlegt werden (z.B. eine SAP-GP-Nummer oder eine GUID)
4141 */
42- public void setId (String value ) {
43- this .id = value ;
42+ public void set_id (String value ) {
43+ this ._id = value ;
4444 }
4545
4646 /**
4747 * Typ des Geschaeftsobjekts
4848 */
49- public Typ getTyp () {
50- return typ ;
49+ public Typ get_typ () {
50+ return _typ ;
5151 }
5252
5353 /**
5454 * Version der BO-Struktur aka "fachliche Versionierung"
5555 */
56- public String getBoVersion () {
57- return boVersion ;
56+ public String get_version () {
57+ return _version ;
5858 }
5959
6060 public List <ZusatzAttribut > getZusatzAttribute () {
@@ -66,14 +66,14 @@ public void setZusatzAttribute(List<ZusatzAttribut> value) {
6666 }
6767
6868 public abstract static class GeschaeftsobjektBuilder {
69- private String id ;
69+ private String _id ;
7070 private List <ZusatzAttribut > zusatzAttribute ;
7171
7272 /**
7373 * Hier können IDs anderer Systeme hinterlegt werden (z.B. eine SAP-GP-Nummer oder eine GUID)
7474 */
75- public GeschaeftsobjektBuilder setId (String value ) {
76- this .id = value ;
75+ public GeschaeftsobjektBuilder set_id (String value ) {
76+ this ._id = value ;
7777 return this ;
7878 }
7979
0 commit comments