LehrerPersonaldaten.js 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.cast_de_nrw_schule_svws_core_data_lehrer_LehrerPersonaldaten = exports.LehrerPersonaldaten = void 0;
  4. const JavaObject_1 = require("../../../java/lang/JavaObject");
  5. class LehrerPersonaldaten extends JavaObject_1.JavaObject {
  6. id = 0;
  7. identNrTeil1 = null;
  8. identNrTeil2SerNr = null;
  9. personalaktennummer = null;
  10. lbvPersonalnummer = null;
  11. lbvVerguetungsschluessel = null;
  12. zugangsdatum = null;
  13. zugangsgrund = null;
  14. abgangsdatum = null;
  15. abgangsgrund = null;
  16. pflichtstundensoll = null;
  17. rechtsverhaeltnis = null;
  18. beschaeftigungsart = null;
  19. einsatzstatus = null;
  20. stammschulnummer = null;
  21. masernImpfnachweis = null;
  22. constructor() {
  23. super();
  24. }
  25. isTranspiledInstanceOf(name) {
  26. return ['de.nrw.schule.svws.core.data.lehrer.LehrerPersonaldaten'].includes(name);
  27. }
  28. static transpilerFromJSON(json) {
  29. const obj = JSON.parse(json);
  30. const result = new LehrerPersonaldaten();
  31. if (typeof obj.id === "undefined")
  32. throw new Error('invalid json format, missing attribute id');
  33. result.id = obj.id;
  34. result.identNrTeil1 = typeof obj.identNrTeil1 === "undefined" ? null : obj.identNrTeil1;
  35. result.identNrTeil2SerNr = typeof obj.identNrTeil2SerNr === "undefined" ? null : obj.identNrTeil2SerNr;
  36. result.personalaktennummer = typeof obj.personalaktennummer === "undefined" ? null : obj.personalaktennummer;
  37. result.lbvPersonalnummer = typeof obj.lbvPersonalnummer === "undefined" ? null : obj.lbvPersonalnummer;
  38. result.lbvVerguetungsschluessel = typeof obj.lbvVerguetungsschluessel === "undefined" ? null : obj.lbvVerguetungsschluessel;
  39. result.zugangsdatum = typeof obj.zugangsdatum === "undefined" ? null : obj.zugangsdatum;
  40. result.zugangsgrund = typeof obj.zugangsgrund === "undefined" ? null : obj.zugangsgrund;
  41. result.abgangsdatum = typeof obj.abgangsdatum === "undefined" ? null : obj.abgangsdatum;
  42. result.abgangsgrund = typeof obj.abgangsgrund === "undefined" ? null : obj.abgangsgrund;
  43. result.pflichtstundensoll = typeof obj.pflichtstundensoll === "undefined" ? null : obj.pflichtstundensoll;
  44. result.rechtsverhaeltnis = typeof obj.rechtsverhaeltnis === "undefined" ? null : obj.rechtsverhaeltnis;
  45. result.beschaeftigungsart = typeof obj.beschaeftigungsart === "undefined" ? null : obj.beschaeftigungsart;
  46. result.einsatzstatus = typeof obj.einsatzstatus === "undefined" ? null : obj.einsatzstatus;
  47. result.stammschulnummer = typeof obj.stammschulnummer === "undefined" ? null : obj.stammschulnummer;
  48. result.masernImpfnachweis = typeof obj.masernImpfnachweis === "undefined" ? null : obj.masernImpfnachweis;
  49. return result;
  50. }
  51. static transpilerToJSON(obj) {
  52. let result = '{';
  53. result += '"id" : ' + obj.id + ',';
  54. result += '"identNrTeil1" : ' + ((!obj.identNrTeil1) ? 'null' : '"' + obj.identNrTeil1.valueOf() + '"') + ',';
  55. result += '"identNrTeil2SerNr" : ' + ((!obj.identNrTeil2SerNr) ? 'null' : '"' + obj.identNrTeil2SerNr.valueOf() + '"') + ',';
  56. result += '"personalaktennummer" : ' + ((!obj.personalaktennummer) ? 'null' : '"' + obj.personalaktennummer.valueOf() + '"') + ',';
  57. result += '"lbvPersonalnummer" : ' + ((!obj.lbvPersonalnummer) ? 'null' : '"' + obj.lbvPersonalnummer.valueOf() + '"') + ',';
  58. result += '"lbvVerguetungsschluessel" : ' + ((!obj.lbvVerguetungsschluessel) ? 'null' : '"' + obj.lbvVerguetungsschluessel.valueOf() + '"') + ',';
  59. result += '"zugangsdatum" : ' + ((!obj.zugangsdatum) ? 'null' : '"' + obj.zugangsdatum.valueOf() + '"') + ',';
  60. result += '"zugangsgrund" : ' + ((!obj.zugangsgrund) ? 'null' : '"' + obj.zugangsgrund.valueOf() + '"') + ',';
  61. result += '"abgangsdatum" : ' + ((!obj.abgangsdatum) ? 'null' : '"' + obj.abgangsdatum.valueOf() + '"') + ',';
  62. result += '"abgangsgrund" : ' + ((!obj.abgangsgrund) ? 'null' : '"' + obj.abgangsgrund.valueOf() + '"') + ',';
  63. result += '"pflichtstundensoll" : ' + ((!obj.pflichtstundensoll) ? 'null' : obj.pflichtstundensoll.valueOf()) + ',';
  64. result += '"rechtsverhaeltnis" : ' + ((!obj.rechtsverhaeltnis) ? 'null' : '"' + obj.rechtsverhaeltnis.valueOf() + '"') + ',';
  65. result += '"beschaeftigungsart" : ' + ((!obj.beschaeftigungsart) ? 'null' : '"' + obj.beschaeftigungsart.valueOf() + '"') + ',';
  66. result += '"einsatzstatus" : ' + ((!obj.einsatzstatus) ? 'null' : '"' + obj.einsatzstatus.valueOf() + '"') + ',';
  67. result += '"stammschulnummer" : ' + ((!obj.stammschulnummer) ? 'null' : '"' + obj.stammschulnummer.valueOf() + '"') + ',';
  68. result += '"masernImpfnachweis" : ' + ((!obj.masernImpfnachweis) ? 'null' : obj.masernImpfnachweis.valueOf()) + ',';
  69. result = result.slice(0, -1);
  70. result += '}';
  71. return result;
  72. }
  73. static transpilerToJSONPatch(obj) {
  74. let result = '{';
  75. if (typeof obj.id !== "undefined") {
  76. result += '"id" : ' + obj.id + ',';
  77. }
  78. if (typeof obj.identNrTeil1 !== "undefined") {
  79. result += '"identNrTeil1" : ' + ((!obj.identNrTeil1) ? 'null' : '"' + obj.identNrTeil1.valueOf() + '"') + ',';
  80. }
  81. if (typeof obj.identNrTeil2SerNr !== "undefined") {
  82. result += '"identNrTeil2SerNr" : ' + ((!obj.identNrTeil2SerNr) ? 'null' : '"' + obj.identNrTeil2SerNr.valueOf() + '"') + ',';
  83. }
  84. if (typeof obj.personalaktennummer !== "undefined") {
  85. result += '"personalaktennummer" : ' + ((!obj.personalaktennummer) ? 'null' : '"' + obj.personalaktennummer.valueOf() + '"') + ',';
  86. }
  87. if (typeof obj.lbvPersonalnummer !== "undefined") {
  88. result += '"lbvPersonalnummer" : ' + ((!obj.lbvPersonalnummer) ? 'null' : '"' + obj.lbvPersonalnummer.valueOf() + '"') + ',';
  89. }
  90. if (typeof obj.lbvVerguetungsschluessel !== "undefined") {
  91. result += '"lbvVerguetungsschluessel" : ' + ((!obj.lbvVerguetungsschluessel) ? 'null' : '"' + obj.lbvVerguetungsschluessel.valueOf() + '"') + ',';
  92. }
  93. if (typeof obj.zugangsdatum !== "undefined") {
  94. result += '"zugangsdatum" : ' + ((!obj.zugangsdatum) ? 'null' : '"' + obj.zugangsdatum.valueOf() + '"') + ',';
  95. }
  96. if (typeof obj.zugangsgrund !== "undefined") {
  97. result += '"zugangsgrund" : ' + ((!obj.zugangsgrund) ? 'null' : '"' + obj.zugangsgrund.valueOf() + '"') + ',';
  98. }
  99. if (typeof obj.abgangsdatum !== "undefined") {
  100. result += '"abgangsdatum" : ' + ((!obj.abgangsdatum) ? 'null' : '"' + obj.abgangsdatum.valueOf() + '"') + ',';
  101. }
  102. if (typeof obj.abgangsgrund !== "undefined") {
  103. result += '"abgangsgrund" : ' + ((!obj.abgangsgrund) ? 'null' : '"' + obj.abgangsgrund.valueOf() + '"') + ',';
  104. }
  105. if (typeof obj.pflichtstundensoll !== "undefined") {
  106. result += '"pflichtstundensoll" : ' + ((!obj.pflichtstundensoll) ? 'null' : obj.pflichtstundensoll.valueOf()) + ',';
  107. }
  108. if (typeof obj.rechtsverhaeltnis !== "undefined") {
  109. result += '"rechtsverhaeltnis" : ' + ((!obj.rechtsverhaeltnis) ? 'null' : '"' + obj.rechtsverhaeltnis.valueOf() + '"') + ',';
  110. }
  111. if (typeof obj.beschaeftigungsart !== "undefined") {
  112. result += '"beschaeftigungsart" : ' + ((!obj.beschaeftigungsart) ? 'null' : '"' + obj.beschaeftigungsart.valueOf() + '"') + ',';
  113. }
  114. if (typeof obj.einsatzstatus !== "undefined") {
  115. result += '"einsatzstatus" : ' + ((!obj.einsatzstatus) ? 'null' : '"' + obj.einsatzstatus.valueOf() + '"') + ',';
  116. }
  117. if (typeof obj.stammschulnummer !== "undefined") {
  118. result += '"stammschulnummer" : ' + ((!obj.stammschulnummer) ? 'null' : '"' + obj.stammschulnummer.valueOf() + '"') + ',';
  119. }
  120. if (typeof obj.masernImpfnachweis !== "undefined") {
  121. result += '"masernImpfnachweis" : ' + ((!obj.masernImpfnachweis) ? 'null' : obj.masernImpfnachweis.valueOf()) + ',';
  122. }
  123. result = result.slice(0, -1);
  124. result += '}';
  125. return result;
  126. }
  127. }
  128. exports.LehrerPersonaldaten = LehrerPersonaldaten;
  129. function cast_de_nrw_schule_svws_core_data_lehrer_LehrerPersonaldaten(obj) {
  130. return obj;
  131. }
  132. exports.cast_de_nrw_schule_svws_core_data_lehrer_LehrerPersonaldaten = cast_de_nrw_schule_svws_core_data_lehrer_LehrerPersonaldaten;
  133. //# sourceMappingURL=LehrerPersonaldaten.js.map