2121 */
2222@ JsonInclude (JsonInclude .Include .NON_NULL )
2323public abstract class Geschaeftsobjekt {
24- private String id ;
25- private final Typ typ = Typ .GESCHAEFTSOBJEKT ;
26- private final String boVersion = "202401.4.0" ;
24+ private String _id ;
25+ private final Typ _typ = Typ .GESCHAEFTSOBJEKT ;
26+ private final String _version = "202401.4.0" ;
2727 private List <ZusatzAttribut > zusatzAttribute ;
2828
2929 protected Geschaeftsobjekt (GeschaeftsobjektBuilder builder ) {
30- this .id = builder .id ;
30+ this ._id = builder ._id ;
3131 this .zusatzAttribute = builder .zusatzAttribute ;
3232 }
3333
3434 /**
3535 * Hier können IDs anderer Systeme hinterlegt werden (z.B. eine SAP-GP-Nummer oder eine GUID)
3636 */
37- public String getId () {
38- return id ;
37+ public String get_id () {
38+ return _id ;
3939 }
4040
4141 /**
4242 * Hier können IDs anderer Systeme hinterlegt werden (z.B. eine SAP-GP-Nummer oder eine GUID)
4343 */
44- public void setId (String value ) {
45- this .id = value ;
44+ public void set_id (String value ) {
45+ this ._id = value ;
4646 }
4747
4848 /**
4949 * Typ des Geschaeftsobjekts
5050 */
51- public Typ getTyp () {
52- return typ ;
51+ public Typ get_typ () {
52+ return _typ ;
5353 }
5454
5555 /**
5656 * Version der BO-Struktur aka "fachliche Versionierung"
5757 */
58- public String getBoVersion () {
59- return boVersion ;
58+ public String get_version () {
59+ return _version ;
6060 }
6161
6262 public List <ZusatzAttribut > getZusatzAttribute () {
@@ -68,14 +68,14 @@ public void setZusatzAttribute(List<ZusatzAttribut> value) {
6868 }
6969
7070 public abstract static class GeschaeftsobjektBuilder {
71- private String id ;
71+ private String _id ;
7272 private List <ZusatzAttribut > zusatzAttribute ;
7373
7474 /**
7575 * Hier können IDs anderer Systeme hinterlegt werden (z.B. eine SAP-GP-Nummer oder eine GUID)
7676 */
77- public GeschaeftsobjektBuilder setId (String value ) {
78- this .id = value ;
77+ public GeschaeftsobjektBuilder set_id (String value ) {
78+ this ._id = value ;
7979 return this ;
8080 }
8181
0 commit comments