json_convert_content.dart 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938
  1. // ignore_for_file: non_constant_identifier_names
  2. // ignore_for_file: camel_case_types
  3. // ignore_for_file: prefer_single_quotes
  4. // This file is automatically generated. DO NOT EDIT, all your changes would be lost.
  5. import 'package:flutter/material.dart' show debugPrint;
  6. import 'package:domain/entity/response/add_edit_revise_view_s_g_entity.dart';
  7. import 'package:domain/entity/response/agency_detail_entity.dart';
  8. import 'package:domain/entity/response/agency_option_entity.dart';
  9. import 'package:domain/entity/response/agency_table_entity.dart';
  10. import 'package:domain/entity/response/attendance_entity.dart';
  11. import 'package:domain/entity/response/attendance_review_entity.dart';
  12. import 'package:domain/entity/response/check_success_entity.dart';
  13. import 'package:domain/entity/response/contract_detail_entity.dart';
  14. import 'package:domain/entity/response/contract_option_entity.dart';
  15. import 'package:domain/entity/response/contract_position_add_option_entity.dart';
  16. import 'package:domain/entity/response/contract_position_option_entity.dart';
  17. import 'package:domain/entity/response/contract_position_rate_detail_entity.dart';
  18. import 'package:domain/entity/response/contract_position_rate_specific_option_entity.dart';
  19. import 'package:domain/entity/response/contract_position_rate_table_entity.dart';
  20. import 'package:domain/entity/response/contract_position_table_entity.dart';
  21. import 'package:domain/entity/response/contract_table_entity.dart';
  22. import 'package:domain/entity/response/device_list_entity.dart';
  23. import 'package:domain/entity/response/fiance_report_entity.dart';
  24. import 'package:domain/entity/response/hotel_info_entity.dart';
  25. import 'package:domain/entity/response/id_name_entity.dart';
  26. import 'package:domain/entity/response/index_option_entity.dart';
  27. import 'package:domain/entity/response/job_applied_edit_index_s_g_entity.dart';
  28. import 'package:domain/entity/response/job_applied_index_s_g_entity.dart';
  29. import 'package:domain/entity/response/job_applied_list_s_g_entity.dart';
  30. import 'package:domain/entity/response/job_applied_remark_view_s_g_entity.dart';
  31. import 'package:domain/entity/response/job_applied_staff_s_g_entity.dart';
  32. import 'package:domain/entity/response/job_list_add_staff_entity.dart';
  33. import 'package:domain/entity/response/job_list_applied_edit_entity.dart';
  34. import 'package:domain/entity/response/job_list_applied_info_entity.dart';
  35. import 'package:domain/entity/response/job_list_applied_staff_list_entity.dart';
  36. import 'package:domain/entity/response/job_list_applied_staff_search_entity.dart';
  37. import 'package:domain/entity/response/job_list_applied_work_flow_entity.dart';
  38. import 'package:domain/entity/response/job_list_detail_entity.dart';
  39. import 'package:domain/entity/response/job_list_e_r_detail_entity.dart';
  40. import 'package:domain/entity/response/job_list_e_r_option_entity.dart';
  41. import 'package:domain/entity/response/job_list_edit_index_s_g_entity.dart';
  42. import 'package:domain/entity/response/job_list_entity.dart';
  43. import 'package:domain/entity/response/job_list_index_entity.dart';
  44. import 'package:domain/entity/response/job_list_index_s_g_entity.dart';
  45. import 'package:domain/entity/response/job_list_remark_view_entity.dart';
  46. import 'package:domain/entity/response/job_list_s_g_entity.dart';
  47. import 'package:domain/entity/response/job_template_edit_index_entity.dart';
  48. import 'package:domain/entity/response/job_template_s_g_entity.dart';
  49. import 'package:domain/entity/response/job_title_edit_index_entity.dart';
  50. import 'package:domain/entity/response/job_title_s_g_entity.dart';
  51. import 'package:domain/entity/response/labour_list_e_r_entity.dart';
  52. import 'package:domain/entity/response/labour_report_entity.dart';
  53. import 'package:domain/entity/response/labour_report_v_n_entity.dart';
  54. import 'package:domain/entity/response/labour_request_e_r_entity.dart';
  55. import 'package:domain/entity/response/labour_request_e_r_option_entity.dart';
  56. import 'package:domain/entity/response/labour_request_edit_index_entity.dart';
  57. import 'package:domain/entity/response/labour_request_index_entity.dart';
  58. import 'package:domain/entity/response/labour_request_list_entity.dart';
  59. import 'package:domain/entity/response/labour_request_work_flow_entity.dart';
  60. import 'package:domain/entity/response/labour_review_list_entity.dart';
  61. import 'package:domain/entity/response/labour_review_status_entity.dart';
  62. import 'package:domain/entity/response/position_table_entity.dart';
  63. import 'package:domain/entity/response/revise_index_s_g_entity.dart';
  64. import 'package:domain/entity/response/revise_list_s_g_entity.dart';
  65. import 'package:domain/entity/response/revise_log_s_g_entity.dart';
  66. import 'package:domain/entity/response/s_g_attendance_review_option_entity.dart';
  67. import 'package:domain/entity/response/s_g_attendance_review_table_entity.dart';
  68. import 'package:domain/entity/response/s_g_attendance_review_workflow_entity.dart';
  69. import 'package:domain/entity/response/s_g_dashboard_entity.dart';
  70. import 'package:domain/entity/response/s_g_labour_request_add_option_entity.dart';
  71. import 'package:domain/entity/response/s_g_labour_request_detail_entity.dart';
  72. import 'package:domain/entity/response/s_g_labour_request_option_entity.dart';
  73. import 'package:domain/entity/response/s_g_labour_request_table_entity.dart';
  74. import 'package:domain/entity/response/s_g_labour_request_worl_flow_entity.dart';
  75. import 'package:domain/entity/response/s_g_labour_review_option_entity.dart';
  76. import 'package:domain/entity/response/s_g_labour_review_table_entity.dart';
  77. import 'package:domain/entity/response/sign_in_sign_out_entity.dart';
  78. import 'package:domain/entity/response/staff_detail_entity.dart';
  79. import 'package:domain/entity/response/staff_detail_s_g_entity.dart';
  80. import 'package:domain/entity/response/staff_job_history_s_g_entity.dart';
  81. import 'package:domain/entity/response/staff_labour_history_entity.dart';
  82. import 'package:domain/entity/response/staff_remark_history_entity.dart';
  83. import 'package:domain/entity/response/staff_report_v_n_entity.dart';
  84. import 'package:domain/entity/response/staff_request_report_entity.dart';
  85. import 'package:domain/entity/response/staff_review_history_s_g_entity.dart';
  86. import 'package:domain/entity/response/switch_project_entity.dart';
  87. import 'package:domain/entity/response/t_h_applied_edit_entity.dart';
  88. import 'package:domain/entity/response/t_h_applied_employee_entity.dart';
  89. import 'package:domain/entity/response/t_h_applied_index_entity.dart';
  90. import 'package:domain/entity/response/t_h_applied_table_entity.dart';
  91. import 'package:domain/entity/response/t_h_employee_detail_entity.dart';
  92. import 'package:domain/entity/response/t_h_employee_remarks_entity.dart';
  93. import 'package:domain/entity/response/t_h_o_a_attachment_entity.dart';
  94. import 'package:domain/entity/response/t_h_o_a_labour_detail_entity.dart';
  95. import 'package:domain/entity/response/t_h_o_a_labour_review_table_entity.dart';
  96. import 'package:domain/entity/response/t_h_o_a_labour_table_entity.dart';
  97. import 'package:domain/entity/response/t_h_upload_file_entity.dart';
  98. import 'package:domain/entity/response/u_k_attendance_entity.dart';
  99. import 'package:domain/entity/response/u_k_report_attendance_entity.dart';
  100. import 'package:domain/entity/response/u_k_report_labour_entity.dart';
  101. import 'package:domain/entity/response/u_k_report_working_hours_entity.dart';
  102. import 'package:domain/entity/response/u_k_security_attendance_entity.dart';
  103. import 'package:domain/entity/response/u_k_security_attendance_option_entity.dart';
  104. import 'package:domain/entity/response/uk_attendance_review_entity.dart';
  105. import 'package:domain/entity/response/uk_attendance_review_remark_entity.dart';
  106. import 'package:domain/entity/response/uk_job_applied_revise_add_detail_entity.dart';
  107. import 'package:domain/entity/response/uk_job_applied_revise_edit_detail_entity.dart';
  108. import 'package:domain/entity/response/uk_job_applied_revise_info_entity.dart';
  109. import 'package:domain/entity/response/uk_job_applied_revise_log_entity.dart';
  110. import 'package:domain/entity/response/uk_job_applied_staff_list_entity.dart';
  111. import 'package:domain/entity/response/uk_job_list_applied_staff_search_entity.dart';
  112. import 'package:domain/entity/response/uk_job_template_detail_by_select_title_entity.dart';
  113. import 'package:domain/entity/response/uk_lab_req_show_template_entity.dart';
  114. import 'package:domain/entity/response/uk_labour_request_detail_entity.dart';
  115. import 'package:domain/entity/response/uk_labour_request_preselect_addstaff_list_entity.dart';
  116. import 'package:domain/entity/response/uk_labour_request_preselected_list_entity.dart';
  117. import 'package:domain/entity/response/uk_labour_request_review_detail_entity.dart';
  118. import 'package:domain/entity/response/uk_labour_request_review_list_entity.dart';
  119. import 'package:domain/entity/response/uk_labour_request_table_entity.dart';
  120. import 'package:domain/entity/response/uk_labour_review_status_entity.dart';
  121. import 'package:domain/entity/response/uk_report_casual_entity.dart';
  122. import 'package:domain/entity/response/uk_report_casual_pay_entity.dart';
  123. import 'package:domain/entity/response/uk_report_outlet_entity.dart';
  124. import 'package:domain/entity/response/uk_staff_detail_entity.dart';
  125. import 'package:domain/entity/response/uk_staff_labour_history_entity.dart';
  126. import 'package:domain/entity/response/uk_template_detail_entity.dart';
  127. import 'package:domain/entity/response/uk_template_detail_index_entity.dart';
  128. import 'package:domain/entity/response/uk_template_table_entity.dart';
  129. import 'package:domain/entity/response/uk_template_title_option_entity.dart';
  130. import 'package:domain/entity/server_time.dart';
  131. JsonConvert jsonConvert = JsonConvert();
  132. typedef JsonConvertFunction<T> = T Function(Map<String, dynamic> json);
  133. typedef EnumConvertFunction<T> = T Function(String value);
  134. typedef ConvertExceptionHandler = void Function(Object error, StackTrace stackTrace);
  135. extension MapSafeExt<K, V> on Map<K, V> {
  136. T? getOrNull<T>(K? key) {
  137. if (!containsKey(key) || key == null) {
  138. return null;
  139. } else {
  140. return this[key] as T?;
  141. }
  142. }
  143. }
  144. class JsonConvert {
  145. static ConvertExceptionHandler? onError;
  146. JsonConvertClassCollection convertFuncMap = JsonConvertClassCollection();
  147. /// When you are in the development, to generate a new model class, hot-reload doesn't find new generation model class, you can build on MaterialApp method called jsonConvert. ReassembleConvertFuncMap (); This method only works in a development environment
  148. /// https://flutter.cn/docs/development/tools/hot-reload
  149. /// class MyApp extends StatelessWidget {
  150. /// const MyApp({Key? key})
  151. /// : super(key: key);
  152. ///
  153. /// @override
  154. /// Widget build(BuildContext context) {
  155. /// jsonConvert.reassembleConvertFuncMap();
  156. /// return MaterialApp();
  157. /// }
  158. /// }
  159. void reassembleConvertFuncMap() {
  160. bool isReleaseMode = const bool.fromEnvironment('dart.vm.product');
  161. if (!isReleaseMode) {
  162. convertFuncMap = JsonConvertClassCollection();
  163. }
  164. }
  165. T? convert<T>(dynamic value, {EnumConvertFunction? enumConvert}) {
  166. if (value == null) {
  167. return null;
  168. }
  169. if (value is T) {
  170. return value;
  171. }
  172. try {
  173. return _asT<T>(value, enumConvert: enumConvert);
  174. } catch (e, stackTrace) {
  175. debugPrint('asT<$T> $e $stackTrace');
  176. if (onError != null) {
  177. onError!(e, stackTrace);
  178. }
  179. return null;
  180. }
  181. }
  182. List<T?>? convertList<T>(List<dynamic>? value,
  183. {EnumConvertFunction? enumConvert}) {
  184. if (value == null) {
  185. return null;
  186. }
  187. try {
  188. return value.map((dynamic e) => _asT<T>(e, enumConvert: enumConvert))
  189. .toList();
  190. } catch (e, stackTrace) {
  191. debugPrint('asT<$T> $e $stackTrace');
  192. if (onError != null) {
  193. onError!(e, stackTrace);
  194. }
  195. return <T>[];
  196. }
  197. }
  198. List<T>? convertListNotNull<T>(dynamic value,
  199. {EnumConvertFunction? enumConvert}) {
  200. if (value == null) {
  201. return null;
  202. }
  203. try {
  204. return (value as List<dynamic>).map((dynamic e) =>
  205. _asT<T>(e, enumConvert: enumConvert)!).toList();
  206. } catch (e, stackTrace) {
  207. debugPrint('asT<$T> $e $stackTrace');
  208. if (onError != null) {
  209. onError!(e, stackTrace);
  210. }
  211. return <T>[];
  212. }
  213. }
  214. T? _asT<T extends Object?>(dynamic value,
  215. {EnumConvertFunction? enumConvert}) {
  216. final String type = T.toString();
  217. final String valueS = value.toString();
  218. if (enumConvert != null) {
  219. return enumConvert(valueS) as T;
  220. } else if (type == "String") {
  221. return valueS as T;
  222. } else if (type == "int") {
  223. final int? intValue = int.tryParse(valueS);
  224. if (intValue == null) {
  225. return double.tryParse(valueS)?.toInt() as T?;
  226. } else {
  227. return intValue as T;
  228. }
  229. } else if (type == "double") {
  230. return double.parse(valueS) as T;
  231. } else if (type == "DateTime") {
  232. return DateTime.parse(valueS) as T;
  233. } else if (type == "bool") {
  234. if (valueS == '0' || valueS == '1') {
  235. return (valueS == '1') as T;
  236. }
  237. return (valueS == 'true') as T;
  238. } else if (type == "Map" || type.startsWith("Map<")) {
  239. return value as T;
  240. } else {
  241. if (convertFuncMap.containsKey(type)) {
  242. if (value == null) {
  243. return null;
  244. }
  245. var covertFunc = convertFuncMap[type]!;
  246. if (covertFunc is Map<String, dynamic>) {
  247. return covertFunc(value as Map<String, dynamic>) as T;
  248. } else {
  249. return covertFunc(Map<String, dynamic>.from(value)) as T;
  250. }
  251. } else {
  252. throw UnimplementedError(
  253. '$type unimplemented,you can try running the app again');
  254. }
  255. }
  256. }
  257. //list is returned by type
  258. static M? _getListChildType<M>(List<Map<String, dynamic>> data) {
  259. if (<AddEditReviseViewSGEntity>[] is M) {
  260. return data.map<AddEditReviseViewSGEntity>((Map<String, dynamic> e) =>
  261. AddEditReviseViewSGEntity.fromJson(e)).toList() as M;
  262. }
  263. if (<AgencyDetailEntity>[] is M) {
  264. return data.map<AgencyDetailEntity>((Map<String, dynamic> e) =>
  265. AgencyDetailEntity.fromJson(e)).toList() as M;
  266. }
  267. if (<AgencyDetailPivot>[] is M) {
  268. return data.map<AgencyDetailPivot>((Map<String, dynamic> e) =>
  269. AgencyDetailPivot.fromJson(e)).toList() as M;
  270. }
  271. if (<AgencyOptionEntity>[] is M) {
  272. return data.map<AgencyOptionEntity>((Map<String, dynamic> e) =>
  273. AgencyOptionEntity.fromJson(e)).toList() as M;
  274. }
  275. if (<AgencyTableEntity>[] is M) {
  276. return data.map<AgencyTableEntity>((Map<String, dynamic> e) =>
  277. AgencyTableEntity.fromJson(e)).toList() as M;
  278. }
  279. if (<AgencyTableRows>[] is M) {
  280. return data.map<AgencyTableRows>((Map<String, dynamic> e) =>
  281. AgencyTableRows.fromJson(e)).toList() as M;
  282. }
  283. if (<AttendanceEntity>[] is M) {
  284. return data.map<AttendanceEntity>((Map<String, dynamic> e) =>
  285. AttendanceEntity.fromJson(e)).toList() as M;
  286. }
  287. if (<AttendanceList>[] is M) {
  288. return data.map<AttendanceList>((Map<String, dynamic> e) =>
  289. AttendanceList.fromJson(e)).toList() as M;
  290. }
  291. if (<AttendanceReviewEntity>[] is M) {
  292. return data.map<AttendanceReviewEntity>((Map<String, dynamic> e) =>
  293. AttendanceReviewEntity.fromJson(e)).toList() as M;
  294. }
  295. if (<AttendanceReviewRows>[] is M) {
  296. return data.map<AttendanceReviewRows>((Map<String, dynamic> e) =>
  297. AttendanceReviewRows.fromJson(e)).toList() as M;
  298. }
  299. if (<CheckSuccessEntity>[] is M) {
  300. return data.map<CheckSuccessEntity>((Map<String, dynamic> e) =>
  301. CheckSuccessEntity.fromJson(e)).toList() as M;
  302. }
  303. if (<ContractDetailEntity>[] is M) {
  304. return data.map<ContractDetailEntity>((Map<String, dynamic> e) =>
  305. ContractDetailEntity.fromJson(e)).toList() as M;
  306. }
  307. if (<ContractDetailRow>[] is M) {
  308. return data.map<ContractDetailRow>((Map<String, dynamic> e) =>
  309. ContractDetailRow.fromJson(e)).toList() as M;
  310. }
  311. if (<ContractOptionEntity>[] is M) {
  312. return data.map<ContractOptionEntity>((Map<String, dynamic> e) =>
  313. ContractOptionEntity.fromJson(e)).toList() as M;
  314. }
  315. if (<ContractPositionAddOptionEntity>[] is M) {
  316. return data.map<ContractPositionAddOptionEntity>((
  317. Map<String, dynamic> e) =>
  318. ContractPositionAddOptionEntity.fromJson(e)).toList() as M;
  319. }
  320. if (<ContractPositionOptionEntity>[] is M) {
  321. return data.map<ContractPositionOptionEntity>((Map<String, dynamic> e) =>
  322. ContractPositionOptionEntity.fromJson(e)).toList() as M;
  323. }
  324. if (<ContractPositionRateDetailEntity>[] is M) {
  325. return data.map<ContractPositionRateDetailEntity>((
  326. Map<String, dynamic> e) =>
  327. ContractPositionRateDetailEntity.fromJson(e)).toList() as M;
  328. }
  329. if (<ContractPositionRateSpecificOptionEntity>[] is M) {
  330. return data.map<ContractPositionRateSpecificOptionEntity>((
  331. Map<String, dynamic> e) =>
  332. ContractPositionRateSpecificOptionEntity.fromJson(e)).toList() as M;
  333. }
  334. if (<ContractPositionRateTableEntity>[] is M) {
  335. return data.map<ContractPositionRateTableEntity>((
  336. Map<String, dynamic> e) =>
  337. ContractPositionRateTableEntity.fromJson(e)).toList() as M;
  338. }
  339. if (<ContractPositionRateTableRows>[] is M) {
  340. return data.map<ContractPositionRateTableRows>((Map<String, dynamic> e) =>
  341. ContractPositionRateTableRows.fromJson(e)).toList() as M;
  342. }
  343. if (<ContractPositionTableEntity>[] is M) {
  344. return data.map<ContractPositionTableEntity>((Map<String, dynamic> e) =>
  345. ContractPositionTableEntity.fromJson(e)).toList() as M;
  346. }
  347. if (<ContractPositionTableRows>[] is M) {
  348. return data.map<ContractPositionTableRows>((Map<String, dynamic> e) =>
  349. ContractPositionTableRows.fromJson(e)).toList() as M;
  350. }
  351. if (<ContractTableEntity>[] is M) {
  352. return data.map<ContractTableEntity>((Map<String, dynamic> e) =>
  353. ContractTableEntity.fromJson(e)).toList() as M;
  354. }
  355. if (<ContractTableRows>[] is M) {
  356. return data.map<ContractTableRows>((Map<String, dynamic> e) =>
  357. ContractTableRows.fromJson(e)).toList() as M;
  358. }
  359. if (<DeviceListEntity>[] is M) {
  360. return data.map<DeviceListEntity>((Map<String, dynamic> e) =>
  361. DeviceListEntity.fromJson(e)).toList() as M;
  362. }
  363. if (<DeviceListRows>[] is M) {
  364. return data.map<DeviceListRows>((Map<String, dynamic> e) =>
  365. DeviceListRows.fromJson(e)).toList() as M;
  366. }
  367. if (<FianceReportEntity>[] is M) {
  368. return data.map<FianceReportEntity>((Map<String, dynamic> e) =>
  369. FianceReportEntity.fromJson(e)).toList() as M;
  370. }
  371. if (<FianceReportRateList>[] is M) {
  372. return data.map<FianceReportRateList>((Map<String, dynamic> e) =>
  373. FianceReportRateList.fromJson(e)).toList() as M;
  374. }
  375. if (<HotelInfoEntity>[] is M) {
  376. return data.map<HotelInfoEntity>((Map<String, dynamic> e) =>
  377. HotelInfoEntity.fromJson(e)).toList() as M;
  378. }
  379. if (<HotelInfoMenus>[] is M) {
  380. return data.map<HotelInfoMenus>((Map<String, dynamic> e) =>
  381. HotelInfoMenus.fromJson(e)).toList() as M;
  382. }
  383. if (<HotelInfoMenusChildren>[] is M) {
  384. return data.map<HotelInfoMenusChildren>((Map<String, dynamic> e) =>
  385. HotelInfoMenusChildren.fromJson(e)).toList() as M;
  386. }
  387. if (<IdNameEntity>[] is M) {
  388. return data.map<IdNameEntity>((Map<String, dynamic> e) =>
  389. IdNameEntity.fromJson(e)).toList() as M;
  390. }
  391. if (<IndexOptionEntity>[] is M) {
  392. return data.map<IndexOptionEntity>((Map<String, dynamic> e) =>
  393. IndexOptionEntity.fromJson(e)).toList() as M;
  394. }
  395. if (<JobAppliedEditIndexSGEntity>[] is M) {
  396. return data.map<JobAppliedEditIndexSGEntity>((Map<String, dynamic> e) =>
  397. JobAppliedEditIndexSGEntity.fromJson(e)).toList() as M;
  398. }
  399. if (<JobAppliedEditIndexSGStatusList>[] is M) {
  400. return data.map<JobAppliedEditIndexSGStatusList>((
  401. Map<String, dynamic> e) =>
  402. JobAppliedEditIndexSGStatusList.fromJson(e)).toList() as M;
  403. }
  404. if (<JobAppliedIndexSGEntity>[] is M) {
  405. return data.map<JobAppliedIndexSGEntity>((Map<String, dynamic> e) =>
  406. JobAppliedIndexSGEntity.fromJson(e)).toList() as M;
  407. }
  408. if (<JobAppliedIndexSGStatusList>[] is M) {
  409. return data.map<JobAppliedIndexSGStatusList>((Map<String, dynamic> e) =>
  410. JobAppliedIndexSGStatusList.fromJson(e)).toList() as M;
  411. }
  412. if (<JobAppliedListSGEntity>[] is M) {
  413. return data.map<JobAppliedListSGEntity>((Map<String, dynamic> e) =>
  414. JobAppliedListSGEntity.fromJson(e)).toList() as M;
  415. }
  416. if (<JobAppliedListSGRows>[] is M) {
  417. return data.map<JobAppliedListSGRows>((Map<String, dynamic> e) =>
  418. JobAppliedListSGRows.fromJson(e)).toList() as M;
  419. }
  420. if (<JobAppliedListSGRowsCheck>[] is M) {
  421. return data.map<JobAppliedListSGRowsCheck>((Map<String, dynamic> e) =>
  422. JobAppliedListSGRowsCheck.fromJson(e)).toList() as M;
  423. }
  424. if (<JobAppliedListSGRowsStatusList>[] is M) {
  425. return data.map<JobAppliedListSGRowsStatusList>((
  426. Map<String, dynamic> e) => JobAppliedListSGRowsStatusList.fromJson(e))
  427. .toList() as M;
  428. }
  429. if (<JobAppliedRemarkViewSGEntity>[] is M) {
  430. return data.map<JobAppliedRemarkViewSGEntity>((Map<String, dynamic> e) =>
  431. JobAppliedRemarkViewSGEntity.fromJson(e)).toList() as M;
  432. }
  433. if (<JobAppliedStaffSGEntity>[] is M) {
  434. return data.map<JobAppliedStaffSGEntity>((Map<String, dynamic> e) =>
  435. JobAppliedStaffSGEntity.fromJson(e)).toList() as M;
  436. }
  437. if (<JobAppliedStaffSGRows>[] is M) {
  438. return data.map<JobAppliedStaffSGRows>((Map<String, dynamic> e) =>
  439. JobAppliedStaffSGRows.fromJson(e)).toList() as M;
  440. }
  441. if (<JobListAddStaffEntity>[] is M) {
  442. return data.map<JobListAddStaffEntity>((Map<String, dynamic> e) =>
  443. JobListAddStaffEntity.fromJson(e)).toList() as M;
  444. }
  445. if (<JobListAddStaffResultList>[] is M) {
  446. return data.map<JobListAddStaffResultList>((Map<String, dynamic> e) =>
  447. JobListAddStaffResultList.fromJson(e)).toList() as M;
  448. }
  449. if (<JobListAppliedEditEntity>[] is M) {
  450. return data.map<JobListAppliedEditEntity>((Map<String, dynamic> e) =>
  451. JobListAppliedEditEntity.fromJson(e)).toList() as M;
  452. }
  453. if (<JobListAppliedEditReasonList>[] is M) {
  454. return data.map<JobListAppliedEditReasonList>((Map<String, dynamic> e) =>
  455. JobListAppliedEditReasonList.fromJson(e)).toList() as M;
  456. }
  457. if (<JobListAppliedInfoEntity>[] is M) {
  458. return data.map<JobListAppliedInfoEntity>((Map<String, dynamic> e) =>
  459. JobListAppliedInfoEntity.fromJson(e)).toList() as M;
  460. }
  461. if (<JobListAppliedStaffListEntity>[] is M) {
  462. return data.map<JobListAppliedStaffListEntity>((Map<String, dynamic> e) =>
  463. JobListAppliedStaffListEntity.fromJson(e)).toList() as M;
  464. }
  465. if (<JobListAppliedStaffListRows>[] is M) {
  466. return data.map<JobListAppliedStaffListRows>((Map<String, dynamic> e) =>
  467. JobListAppliedStaffListRows.fromJson(e)).toList() as M;
  468. }
  469. if (<JobListAppliedStaffListRowsSecurityIn>[] is M) {
  470. return data.map<JobListAppliedStaffListRowsSecurityIn>((
  471. Map<String, dynamic> e) =>
  472. JobListAppliedStaffListRowsSecurityIn.fromJson(e)).toList() as M;
  473. }
  474. if (<JobListAppliedStaffListRowsSecurityOut>[] is M) {
  475. return data.map<JobListAppliedStaffListRowsSecurityOut>((
  476. Map<String, dynamic> e) =>
  477. JobListAppliedStaffListRowsSecurityOut.fromJson(e)).toList() as M;
  478. }
  479. if (<JobListAppliedStaffListRowsWorkIn>[] is M) {
  480. return data.map<JobListAppliedStaffListRowsWorkIn>((
  481. Map<String, dynamic> e) =>
  482. JobListAppliedStaffListRowsWorkIn.fromJson(e)).toList() as M;
  483. }
  484. if (<JobListAppliedStaffListRowsWorkOut>[] is M) {
  485. return data.map<JobListAppliedStaffListRowsWorkOut>((
  486. Map<String, dynamic> e) =>
  487. JobListAppliedStaffListRowsWorkOut.fromJson(e)).toList() as M;
  488. }
  489. if (<JobListAppliedStaffSearchEntity>[] is M) {
  490. return data.map<JobListAppliedStaffSearchEntity>((
  491. Map<String, dynamic> e) =>
  492. JobListAppliedStaffSearchEntity.fromJson(e)).toList() as M;
  493. }
  494. if (<JobListAppliedStaffSearchRows>[] is M) {
  495. return data.map<JobListAppliedStaffSearchRows>((Map<String, dynamic> e) =>
  496. JobListAppliedStaffSearchRows.fromJson(e)).toList() as M;
  497. }
  498. if (<JobListAppliedWorkFlowEntity>[] is M) {
  499. return data.map<JobListAppliedWorkFlowEntity>((Map<String, dynamic> e) =>
  500. JobListAppliedWorkFlowEntity.fromJson(e)).toList() as M;
  501. }
  502. if (<JobListAppliedWorkFlowRecords>[] is M) {
  503. return data.map<JobListAppliedWorkFlowRecords>((Map<String, dynamic> e) =>
  504. JobListAppliedWorkFlowRecords.fromJson(e)).toList() as M;
  505. }
  506. if (<JobListDetailEntity>[] is M) {
  507. return data.map<JobListDetailEntity>((Map<String, dynamic> e) =>
  508. JobListDetailEntity.fromJson(e)).toList() as M;
  509. }
  510. if (<JobListDetailDepartmentList>[] is M) {
  511. return data.map<JobListDetailDepartmentList>((Map<String, dynamic> e) =>
  512. JobListDetailDepartmentList.fromJson(e)).toList() as M;
  513. }
  514. if (<JobListERDetailEntity>[] is M) {
  515. return data.map<JobListERDetailEntity>((Map<String, dynamic> e) =>
  516. JobListERDetailEntity.fromJson(e)).toList() as M;
  517. }
  518. if (<JobListERDetailJob>[] is M) {
  519. return data.map<JobListERDetailJob>((Map<String, dynamic> e) =>
  520. JobListERDetailJob.fromJson(e)).toList() as M;
  521. }
  522. if (<JobListEROptionEntity>[] is M) {
  523. return data.map<JobListEROptionEntity>((Map<String, dynamic> e) =>
  524. JobListEROptionEntity.fromJson(e)).toList() as M;
  525. }
  526. if (<JobListEROptionFilter>[] is M) {
  527. return data.map<JobListEROptionFilter>((Map<String, dynamic> e) =>
  528. JobListEROptionFilter.fromJson(e)).toList() as M;
  529. }
  530. if (<JobListEditIndexSGEntity>[] is M) {
  531. return data.map<JobListEditIndexSGEntity>((Map<String, dynamic> e) =>
  532. JobListEditIndexSGEntity.fromJson(e)).toList() as M;
  533. }
  534. if (<JobListEditIndexOption>[] is M) {
  535. return data.map<JobListEditIndexOption>((Map<String, dynamic> e) =>
  536. JobListEditIndexOption.fromJson(e)).toList() as M;
  537. }
  538. if (<JobListEntity>[] is M) {
  539. return data.map<JobListEntity>((Map<String, dynamic> e) =>
  540. JobListEntity.fromJson(e)).toList() as M;
  541. }
  542. if (<JobListRows>[] is M) {
  543. return data.map<JobListRows>((Map<String, dynamic> e) =>
  544. JobListRows.fromJson(e)).toList() as M;
  545. }
  546. if (<JobListIndexEntity>[] is M) {
  547. return data.map<JobListIndexEntity>((Map<String, dynamic> e) =>
  548. JobListIndexEntity.fromJson(e)).toList() as M;
  549. }
  550. if (<JobListIndexDepartmentList>[] is M) {
  551. return data.map<JobListIndexDepartmentList>((Map<String, dynamic> e) =>
  552. JobListIndexDepartmentList.fromJson(e)).toList() as M;
  553. }
  554. if (<JobListIndexStatusList>[] is M) {
  555. return data.map<JobListIndexStatusList>((Map<String, dynamic> e) =>
  556. JobListIndexStatusList.fromJson(e)).toList() as M;
  557. }
  558. if (<JobListIndexSGEntity>[] is M) {
  559. return data.map<JobListIndexSGEntity>((Map<String, dynamic> e) =>
  560. JobListIndexSGEntity.fromJson(e)).toList() as M;
  561. }
  562. if (<JobListIndexSGOption>[] is M) {
  563. return data.map<JobListIndexSGOption>((Map<String, dynamic> e) =>
  564. JobListIndexSGOption.fromJson(e)).toList() as M;
  565. }
  566. if (<JobListRemarkViewEntity>[] is M) {
  567. return data.map<JobListRemarkViewEntity>((Map<String, dynamic> e) =>
  568. JobListRemarkViewEntity.fromJson(e)).toList() as M;
  569. }
  570. if (<JobListSGEntity>[] is M) {
  571. return data.map<JobListSGEntity>((Map<String, dynamic> e) =>
  572. JobListSGEntity.fromJson(e)).toList() as M;
  573. }
  574. if (<JobListSGRows>[] is M) {
  575. return data.map<JobListSGRows>((Map<String, dynamic> e) =>
  576. JobListSGRows.fromJson(e)).toList() as M;
  577. }
  578. if (<JobTemplateEditIndexEntity>[] is M) {
  579. return data.map<JobTemplateEditIndexEntity>((Map<String, dynamic> e) =>
  580. JobTemplateEditIndexEntity.fromJson(e)).toList() as M;
  581. }
  582. if (<JobTemplateEditIndexAgeList>[] is M) {
  583. return data.map<JobTemplateEditIndexAgeList>((Map<String, dynamic> e) =>
  584. JobTemplateEditIndexAgeList.fromJson(e)).toList() as M;
  585. }
  586. if (<JobTemplateEditIndexSexList>[] is M) {
  587. return data.map<JobTemplateEditIndexSexList>((Map<String, dynamic> e) =>
  588. JobTemplateEditIndexSexList.fromJson(e)).toList() as M;
  589. }
  590. if (<JobTemplateEditIndexLanguageList>[] is M) {
  591. return data.map<JobTemplateEditIndexLanguageList>((
  592. Map<String, dynamic> e) =>
  593. JobTemplateEditIndexLanguageList.fromJson(e)).toList() as M;
  594. }
  595. if (<JobTemplateSGEntity>[] is M) {
  596. return data.map<JobTemplateSGEntity>((Map<String, dynamic> e) =>
  597. JobTemplateSGEntity.fromJson(e)).toList() as M;
  598. }
  599. if (<JobTemplateSGRows>[] is M) {
  600. return data.map<JobTemplateSGRows>((Map<String, dynamic> e) =>
  601. JobTemplateSGRows.fromJson(e)).toList() as M;
  602. }
  603. if (<JobTitleEditIndexEntity>[] is M) {
  604. return data.map<JobTitleEditIndexEntity>((Map<String, dynamic> e) =>
  605. JobTitleEditIndexEntity.fromJson(e)).toList() as M;
  606. }
  607. if (<JobTitleEditIndexTemplate>[] is M) {
  608. return data.map<JobTitleEditIndexTemplate>((Map<String, dynamic> e) =>
  609. JobTitleEditIndexTemplate.fromJson(e)).toList() as M;
  610. }
  611. if (<JobTitleSGEntity>[] is M) {
  612. return data.map<JobTitleSGEntity>((Map<String, dynamic> e) =>
  613. JobTitleSGEntity.fromJson(e)).toList() as M;
  614. }
  615. if (<JobTitleSGRows>[] is M) {
  616. return data.map<JobTitleSGRows>((Map<String, dynamic> e) =>
  617. JobTitleSGRows.fromJson(e)).toList() as M;
  618. }
  619. if (<LabourListEREntity>[] is M) {
  620. return data.map<LabourListEREntity>((Map<String, dynamic> e) =>
  621. LabourListEREntity.fromJson(e)).toList() as M;
  622. }
  623. if (<LabourListERRows>[] is M) {
  624. return data.map<LabourListERRows>((Map<String, dynamic> e) =>
  625. LabourListERRows.fromJson(e)).toList() as M;
  626. }
  627. if (<LabourReportEntity>[] is M) {
  628. return data.map<LabourReportEntity>((Map<String, dynamic> e) =>
  629. LabourReportEntity.fromJson(e)).toList() as M;
  630. }
  631. if (<LabourReportRows>[] is M) {
  632. return data.map<LabourReportRows>((Map<String, dynamic> e) =>
  633. LabourReportRows.fromJson(e)).toList() as M;
  634. }
  635. if (<LabourReportTotal>[] is M) {
  636. return data.map<LabourReportTotal>((Map<String, dynamic> e) =>
  637. LabourReportTotal.fromJson(e)).toList() as M;
  638. }
  639. if (<LabourReportVNEntity>[] is M) {
  640. return data.map<LabourReportVNEntity>((Map<String, dynamic> e) =>
  641. LabourReportVNEntity.fromJson(e)).toList() as M;
  642. }
  643. if (<LabourReportVNRows>[] is M) {
  644. return data.map<LabourReportVNRows>((Map<String, dynamic> e) =>
  645. LabourReportVNRows.fromJson(e)).toList() as M;
  646. }
  647. if (<LabourReportVNTotal>[] is M) {
  648. return data.map<LabourReportVNTotal>((Map<String, dynamic> e) =>
  649. LabourReportVNTotal.fromJson(e)).toList() as M;
  650. }
  651. if (<LabourRequestEREntity>[] is M) {
  652. return data.map<LabourRequestEREntity>((Map<String, dynamic> e) =>
  653. LabourRequestEREntity.fromJson(e)).toList() as M;
  654. }
  655. if (<LabourRequestERCountList>[] is M) {
  656. return data.map<LabourRequestERCountList>((Map<String, dynamic> e) =>
  657. LabourRequestERCountList.fromJson(e)).toList() as M;
  658. }
  659. if (<LabourRequestERSourceList>[] is M) {
  660. return data.map<LabourRequestERSourceList>((Map<String, dynamic> e) =>
  661. LabourRequestERSourceList.fromJson(e)).toList() as M;
  662. }
  663. if (<LabourRequestERSourceListRequestList>[] is M) {
  664. return data.map<LabourRequestERSourceListRequestList>((
  665. Map<String, dynamic> e) =>
  666. LabourRequestERSourceListRequestList.fromJson(e)).toList() as M;
  667. }
  668. if (<LabourRequestEROptionEntity>[] is M) {
  669. return data.map<LabourRequestEROptionEntity>((Map<String, dynamic> e) =>
  670. LabourRequestEROptionEntity.fromJson(e)).toList() as M;
  671. }
  672. if (<LabourRequestEditIndexEntity>[] is M) {
  673. return data.map<LabourRequestEditIndexEntity>((Map<String, dynamic> e) =>
  674. LabourRequestEditIndexEntity.fromJson(e)).toList() as M;
  675. }
  676. if (<LabourRequestEditIndexTemplateList>[] is M) {
  677. return data.map<LabourRequestEditIndexTemplateList>((
  678. Map<String, dynamic> e) =>
  679. LabourRequestEditIndexTemplateList.fromJson(e)).toList() as M;
  680. }
  681. if (<LabourRequestEditIndexDepartmentList>[] is M) {
  682. return data.map<LabourRequestEditIndexDepartmentList>((
  683. Map<String, dynamic> e) =>
  684. LabourRequestEditIndexDepartmentList.fromJson(e)).toList() as M;
  685. }
  686. if (<LabourRequestIndexEntity>[] is M) {
  687. return data.map<LabourRequestIndexEntity>((Map<String, dynamic> e) =>
  688. LabourRequestIndexEntity.fromJson(e)).toList() as M;
  689. }
  690. if (<LabourRequestIndexDepartmentList>[] is M) {
  691. return data.map<LabourRequestIndexDepartmentList>((
  692. Map<String, dynamic> e) =>
  693. LabourRequestIndexDepartmentList.fromJson(e)).toList() as M;
  694. }
  695. if (<LabourRequestIndexStatusList>[] is M) {
  696. return data.map<LabourRequestIndexStatusList>((Map<String, dynamic> e) =>
  697. LabourRequestIndexStatusList.fromJson(e)).toList() as M;
  698. }
  699. if (<LabourRequestListEntity>[] is M) {
  700. return data.map<LabourRequestListEntity>((Map<String, dynamic> e) =>
  701. LabourRequestListEntity.fromJson(e)).toList() as M;
  702. }
  703. if (<LabourRequestListRows>[] is M) {
  704. return data.map<LabourRequestListRows>((Map<String, dynamic> e) =>
  705. LabourRequestListRows.fromJson(e)).toList() as M;
  706. }
  707. if (<LabourRequestWorkFlowEntity>[] is M) {
  708. return data.map<LabourRequestWorkFlowEntity>((Map<String, dynamic> e) =>
  709. LabourRequestWorkFlowEntity.fromJson(e)).toList() as M;
  710. }
  711. if (<LabourRequestWorkFlowRecords>[] is M) {
  712. return data.map<LabourRequestWorkFlowRecords>((Map<String, dynamic> e) =>
  713. LabourRequestWorkFlowRecords.fromJson(e)).toList() as M;
  714. }
  715. if (<LabourReviewListEntity>[] is M) {
  716. return data.map<LabourReviewListEntity>((Map<String, dynamic> e) =>
  717. LabourReviewListEntity.fromJson(e)).toList() as M;
  718. }
  719. if (<LabourReviewListRows>[] is M) {
  720. return data.map<LabourReviewListRows>((Map<String, dynamic> e) =>
  721. LabourReviewListRows.fromJson(e)).toList() as M;
  722. }
  723. if (<LabourReviewStatusEntity>[] is M) {
  724. return data.map<LabourReviewStatusEntity>((Map<String, dynamic> e) =>
  725. LabourReviewStatusEntity.fromJson(e)).toList() as M;
  726. }
  727. if (<LabourReviewStatusRecords>[] is M) {
  728. return data.map<LabourReviewStatusRecords>((Map<String, dynamic> e) =>
  729. LabourReviewStatusRecords.fromJson(e)).toList() as M;
  730. }
  731. if (<PositionTableEntity>[] is M) {
  732. return data.map<PositionTableEntity>((Map<String, dynamic> e) =>
  733. PositionTableEntity.fromJson(e)).toList() as M;
  734. }
  735. if (<PositionTableRows>[] is M) {
  736. return data.map<PositionTableRows>((Map<String, dynamic> e) =>
  737. PositionTableRows.fromJson(e)).toList() as M;
  738. }
  739. if (<ReviseIndexSGEntity>[] is M) {
  740. return data.map<ReviseIndexSGEntity>((Map<String, dynamic> e) =>
  741. ReviseIndexSGEntity.fromJson(e)).toList() as M;
  742. }
  743. if (<ReviseIndexSGStatusList>[] is M) {
  744. return data.map<ReviseIndexSGStatusList>((Map<String, dynamic> e) =>
  745. ReviseIndexSGStatusList.fromJson(e)).toList() as M;
  746. }
  747. if (<ReviseListSGEntity>[] is M) {
  748. return data.map<ReviseListSGEntity>((Map<String, dynamic> e) =>
  749. ReviseListSGEntity.fromJson(e)).toList() as M;
  750. }
  751. if (<ReviseListSGRows>[] is M) {
  752. return data.map<ReviseListSGRows>((Map<String, dynamic> e) =>
  753. ReviseListSGRows.fromJson(e)).toList() as M;
  754. }
  755. if (<ReviseLogSGEntity>[] is M) {
  756. return data.map<ReviseLogSGEntity>((Map<String, dynamic> e) =>
  757. ReviseLogSGEntity.fromJson(e)).toList() as M;
  758. }
  759. if (<ReviseLogSGRecords>[] is M) {
  760. return data.map<ReviseLogSGRecords>((Map<String, dynamic> e) =>
  761. ReviseLogSGRecords.fromJson(e)).toList() as M;
  762. }
  763. if (<ReviseLogSGRecordsContent>[] is M) {
  764. return data.map<ReviseLogSGRecordsContent>((Map<String, dynamic> e) =>
  765. ReviseLogSGRecordsContent.fromJson(e)).toList() as M;
  766. }
  767. if (<ReviseLogSGRecordsOption>[] is M) {
  768. return data.map<ReviseLogSGRecordsOption>((Map<String, dynamic> e) =>
  769. ReviseLogSGRecordsOption.fromJson(e)).toList() as M;
  770. }
  771. if (<SGAttendanceReviewOptionEntity>[] is M) {
  772. return data.map<SGAttendanceReviewOptionEntity>((
  773. Map<String, dynamic> e) => SGAttendanceReviewOptionEntity.fromJson(e))
  774. .toList() as M;
  775. }
  776. if (<SGAttendanceReviewTableEntity>[] is M) {
  777. return data.map<SGAttendanceReviewTableEntity>((Map<String, dynamic> e) =>
  778. SGAttendanceReviewTableEntity.fromJson(e)).toList() as M;
  779. }
  780. if (<SGAttendanceReviewTableRows>[] is M) {
  781. return data.map<SGAttendanceReviewTableRows>((Map<String, dynamic> e) =>
  782. SGAttendanceReviewTableRows.fromJson(e)).toList() as M;
  783. }
  784. if (<SGAttendanceReviewTableRowsCheck>[] is M) {
  785. return data.map<SGAttendanceReviewTableRowsCheck>((
  786. Map<String, dynamic> e) =>
  787. SGAttendanceReviewTableRowsCheck.fromJson(e)).toList() as M;
  788. }
  789. if (<SGAttendanceReviewWorkflowEntity>[] is M) {
  790. return data.map<SGAttendanceReviewWorkflowEntity>((
  791. Map<String, dynamic> e) =>
  792. SGAttendanceReviewWorkflowEntity.fromJson(e)).toList() as M;
  793. }
  794. if (<SGAttendanceReviewWorkflowRow>[] is M) {
  795. return data.map<SGAttendanceReviewWorkflowRow>((Map<String, dynamic> e) =>
  796. SGAttendanceReviewWorkflowRow.fromJson(e)).toList() as M;
  797. }
  798. if (<SGAttendanceReviewWorkflowRecords>[] is M) {
  799. return data.map<SGAttendanceReviewWorkflowRecords>((
  800. Map<String, dynamic> e) =>
  801. SGAttendanceReviewWorkflowRecords.fromJson(e)).toList() as M;
  802. }
  803. if (<SGDashboardEntity>[] is M) {
  804. return data.map<SGDashboardEntity>((Map<String, dynamic> e) =>
  805. SGDashboardEntity.fromJson(e)).toList() as M;
  806. }
  807. if (<SGDashboardAgencyList>[] is M) {
  808. return data.map<SGDashboardAgencyList>((Map<String, dynamic> e) =>
  809. SGDashboardAgencyList.fromJson(e)).toList() as M;
  810. }
  811. if (<SGDashboardAgencyListDays>[] is M) {
  812. return data.map<SGDashboardAgencyListDays>((Map<String, dynamic> e) =>
  813. SGDashboardAgencyListDays.fromJson(e)).toList() as M;
  814. }
  815. if (<SGLabourRequestAddOptionEntity>[] is M) {
  816. return data.map<SGLabourRequestAddOptionEntity>((
  817. Map<String, dynamic> e) => SGLabourRequestAddOptionEntity.fromJson(e))
  818. .toList() as M;
  819. }
  820. if (<LabourRequestAgencyEntity>[] is M) {
  821. return data.map<LabourRequestAgencyEntity>((Map<String, dynamic> e) =>
  822. LabourRequestAgencyEntity.fromJson(e)).toList() as M;
  823. }
  824. if (<SGLabourRequestDetailEntity>[] is M) {
  825. return data.map<SGLabourRequestDetailEntity>((Map<String, dynamic> e) =>
  826. SGLabourRequestDetailEntity.fromJson(e)).toList() as M;
  827. }
  828. if (<SGLabourRequestDetailLabReq>[] is M) {
  829. return data.map<SGLabourRequestDetailLabReq>((Map<String, dynamic> e) =>
  830. SGLabourRequestDetailLabReq.fromJson(e)).toList() as M;
  831. }
  832. if (<SGLabourRequestOptionEntity>[] is M) {
  833. return data.map<SGLabourRequestOptionEntity>((Map<String, dynamic> e) =>
  834. SGLabourRequestOptionEntity.fromJson(e)).toList() as M;
  835. }
  836. if (<SGLabourRequestTableEntity>[] is M) {
  837. return data.map<SGLabourRequestTableEntity>((Map<String, dynamic> e) =>
  838. SGLabourRequestTableEntity.fromJson(e)).toList() as M;
  839. }
  840. if (<SGLabourRequestTableRows>[] is M) {
  841. return data.map<SGLabourRequestTableRows>((Map<String, dynamic> e) =>
  842. SGLabourRequestTableRows.fromJson(e)).toList() as M;
  843. }
  844. if (<SGLabourRequestWorlFlowEntity>[] is M) {
  845. return data.map<SGLabourRequestWorlFlowEntity>((Map<String, dynamic> e) =>
  846. SGLabourRequestWorlFlowEntity.fromJson(e)).toList() as M;
  847. }
  848. if (<SGLabourRequestWorlFlowRow>[] is M) {
  849. return data.map<SGLabourRequestWorlFlowRow>((Map<String, dynamic> e) =>
  850. SGLabourRequestWorlFlowRow.fromJson(e)).toList() as M;
  851. }
  852. if (<SGLabourRequestWorlFlowRecords>[] is M) {
  853. return data.map<SGLabourRequestWorlFlowRecords>((
  854. Map<String, dynamic> e) => SGLabourRequestWorlFlowRecords.fromJson(e))
  855. .toList() as M;
  856. }
  857. if (<SGLabourReviewOptionEntity>[] is M) {
  858. return data.map<SGLabourReviewOptionEntity>((Map<String, dynamic> e) =>
  859. SGLabourReviewOptionEntity.fromJson(e)).toList() as M;
  860. }
  861. if (<SGLabourReviewTableEntity>[] is M) {
  862. return data.map<SGLabourReviewTableEntity>((Map<String, dynamic> e) =>
  863. SGLabourReviewTableEntity.fromJson(e)).toList() as M;
  864. }
  865. if (<SGLabourReviewTableRows>[] is M) {
  866. return data.map<SGLabourReviewTableRows>((Map<String, dynamic> e) =>
  867. SGLabourReviewTableRows.fromJson(e)).toList() as M;
  868. }
  869. if (<SignInSignOutEntity>[] is M) {
  870. return data.map<SignInSignOutEntity>((Map<String, dynamic> e) =>
  871. SignInSignOutEntity.fromJson(e)).toList() as M;
  872. }
  873. if (<SignInSignOutRows>[] is M) {
  874. return data.map<SignInSignOutRows>((Map<String, dynamic> e) =>
  875. SignInSignOutRows.fromJson(e)).toList() as M;
  876. }
  877. if (<StaffDetailEntity>[] is M) {
  878. return data.map<StaffDetailEntity>((Map<String, dynamic> e) =>
  879. StaffDetailEntity.fromJson(e)).toList() as M;
  880. }
  881. if (<StaffDetailSGEntity>[] is M) {
  882. return data.map<StaffDetailSGEntity>((Map<String, dynamic> e) =>
  883. StaffDetailSGEntity.fromJson(e)).toList() as M;
  884. }
  885. if (<StaffDetailSGReviews>[] is M) {
  886. return data.map<StaffDetailSGReviews>((Map<String, dynamic> e) =>
  887. StaffDetailSGReviews.fromJson(e)).toList() as M;
  888. }
  889. if (<StaffDetailSGReviewsReviews>[] is M) {
  890. return data.map<StaffDetailSGReviewsReviews>((Map<String, dynamic> e) =>
  891. StaffDetailSGReviewsReviews.fromJson(e)).toList() as M;
  892. }
  893. if (<StaffJobHistorySGEntity>[] is M) {
  894. return data.map<StaffJobHistorySGEntity>((Map<String, dynamic> e) =>
  895. StaffJobHistorySGEntity.fromJson(e)).toList() as M;
  896. }
  897. if (<StaffJobHistorySGRows>[] is M) {
  898. return data.map<StaffJobHistorySGRows>((Map<String, dynamic> e) =>
  899. StaffJobHistorySGRows.fromJson(e)).toList() as M;
  900. }
  901. if (<StaffLabourHistoryEntity>[] is M) {
  902. return data.map<StaffLabourHistoryEntity>((Map<String, dynamic> e) =>
  903. StaffLabourHistoryEntity.fromJson(e)).toList() as M;
  904. }
  905. if (<StaffLabourHistoryRows>[] is M) {
  906. return data.map<StaffLabourHistoryRows>((Map<String, dynamic> e) =>
  907. StaffLabourHistoryRows.fromJson(e)).toList() as M;
  908. }
  909. if (<StaffLabourHistoryRowsSecurityIn>[] is M) {
  910. return data.map<StaffLabourHistoryRowsSecurityIn>((
  911. Map<String, dynamic> e) =>
  912. StaffLabourHistoryRowsSecurityIn.fromJson(e)).toList() as M;
  913. }
  914. if (<StaffLabourHistoryRowsSecurityOut>[] is M) {
  915. return data.map<StaffLabourHistoryRowsSecurityOut>((
  916. Map<String, dynamic> e) =>
  917. StaffLabourHistoryRowsSecurityOut.fromJson(e)).toList() as M;
  918. }
  919. if (<StaffLabourHistoryRowsWorkIn>[] is M) {
  920. return data.map<StaffLabourHistoryRowsWorkIn>((Map<String, dynamic> e) =>
  921. StaffLabourHistoryRowsWorkIn.fromJson(e)).toList() as M;
  922. }
  923. if (<StaffLabourHistoryRowsWorkOut>[] is M) {
  924. return data.map<StaffLabourHistoryRowsWorkOut>((Map<String, dynamic> e) =>
  925. StaffLabourHistoryRowsWorkOut.fromJson(e)).toList() as M;
  926. }
  927. if (<StaffRemarkHistoryEntity>[] is M) {
  928. return data.map<StaffRemarkHistoryEntity>((Map<String, dynamic> e) =>
  929. StaffRemarkHistoryEntity.fromJson(e)).toList() as M;
  930. }
  931. if (<StaffRemarkHistoryRows>[] is M) {
  932. return data.map<StaffRemarkHistoryRows>((Map<String, dynamic> e) =>
  933. StaffRemarkHistoryRows.fromJson(e)).toList() as M;
  934. }
  935. if (<StaffReportVNEntity>[] is M) {
  936. return data.map<StaffReportVNEntity>((Map<String, dynamic> e) =>
  937. StaffReportVNEntity.fromJson(e)).toList() as M;
  938. }
  939. if (<StaffRequestReportEntity>[] is M) {
  940. return data.map<StaffRequestReportEntity>((Map<String, dynamic> e) =>
  941. StaffRequestReportEntity.fromJson(e)).toList() as M;
  942. }
  943. if (<StaffReviewHistorySGEntity>[] is M) {
  944. return data.map<StaffReviewHistorySGEntity>((Map<String, dynamic> e) =>
  945. StaffReviewHistorySGEntity.fromJson(e)).toList() as M;
  946. }
  947. if (<StaffReviewHistorySGReviews>[] is M) {
  948. return data.map<StaffReviewHistorySGReviews>((Map<String, dynamic> e) =>
  949. StaffReviewHistorySGReviews.fromJson(e)).toList() as M;
  950. }
  951. if (<SwitchProjectEntity>[] is M) {
  952. return data.map<SwitchProjectEntity>((Map<String, dynamic> e) =>
  953. SwitchProjectEntity.fromJson(e)).toList() as M;
  954. }
  955. if (<SwitchProjectUserList>[] is M) {
  956. return data.map<SwitchProjectUserList>((Map<String, dynamic> e) =>
  957. SwitchProjectUserList.fromJson(e)).toList() as M;
  958. }
  959. if (<THAppliedEditEntity>[] is M) {
  960. return data.map<THAppliedEditEntity>((Map<String, dynamic> e) =>
  961. THAppliedEditEntity.fromJson(e)).toList() as M;
  962. }
  963. if (<THAppliedEditApplied>[] is M) {
  964. return data.map<THAppliedEditApplied>((Map<String, dynamic> e) =>
  965. THAppliedEditApplied.fromJson(e)).toList() as M;
  966. }
  967. if (<THAppliedEmployeeEntity>[] is M) {
  968. return data.map<THAppliedEmployeeEntity>((Map<String, dynamic> e) =>
  969. THAppliedEmployeeEntity.fromJson(e)).toList() as M;
  970. }
  971. if (<THAppliedEmployeeRows>[] is M) {
  972. return data.map<THAppliedEmployeeRows>((Map<String, dynamic> e) =>
  973. THAppliedEmployeeRows.fromJson(e)).toList() as M;
  974. }
  975. if (<THAppliedIndexEntity>[] is M) {
  976. return data.map<THAppliedIndexEntity>((Map<String, dynamic> e) =>
  977. THAppliedIndexEntity.fromJson(e)).toList() as M;
  978. }
  979. if (<THAppliedIndexJob>[] is M) {
  980. return data.map<THAppliedIndexJob>((Map<String, dynamic> e) =>
  981. THAppliedIndexJob.fromJson(e)).toList() as M;
  982. }
  983. if (<THAppliedTableEntity>[] is M) {
  984. return data.map<THAppliedTableEntity>((Map<String, dynamic> e) =>
  985. THAppliedTableEntity.fromJson(e)).toList() as M;
  986. }
  987. if (<THAppliedTableRows>[] is M) {
  988. return data.map<THAppliedTableRows>((Map<String, dynamic> e) =>
  989. THAppliedTableRows.fromJson(e)).toList() as M;
  990. }
  991. if (<THAppliedTableCheckInOut>[] is M) {
  992. return data.map<THAppliedTableCheckInOut>((Map<String, dynamic> e) =>
  993. THAppliedTableCheckInOut.fromJson(e)).toList() as M;
  994. }
  995. if (<THEmployeeDetailEntity>[] is M) {
  996. return data.map<THEmployeeDetailEntity>((Map<String, dynamic> e) =>
  997. THEmployeeDetailEntity.fromJson(e)).toList() as M;
  998. }
  999. if (<THEmployeeDetailStaff>[] is M) {
  1000. return data.map<THEmployeeDetailStaff>((Map<String, dynamic> e) =>
  1001. THEmployeeDetailStaff.fromJson(e)).toList() as M;
  1002. }
  1003. if (<THEmployeeDetailReviews>[] is M) {
  1004. return data.map<THEmployeeDetailReviews>((Map<String, dynamic> e) =>
  1005. THEmployeeDetailReviews.fromJson(e)).toList() as M;
  1006. }
  1007. if (<THEmployeeRemarksEntity>[] is M) {
  1008. return data.map<THEmployeeRemarksEntity>((Map<String, dynamic> e) =>
  1009. THEmployeeRemarksEntity.fromJson(e)).toList() as M;
  1010. }
  1011. if (<THEmployeeRemarksReviews>[] is M) {
  1012. return data.map<THEmployeeRemarksReviews>((Map<String, dynamic> e) =>
  1013. THEmployeeRemarksReviews.fromJson(e)).toList() as M;
  1014. }
  1015. if (<THOAAttachmentEntity>[] is M) {
  1016. return data.map<THOAAttachmentEntity>((Map<String, dynamic> e) =>
  1017. THOAAttachmentEntity.fromJson(e)).toList() as M;
  1018. }
  1019. if (<THOAAttachmentRows>[] is M) {
  1020. return data.map<THOAAttachmentRows>((Map<String, dynamic> e) =>
  1021. THOAAttachmentRows.fromJson(e)).toList() as M;
  1022. }
  1023. if (<THOALabourDetailEntity>[] is M) {
  1024. return data.map<THOALabourDetailEntity>((Map<String, dynamic> e) =>
  1025. THOALabourDetailEntity.fromJson(e)).toList() as M;
  1026. }
  1027. if (<THOALabourDetailLabourRequest>[] is M) {
  1028. return data.map<THOALabourDetailLabourRequest>((Map<String, dynamic> e) =>
  1029. THOALabourDetailLabourRequest.fromJson(e)).toList() as M;
  1030. }
  1031. if (<THOALabourReviewTableEntity>[] is M) {
  1032. return data.map<THOALabourReviewTableEntity>((Map<String, dynamic> e) =>
  1033. THOALabourReviewTableEntity.fromJson(e)).toList() as M;
  1034. }
  1035. if (<THOALabourReviewTableRows>[] is M) {
  1036. return data.map<THOALabourReviewTableRows>((Map<String, dynamic> e) =>
  1037. THOALabourReviewTableRows.fromJson(e)).toList() as M;
  1038. }
  1039. if (<THOALabourTableEntity>[] is M) {
  1040. return data.map<THOALabourTableEntity>((Map<String, dynamic> e) =>
  1041. THOALabourTableEntity.fromJson(e)).toList() as M;
  1042. }
  1043. if (<THOALabourTableRows>[] is M) {
  1044. return data.map<THOALabourTableRows>((Map<String, dynamic> e) =>
  1045. THOALabourTableRows.fromJson(e)).toList() as M;
  1046. }
  1047. if (<THUploadFileEntity>[] is M) {
  1048. return data.map<THUploadFileEntity>((Map<String, dynamic> e) =>
  1049. THUploadFileEntity.fromJson(e)).toList() as M;
  1050. }
  1051. if (<UKAttendanceEntity>[] is M) {
  1052. return data.map<UKAttendanceEntity>((Map<String, dynamic> e) =>
  1053. UKAttendanceEntity.fromJson(e)).toList() as M;
  1054. }
  1055. if (<UKAttendanceRows>[] is M) {
  1056. return data.map<UKAttendanceRows>((Map<String, dynamic> e) =>
  1057. UKAttendanceRows.fromJson(e)).toList() as M;
  1058. }
  1059. if (<UKAttendanceInOut>[] is M) {
  1060. return data.map<UKAttendanceInOut>((Map<String, dynamic> e) =>
  1061. UKAttendanceInOut.fromJson(e)).toList() as M;
  1062. }
  1063. if (<UKReportAttendanceEntity>[] is M) {
  1064. return data.map<UKReportAttendanceEntity>((Map<String, dynamic> e) =>
  1065. UKReportAttendanceEntity.fromJson(e)).toList() as M;
  1066. }
  1067. if (<UKReportAttendanceRows>[] is M) {
  1068. return data.map<UKReportAttendanceRows>((Map<String, dynamic> e) =>
  1069. UKReportAttendanceRows.fromJson(e)).toList() as M;
  1070. }
  1071. if (<UKReportLabourEntity>[] is M) {
  1072. return data.map<UKReportLabourEntity>((Map<String, dynamic> e) =>
  1073. UKReportLabourEntity.fromJson(e)).toList() as M;
  1074. }
  1075. if (<UKReportLabourRows>[] is M) {
  1076. return data.map<UKReportLabourRows>((Map<String, dynamic> e) =>
  1077. UKReportLabourRows.fromJson(e)).toList() as M;
  1078. }
  1079. if (<UKReportWorkingHoursEntity>[] is M) {
  1080. return data.map<UKReportWorkingHoursEntity>((Map<String, dynamic> e) =>
  1081. UKReportWorkingHoursEntity.fromJson(e)).toList() as M;
  1082. }
  1083. if (<UKReportWorkingHoursRows>[] is M) {
  1084. return data.map<UKReportWorkingHoursRows>((Map<String, dynamic> e) =>
  1085. UKReportWorkingHoursRows.fromJson(e)).toList() as M;
  1086. }
  1087. if (<UKSecurityAttendanceEntity>[] is M) {
  1088. return data.map<UKSecurityAttendanceEntity>((Map<String, dynamic> e) =>
  1089. UKSecurityAttendanceEntity.fromJson(e)).toList() as M;
  1090. }
  1091. if (<UKSecurityAttendanceRows>[] is M) {
  1092. return data.map<UKSecurityAttendanceRows>((Map<String, dynamic> e) =>
  1093. UKSecurityAttendanceRows.fromJson(e)).toList() as M;
  1094. }
  1095. if (<UKSecurityInOut>[] is M) {
  1096. return data.map<UKSecurityInOut>((Map<String, dynamic> e) =>
  1097. UKSecurityInOut.fromJson(e)).toList() as M;
  1098. }
  1099. if (<UKSecurityAttendanceOptionEntity>[] is M) {
  1100. return data.map<UKSecurityAttendanceOptionEntity>((
  1101. Map<String, dynamic> e) =>
  1102. UKSecurityAttendanceOptionEntity.fromJson(e)).toList() as M;
  1103. }
  1104. if (<UKSecurityAttendanceOptionFilter>[] is M) {
  1105. return data.map<UKSecurityAttendanceOptionFilter>((
  1106. Map<String, dynamic> e) =>
  1107. UKSecurityAttendanceOptionFilter.fromJson(e)).toList() as M;
  1108. }
  1109. if (<UkAttendanceReviewEntity>[] is M) {
  1110. return data.map<UkAttendanceReviewEntity>((Map<String, dynamic> e) =>
  1111. UkAttendanceReviewEntity.fromJson(e)).toList() as M;
  1112. }
  1113. if (<UkAttendanceReviewRows>[] is M) {
  1114. return data.map<UkAttendanceReviewRows>((Map<String, dynamic> e) =>
  1115. UkAttendanceReviewRows.fromJson(e)).toList() as M;
  1116. }
  1117. if (<UkAttendanceReviewRemarkEntity>[] is M) {
  1118. return data.map<UkAttendanceReviewRemarkEntity>((
  1119. Map<String, dynamic> e) => UkAttendanceReviewRemarkEntity.fromJson(e))
  1120. .toList() as M;
  1121. }
  1122. if (<UkJobAppliedReviseAddDetailEntity>[] is M) {
  1123. return data.map<UkJobAppliedReviseAddDetailEntity>((
  1124. Map<String, dynamic> e) =>
  1125. UkJobAppliedReviseAddDetailEntity.fromJson(e)).toList() as M;
  1126. }
  1127. if (<UkJobAppliedReviseAddDetailApplied>[] is M) {
  1128. return data.map<UkJobAppliedReviseAddDetailApplied>((
  1129. Map<String, dynamic> e) =>
  1130. UkJobAppliedReviseAddDetailApplied.fromJson(e)).toList() as M;
  1131. }
  1132. if (<UkJobAppliedReviseEditDetailEntity>[] is M) {
  1133. return data.map<UkJobAppliedReviseEditDetailEntity>((
  1134. Map<String, dynamic> e) =>
  1135. UkJobAppliedReviseEditDetailEntity.fromJson(e)).toList() as M;
  1136. }
  1137. if (<UkJobAppliedReviseEditDetailApplied>[] is M) {
  1138. return data.map<UkJobAppliedReviseEditDetailApplied>((
  1139. Map<String, dynamic> e) =>
  1140. UkJobAppliedReviseEditDetailApplied.fromJson(e)).toList() as M;
  1141. }
  1142. if (<UkJobAppliedReviseEditDetailRevise>[] is M) {
  1143. return data.map<UkJobAppliedReviseEditDetailRevise>((
  1144. Map<String, dynamic> e) =>
  1145. UkJobAppliedReviseEditDetailRevise.fromJson(e)).toList() as M;
  1146. }
  1147. if (<UkJobAppliedReviseEditDetailReviseApplied>[] is M) {
  1148. return data.map<UkJobAppliedReviseEditDetailReviseApplied>((
  1149. Map<String, dynamic> e) =>
  1150. UkJobAppliedReviseEditDetailReviseApplied.fromJson(e)).toList() as M;
  1151. }
  1152. if (<UkJobAppliedReviseInfoEntity>[] is M) {
  1153. return data.map<UkJobAppliedReviseInfoEntity>((Map<String, dynamic> e) =>
  1154. UkJobAppliedReviseInfoEntity.fromJson(e)).toList() as M;
  1155. }
  1156. if (<UkJobAppliedReviseInfoRows>[] is M) {
  1157. return data.map<UkJobAppliedReviseInfoRows>((Map<String, dynamic> e) =>
  1158. UkJobAppliedReviseInfoRows.fromJson(e)).toList() as M;
  1159. }
  1160. if (<UkJobAppliedReviseLogEntity>[] is M) {
  1161. return data.map<UkJobAppliedReviseLogEntity>((Map<String, dynamic> e) =>
  1162. UkJobAppliedReviseLogEntity.fromJson(e)).toList() as M;
  1163. }
  1164. if (<UkJobAppliedReviseLogRecords>[] is M) {
  1165. return data.map<UkJobAppliedReviseLogRecords>((Map<String, dynamic> e) =>
  1166. UkJobAppliedReviseLogRecords.fromJson(e)).toList() as M;
  1167. }
  1168. if (<UkJobAppliedReviseLogRecordsContent>[] is M) {
  1169. return data.map<UkJobAppliedReviseLogRecordsContent>((
  1170. Map<String, dynamic> e) =>
  1171. UkJobAppliedReviseLogRecordsContent.fromJson(e)).toList() as M;
  1172. }
  1173. if (<UkJobAppliedReviseLogRecordsContentReviseHours>[] is M) {
  1174. return data.map<UkJobAppliedReviseLogRecordsContentReviseHours>((
  1175. Map<String, dynamic> e) =>
  1176. UkJobAppliedReviseLogRecordsContentReviseHours.fromJson(e))
  1177. .toList() as M;
  1178. }
  1179. if (<UkJobAppliedReviseLogRecordsContentStatus>[] is M) {
  1180. return data.map<UkJobAppliedReviseLogRecordsContentStatus>((
  1181. Map<String, dynamic> e) =>
  1182. UkJobAppliedReviseLogRecordsContentStatus.fromJson(e)).toList() as M;
  1183. }
  1184. if (<UkJobAppliedReviseLogRecordsContentReason>[] is M) {
  1185. return data.map<UkJobAppliedReviseLogRecordsContentReason>((
  1186. Map<String, dynamic> e) =>
  1187. UkJobAppliedReviseLogRecordsContentReason.fromJson(e)).toList() as M;
  1188. }
  1189. if (<UkJobAppliedStaffListEntity>[] is M) {
  1190. return data.map<UkJobAppliedStaffListEntity>((Map<String, dynamic> e) =>
  1191. UkJobAppliedStaffListEntity.fromJson(e)).toList() as M;
  1192. }
  1193. if (<UkJobAppliedStaffListRows>[] is M) {
  1194. return data.map<UkJobAppliedStaffListRows>((Map<String, dynamic> e) =>
  1195. UkJobAppliedStaffListRows.fromJson(e)).toList() as M;
  1196. }
  1197. if (<UkJobAppliedStaffListRowsSecurityIn>[] is M) {
  1198. return data.map<UkJobAppliedStaffListRowsSecurityIn>((
  1199. Map<String, dynamic> e) =>
  1200. UkJobAppliedStaffListRowsSecurityIn.fromJson(e)).toList() as M;
  1201. }
  1202. if (<UkJobAppliedStaffListRowsSecurityOut>[] is M) {
  1203. return data.map<UkJobAppliedStaffListRowsSecurityOut>((
  1204. Map<String, dynamic> e) =>
  1205. UkJobAppliedStaffListRowsSecurityOut.fromJson(e)).toList() as M;
  1206. }
  1207. if (<UkJobAppliedStaffListRowsWorkIn>[] is M) {
  1208. return data.map<UkJobAppliedStaffListRowsWorkIn>((
  1209. Map<String, dynamic> e) =>
  1210. UkJobAppliedStaffListRowsWorkIn.fromJson(e)).toList() as M;
  1211. }
  1212. if (<UkJobAppliedStaffListRowsWorkOut>[] is M) {
  1213. return data.map<UkJobAppliedStaffListRowsWorkOut>((
  1214. Map<String, dynamic> e) =>
  1215. UkJobAppliedStaffListRowsWorkOut.fromJson(e)).toList() as M;
  1216. }
  1217. if (<UkJobListAppliedStaffSearchEntity>[] is M) {
  1218. return data.map<UkJobListAppliedStaffSearchEntity>((
  1219. Map<String, dynamic> e) =>
  1220. UkJobListAppliedStaffSearchEntity.fromJson(e)).toList() as M;
  1221. }
  1222. if (<UkJobListAppliedStaffSearchRows>[] is M) {
  1223. return data.map<UkJobListAppliedStaffSearchRows>((
  1224. Map<String, dynamic> e) =>
  1225. UkJobListAppliedStaffSearchRows.fromJson(e)).toList() as M;
  1226. }
  1227. if (<UkJobTemplateDetailBySelectTitleEntity>[] is M) {
  1228. return data.map<UkJobTemplateDetailBySelectTitleEntity>((
  1229. Map<String, dynamic> e) =>
  1230. UkJobTemplateDetailBySelectTitleEntity.fromJson(e)).toList() as M;
  1231. }
  1232. if (<UkLabReqShowTemplateEntity>[] is M) {
  1233. return data.map<UkLabReqShowTemplateEntity>((Map<String, dynamic> e) =>
  1234. UkLabReqShowTemplateEntity.fromJson(e)).toList() as M;
  1235. }
  1236. if (<UkLabourRequestDetailEntity>[] is M) {
  1237. return data.map<UkLabourRequestDetailEntity>((Map<String, dynamic> e) =>
  1238. UkLabourRequestDetailEntity.fromJson(e)).toList() as M;
  1239. }
  1240. if (<UkLabourRequestDetailCertificateList>[] is M) {
  1241. return data.map<UkLabourRequestDetailCertificateList>((
  1242. Map<String, dynamic> e) =>
  1243. UkLabourRequestDetailCertificateList.fromJson(e)).toList() as M;
  1244. }
  1245. if (<UkLabourRequestDetailVehicleList>[] is M) {
  1246. return data.map<UkLabourRequestDetailVehicleList>((
  1247. Map<String, dynamic> e) =>
  1248. UkLabourRequestDetailVehicleList.fromJson(e)).toList() as M;
  1249. }
  1250. if (<UkLabourRequestDetailChallenge25List>[] is M) {
  1251. return data.map<UkLabourRequestDetailChallenge25List>((
  1252. Map<String, dynamic> e) =>
  1253. UkLabourRequestDetailChallenge25List.fromJson(e)).toList() as M;
  1254. }
  1255. if (<UkLabourRequestDetailLocationList>[] is M) {
  1256. return data.map<UkLabourRequestDetailLocationList>((
  1257. Map<String, dynamic> e) =>
  1258. UkLabourRequestDetailLocationList.fromJson(e)).toList() as M;
  1259. }
  1260. if (<UkLabourRequestDetailTemplateList>[] is M) {
  1261. return data.map<UkLabourRequestDetailTemplateList>((
  1262. Map<String, dynamic> e) =>
  1263. UkLabourRequestDetailTemplateList.fromJson(e)).toList() as M;
  1264. }
  1265. if (<UkLabourRequestDetailDepartmentList>[] is M) {
  1266. return data.map<UkLabourRequestDetailDepartmentList>((
  1267. Map<String, dynamic> e) =>
  1268. UkLabourRequestDetailDepartmentList.fromJson(e)).toList() as M;
  1269. }
  1270. if (<UkLabourRequestDetailChargeList>[] is M) {
  1271. return data.map<UkLabourRequestDetailChargeList>((
  1272. Map<String, dynamic> e) =>
  1273. UkLabourRequestDetailChargeList.fromJson(e)).toList() as M;
  1274. }
  1275. if (<UkLabourRequestDetailEmploymentList>[] is M) {
  1276. return data.map<UkLabourRequestDetailEmploymentList>((
  1277. Map<String, dynamic> e) =>
  1278. UkLabourRequestDetailEmploymentList.fromJson(e)).toList() as M;
  1279. }
  1280. if (<UkLabourRequestPreselectAddstaffListEntity>[] is M) {
  1281. return data.map<UkLabourRequestPreselectAddstaffListEntity>((
  1282. Map<String, dynamic> e) =>
  1283. UkLabourRequestPreselectAddstaffListEntity.fromJson(e)).toList() as M;
  1284. }
  1285. if (<UkLabourRequestPreselectAddstaffListRows>[] is M) {
  1286. return data.map<UkLabourRequestPreselectAddstaffListRows>((
  1287. Map<String, dynamic> e) =>
  1288. UkLabourRequestPreselectAddstaffListRows.fromJson(e)).toList() as M;
  1289. }
  1290. if (<UkLabourRequestPreselectedListEntity>[] is M) {
  1291. return data.map<UkLabourRequestPreselectedListEntity>((
  1292. Map<String, dynamic> e) =>
  1293. UkLabourRequestPreselectedListEntity.fromJson(e)).toList() as M;
  1294. }
  1295. if (<UkLabourRequestPreselectedListRows>[] is M) {
  1296. return data.map<UkLabourRequestPreselectedListRows>((
  1297. Map<String, dynamic> e) =>
  1298. UkLabourRequestPreselectedListRows.fromJson(e)).toList() as M;
  1299. }
  1300. if (<UkLabourRequestReviewDetailEntity>[] is M) {
  1301. return data.map<UkLabourRequestReviewDetailEntity>((
  1302. Map<String, dynamic> e) =>
  1303. UkLabourRequestReviewDetailEntity.fromJson(e)).toList() as M;
  1304. }
  1305. if (<UkLabourRequestReviewDetailOrder>[] is M) {
  1306. return data.map<UkLabourRequestReviewDetailOrder>((
  1307. Map<String, dynamic> e) =>
  1308. UkLabourRequestReviewDetailOrder.fromJson(e)).toList() as M;
  1309. }
  1310. if (<UkLabourRequestReviewDetailOrderRequest>[] is M) {
  1311. return data.map<UkLabourRequestReviewDetailOrderRequest>((
  1312. Map<String, dynamic> e) =>
  1313. UkLabourRequestReviewDetailOrderRequest.fromJson(e)).toList() as M;
  1314. }
  1315. if (<UkLabourRequestReviewDetailOrderRecords>[] is M) {
  1316. return data.map<UkLabourRequestReviewDetailOrderRecords>((
  1317. Map<String, dynamic> e) =>
  1318. UkLabourRequestReviewDetailOrderRecords.fromJson(e)).toList() as M;
  1319. }
  1320. if (<UkLabourRequestReviewDetailRecords>[] is M) {
  1321. return data.map<UkLabourRequestReviewDetailRecords>((
  1322. Map<String, dynamic> e) =>
  1323. UkLabourRequestReviewDetailRecords.fromJson(e)).toList() as M;
  1324. }
  1325. if (<UkLabourRequestReviewListEntity>[] is M) {
  1326. return data.map<UkLabourRequestReviewListEntity>((
  1327. Map<String, dynamic> e) =>
  1328. UkLabourRequestReviewListEntity.fromJson(e)).toList() as M;
  1329. }
  1330. if (<UkLabourRequestReviewListRows>[] is M) {
  1331. return data.map<UkLabourRequestReviewListRows>((Map<String, dynamic> e) =>
  1332. UkLabourRequestReviewListRows.fromJson(e)).toList() as M;
  1333. }
  1334. if (<UkLabourRequestTableEntity>[] is M) {
  1335. return data.map<UkLabourRequestTableEntity>((Map<String, dynamic> e) =>
  1336. UkLabourRequestTableEntity.fromJson(e)).toList() as M;
  1337. }
  1338. if (<UkLabourRequestTableRows>[] is M) {
  1339. return data.map<UkLabourRequestTableRows>((Map<String, dynamic> e) =>
  1340. UkLabourRequestTableRows.fromJson(e)).toList() as M;
  1341. }
  1342. if (<UkLabourReviewStatusEntity>[] is M) {
  1343. return data.map<UkLabourReviewStatusEntity>((Map<String, dynamic> e) =>
  1344. UkLabourReviewStatusEntity.fromJson(e)).toList() as M;
  1345. }
  1346. if (<UkLabourReviewStatusRow>[] is M) {
  1347. return data.map<UkLabourReviewStatusRow>((Map<String, dynamic> e) =>
  1348. UkLabourReviewStatusRow.fromJson(e)).toList() as M;
  1349. }
  1350. if (<UkLabourReviewStatusRecords>[] is M) {
  1351. return data.map<UkLabourReviewStatusRecords>((Map<String, dynamic> e) =>
  1352. UkLabourReviewStatusRecords.fromJson(e)).toList() as M;
  1353. }
  1354. if (<UkReportCasualEntity>[] is M) {
  1355. return data.map<UkReportCasualEntity>((Map<String, dynamic> e) =>
  1356. UkReportCasualEntity.fromJson(e)).toList() as M;
  1357. }
  1358. if (<UkReportCasualRows>[] is M) {
  1359. return data.map<UkReportCasualRows>((Map<String, dynamic> e) =>
  1360. UkReportCasualRows.fromJson(e)).toList() as M;
  1361. }
  1362. if (<UkReportCasualTotal>[] is M) {
  1363. return data.map<UkReportCasualTotal>((Map<String, dynamic> e) =>
  1364. UkReportCasualTotal.fromJson(e)).toList() as M;
  1365. }
  1366. if (<UkReportCasualPayEntity>[] is M) {
  1367. return data.map<UkReportCasualPayEntity>((Map<String, dynamic> e) =>
  1368. UkReportCasualPayEntity.fromJson(e)).toList() as M;
  1369. }
  1370. if (<UkReportCasualPayRows>[] is M) {
  1371. return data.map<UkReportCasualPayRows>((Map<String, dynamic> e) =>
  1372. UkReportCasualPayRows.fromJson(e)).toList() as M;
  1373. }
  1374. if (<UkReportCasualPayTotal>[] is M) {
  1375. return data.map<UkReportCasualPayTotal>((Map<String, dynamic> e) =>
  1376. UkReportCasualPayTotal.fromJson(e)).toList() as M;
  1377. }
  1378. if (<UkReportOutletEntity>[] is M) {
  1379. return data.map<UkReportOutletEntity>((Map<String, dynamic> e) =>
  1380. UkReportOutletEntity.fromJson(e)).toList() as M;
  1381. }
  1382. if (<UkReportOutletRequestList>[] is M) {
  1383. return data.map<UkReportOutletRequestList>((Map<String, dynamic> e) =>
  1384. UkReportOutletRequestList.fromJson(e)).toList() as M;
  1385. }
  1386. if (<UkStaffDetailEntity>[] is M) {
  1387. return data.map<UkStaffDetailEntity>((Map<String, dynamic> e) =>
  1388. UkStaffDetailEntity.fromJson(e)).toList() as M;
  1389. }
  1390. if (<UkStaffDetailCertificates>[] is M) {
  1391. return data.map<UkStaffDetailCertificates>((Map<String, dynamic> e) =>
  1392. UkStaffDetailCertificates.fromJson(e)).toList() as M;
  1393. }
  1394. if (<UkStaffLabourHistoryEntity>[] is M) {
  1395. return data.map<UkStaffLabourHistoryEntity>((Map<String, dynamic> e) =>
  1396. UkStaffLabourHistoryEntity.fromJson(e)).toList() as M;
  1397. }
  1398. if (<UkStaffLabourHistoryRows>[] is M) {
  1399. return data.map<UkStaffLabourHistoryRows>((Map<String, dynamic> e) =>
  1400. UkStaffLabourHistoryRows.fromJson(e)).toList() as M;
  1401. }
  1402. if (<UkStaffLabourHistoryRowsSecurityIn>[] is M) {
  1403. return data.map<UkStaffLabourHistoryRowsSecurityIn>((
  1404. Map<String, dynamic> e) =>
  1405. UkStaffLabourHistoryRowsSecurityIn.fromJson(e)).toList() as M;
  1406. }
  1407. if (<UkStaffLabourHistoryRowsSecurityOut>[] is M) {
  1408. return data.map<UkStaffLabourHistoryRowsSecurityOut>((
  1409. Map<String, dynamic> e) =>
  1410. UkStaffLabourHistoryRowsSecurityOut.fromJson(e)).toList() as M;
  1411. }
  1412. if (<UkStaffLabourHistoryRowsWorkIn>[] is M) {
  1413. return data.map<UkStaffLabourHistoryRowsWorkIn>((
  1414. Map<String, dynamic> e) => UkStaffLabourHistoryRowsWorkIn.fromJson(e))
  1415. .toList() as M;
  1416. }
  1417. if (<UkStaffLabourHistoryRowsWorkOut>[] is M) {
  1418. return data.map<UkStaffLabourHistoryRowsWorkOut>((
  1419. Map<String, dynamic> e) =>
  1420. UkStaffLabourHistoryRowsWorkOut.fromJson(e)).toList() as M;
  1421. }
  1422. if (<UkTemplateDetailEntity>[] is M) {
  1423. return data.map<UkTemplateDetailEntity>((Map<String, dynamic> e) =>
  1424. UkTemplateDetailEntity.fromJson(e)).toList() as M;
  1425. }
  1426. if (<UkTemplateDetailRow>[] is M) {
  1427. return data.map<UkTemplateDetailRow>((Map<String, dynamic> e) =>
  1428. UkTemplateDetailRow.fromJson(e)).toList() as M;
  1429. }
  1430. if (<UkTemplateDetailTitleList>[] is M) {
  1431. return data.map<UkTemplateDetailTitleList>((Map<String, dynamic> e) =>
  1432. UkTemplateDetailTitleList.fromJson(e)).toList() as M;
  1433. }
  1434. if (<UkTemplateDetailCertificateList>[] is M) {
  1435. return data.map<UkTemplateDetailCertificateList>((
  1436. Map<String, dynamic> e) =>
  1437. UkTemplateDetailCertificateList.fromJson(e)).toList() as M;
  1438. }
  1439. if (<UkTemplateDetailVehicleList>[] is M) {
  1440. return data.map<UkTemplateDetailVehicleList>((Map<String, dynamic> e) =>
  1441. UkTemplateDetailVehicleList.fromJson(e)).toList() as M;
  1442. }
  1443. if (<UkTemplateDetailChallenge25List>[] is M) {
  1444. return data.map<UkTemplateDetailChallenge25List>((
  1445. Map<String, dynamic> e) =>
  1446. UkTemplateDetailChallenge25List.fromJson(e)).toList() as M;
  1447. }
  1448. if (<UkTemplateDetailIndexEntity>[] is M) {
  1449. return data.map<UkTemplateDetailIndexEntity>((Map<String, dynamic> e) =>
  1450. UkTemplateDetailIndexEntity.fromJson(e)).toList() as M;
  1451. }
  1452. if (<UkTemplateDetailIndexCertificateList>[] is M) {
  1453. return data.map<UkTemplateDetailIndexCertificateList>((
  1454. Map<String, dynamic> e) =>
  1455. UkTemplateDetailIndexCertificateList.fromJson(e)).toList() as M;
  1456. }
  1457. if (<UkTemplateDetailIndexVehicleList>[] is M) {
  1458. return data.map<UkTemplateDetailIndexVehicleList>((
  1459. Map<String, dynamic> e) =>
  1460. UkTemplateDetailIndexVehicleList.fromJson(e)).toList() as M;
  1461. }
  1462. if (<UkTemplateDetailIndexChallenge25List>[] is M) {
  1463. return data.map<UkTemplateDetailIndexChallenge25List>((
  1464. Map<String, dynamic> e) =>
  1465. UkTemplateDetailIndexChallenge25List.fromJson(e)).toList() as M;
  1466. }
  1467. if (<UkTemplateTableEntity>[] is M) {
  1468. return data.map<UkTemplateTableEntity>((Map<String, dynamic> e) =>
  1469. UkTemplateTableEntity.fromJson(e)).toList() as M;
  1470. }
  1471. if (<UkTemplateTableRows>[] is M) {
  1472. return data.map<UkTemplateTableRows>((Map<String, dynamic> e) =>
  1473. UkTemplateTableRows.fromJson(e)).toList() as M;
  1474. }
  1475. if (<UkTemplateTitleOptionEntity>[] is M) {
  1476. return data.map<UkTemplateTitleOptionEntity>((Map<String, dynamic> e) =>
  1477. UkTemplateTitleOptionEntity.fromJson(e)).toList() as M;
  1478. }
  1479. if (<ServerTime>[] is M) {
  1480. return data.map<ServerTime>((Map<String, dynamic> e) =>
  1481. ServerTime.fromJson(e)).toList() as M;
  1482. }
  1483. debugPrint("$M not found");
  1484. return null;
  1485. }
  1486. static M? fromJsonAsT<M>(dynamic json) {
  1487. if (json is M) {
  1488. return json;
  1489. }
  1490. if (json is List) {
  1491. return _getListChildType<M>(
  1492. json.map((dynamic e) => e as Map<String, dynamic>).toList());
  1493. } else {
  1494. return jsonConvert.convert<M>(json);
  1495. }
  1496. }
  1497. }
  1498. class JsonConvertClassCollection {
  1499. Map<String, JsonConvertFunction> convertFuncMap = {
  1500. (AddEditReviseViewSGEntity).toString(): AddEditReviseViewSGEntity.fromJson,
  1501. (AgencyDetailEntity).toString(): AgencyDetailEntity.fromJson,
  1502. (AgencyDetailPivot).toString(): AgencyDetailPivot.fromJson,
  1503. (AgencyOptionEntity).toString(): AgencyOptionEntity.fromJson,
  1504. (AgencyTableEntity).toString(): AgencyTableEntity.fromJson,
  1505. (AgencyTableRows).toString(): AgencyTableRows.fromJson,
  1506. (AttendanceEntity).toString(): AttendanceEntity.fromJson,
  1507. (AttendanceList).toString(): AttendanceList.fromJson,
  1508. (AttendanceReviewEntity).toString(): AttendanceReviewEntity.fromJson,
  1509. (AttendanceReviewRows).toString(): AttendanceReviewRows.fromJson,
  1510. (CheckSuccessEntity).toString(): CheckSuccessEntity.fromJson,
  1511. (ContractDetailEntity).toString(): ContractDetailEntity.fromJson,
  1512. (ContractDetailRow).toString(): ContractDetailRow.fromJson,
  1513. (ContractOptionEntity).toString(): ContractOptionEntity.fromJson,
  1514. (ContractPositionAddOptionEntity)
  1515. .toString(): ContractPositionAddOptionEntity.fromJson,
  1516. (ContractPositionOptionEntity).toString(): ContractPositionOptionEntity
  1517. .fromJson,
  1518. (ContractPositionRateDetailEntity)
  1519. .toString(): ContractPositionRateDetailEntity.fromJson,
  1520. (ContractPositionRateSpecificOptionEntity)
  1521. .toString(): ContractPositionRateSpecificOptionEntity.fromJson,
  1522. (ContractPositionRateTableEntity)
  1523. .toString(): ContractPositionRateTableEntity.fromJson,
  1524. (ContractPositionRateTableRows).toString(): ContractPositionRateTableRows
  1525. .fromJson,
  1526. (ContractPositionTableEntity).toString(): ContractPositionTableEntity
  1527. .fromJson,
  1528. (ContractPositionTableRows).toString(): ContractPositionTableRows.fromJson,
  1529. (ContractTableEntity).toString(): ContractTableEntity.fromJson,
  1530. (ContractTableRows).toString(): ContractTableRows.fromJson,
  1531. (DeviceListEntity).toString(): DeviceListEntity.fromJson,
  1532. (DeviceListRows).toString(): DeviceListRows.fromJson,
  1533. (FianceReportEntity).toString(): FianceReportEntity.fromJson,
  1534. (FianceReportRateList).toString(): FianceReportRateList.fromJson,
  1535. (HotelInfoEntity).toString(): HotelInfoEntity.fromJson,
  1536. (HotelInfoMenus).toString(): HotelInfoMenus.fromJson,
  1537. (HotelInfoMenusChildren).toString(): HotelInfoMenusChildren.fromJson,
  1538. (IdNameEntity).toString(): IdNameEntity.fromJson,
  1539. (IndexOptionEntity).toString(): IndexOptionEntity.fromJson,
  1540. (JobAppliedEditIndexSGEntity).toString(): JobAppliedEditIndexSGEntity
  1541. .fromJson,
  1542. (JobAppliedEditIndexSGStatusList)
  1543. .toString(): JobAppliedEditIndexSGStatusList.fromJson,
  1544. (JobAppliedIndexSGEntity).toString(): JobAppliedIndexSGEntity.fromJson,
  1545. (JobAppliedIndexSGStatusList).toString(): JobAppliedIndexSGStatusList
  1546. .fromJson,
  1547. (JobAppliedListSGEntity).toString(): JobAppliedListSGEntity.fromJson,
  1548. (JobAppliedListSGRows).toString(): JobAppliedListSGRows.fromJson,
  1549. (JobAppliedListSGRowsCheck).toString(): JobAppliedListSGRowsCheck.fromJson,
  1550. (JobAppliedListSGRowsStatusList).toString(): JobAppliedListSGRowsStatusList
  1551. .fromJson,
  1552. (JobAppliedRemarkViewSGEntity).toString(): JobAppliedRemarkViewSGEntity
  1553. .fromJson,
  1554. (JobAppliedStaffSGEntity).toString(): JobAppliedStaffSGEntity.fromJson,
  1555. (JobAppliedStaffSGRows).toString(): JobAppliedStaffSGRows.fromJson,
  1556. (JobListAddStaffEntity).toString(): JobListAddStaffEntity.fromJson,
  1557. (JobListAddStaffResultList).toString(): JobListAddStaffResultList.fromJson,
  1558. (JobListAppliedEditEntity).toString(): JobListAppliedEditEntity.fromJson,
  1559. (JobListAppliedEditReasonList).toString(): JobListAppliedEditReasonList
  1560. .fromJson,
  1561. (JobListAppliedInfoEntity).toString(): JobListAppliedInfoEntity.fromJson,
  1562. (JobListAppliedStaffListEntity).toString(): JobListAppliedStaffListEntity
  1563. .fromJson,
  1564. (JobListAppliedStaffListRows).toString(): JobListAppliedStaffListRows
  1565. .fromJson,
  1566. (JobListAppliedStaffListRowsSecurityIn)
  1567. .toString(): JobListAppliedStaffListRowsSecurityIn.fromJson,
  1568. (JobListAppliedStaffListRowsSecurityOut)
  1569. .toString(): JobListAppliedStaffListRowsSecurityOut.fromJson,
  1570. (JobListAppliedStaffListRowsWorkIn)
  1571. .toString(): JobListAppliedStaffListRowsWorkIn.fromJson,
  1572. (JobListAppliedStaffListRowsWorkOut)
  1573. .toString(): JobListAppliedStaffListRowsWorkOut.fromJson,
  1574. (JobListAppliedStaffSearchEntity)
  1575. .toString(): JobListAppliedStaffSearchEntity.fromJson,
  1576. (JobListAppliedStaffSearchRows).toString(): JobListAppliedStaffSearchRows
  1577. .fromJson,
  1578. (JobListAppliedWorkFlowEntity).toString(): JobListAppliedWorkFlowEntity
  1579. .fromJson,
  1580. (JobListAppliedWorkFlowRecords).toString(): JobListAppliedWorkFlowRecords
  1581. .fromJson,
  1582. (JobListDetailEntity).toString(): JobListDetailEntity.fromJson,
  1583. (JobListDetailDepartmentList).toString(): JobListDetailDepartmentList
  1584. .fromJson,
  1585. (JobListERDetailEntity).toString(): JobListERDetailEntity.fromJson,
  1586. (JobListERDetailJob).toString(): JobListERDetailJob.fromJson,
  1587. (JobListEROptionEntity).toString(): JobListEROptionEntity.fromJson,
  1588. (JobListEROptionFilter).toString(): JobListEROptionFilter.fromJson,
  1589. (JobListEditIndexSGEntity).toString(): JobListEditIndexSGEntity.fromJson,
  1590. (JobListEditIndexOption).toString(): JobListEditIndexOption.fromJson,
  1591. (JobListEntity).toString(): JobListEntity.fromJson,
  1592. (JobListRows).toString(): JobListRows.fromJson,
  1593. (JobListIndexEntity).toString(): JobListIndexEntity.fromJson,
  1594. (JobListIndexDepartmentList).toString(): JobListIndexDepartmentList
  1595. .fromJson,
  1596. (JobListIndexStatusList).toString(): JobListIndexStatusList.fromJson,
  1597. (JobListIndexSGEntity).toString(): JobListIndexSGEntity.fromJson,
  1598. (JobListIndexSGOption).toString(): JobListIndexSGOption.fromJson,
  1599. (JobListRemarkViewEntity).toString(): JobListRemarkViewEntity.fromJson,
  1600. (JobListSGEntity).toString(): JobListSGEntity.fromJson,
  1601. (JobListSGRows).toString(): JobListSGRows.fromJson,
  1602. (JobTemplateEditIndexEntity).toString(): JobTemplateEditIndexEntity
  1603. .fromJson,
  1604. (JobTemplateEditIndexAgeList).toString(): JobTemplateEditIndexAgeList
  1605. .fromJson,
  1606. (JobTemplateEditIndexSexList).toString(): JobTemplateEditIndexSexList
  1607. .fromJson,
  1608. (JobTemplateEditIndexLanguageList)
  1609. .toString(): JobTemplateEditIndexLanguageList.fromJson,
  1610. (JobTemplateSGEntity).toString(): JobTemplateSGEntity.fromJson,
  1611. (JobTemplateSGRows).toString(): JobTemplateSGRows.fromJson,
  1612. (JobTitleEditIndexEntity).toString(): JobTitleEditIndexEntity.fromJson,
  1613. (JobTitleEditIndexTemplate).toString(): JobTitleEditIndexTemplate.fromJson,
  1614. (JobTitleSGEntity).toString(): JobTitleSGEntity.fromJson,
  1615. (JobTitleSGRows).toString(): JobTitleSGRows.fromJson,
  1616. (LabourListEREntity).toString(): LabourListEREntity.fromJson,
  1617. (LabourListERRows).toString(): LabourListERRows.fromJson,
  1618. (LabourReportEntity).toString(): LabourReportEntity.fromJson,
  1619. (LabourReportRows).toString(): LabourReportRows.fromJson,
  1620. (LabourReportTotal).toString(): LabourReportTotal.fromJson,
  1621. (LabourReportVNEntity).toString(): LabourReportVNEntity.fromJson,
  1622. (LabourReportVNRows).toString(): LabourReportVNRows.fromJson,
  1623. (LabourReportVNTotal).toString(): LabourReportVNTotal.fromJson,
  1624. (LabourRequestEREntity).toString(): LabourRequestEREntity.fromJson,
  1625. (LabourRequestERCountList).toString(): LabourRequestERCountList.fromJson,
  1626. (LabourRequestERSourceList).toString(): LabourRequestERSourceList.fromJson,
  1627. (LabourRequestERSourceListRequestList)
  1628. .toString(): LabourRequestERSourceListRequestList.fromJson,
  1629. (LabourRequestEROptionEntity).toString(): LabourRequestEROptionEntity
  1630. .fromJson,
  1631. (LabourRequestEditIndexEntity).toString(): LabourRequestEditIndexEntity
  1632. .fromJson,
  1633. (LabourRequestEditIndexTemplateList)
  1634. .toString(): LabourRequestEditIndexTemplateList.fromJson,
  1635. (LabourRequestEditIndexDepartmentList)
  1636. .toString(): LabourRequestEditIndexDepartmentList.fromJson,
  1637. (LabourRequestIndexEntity).toString(): LabourRequestIndexEntity.fromJson,
  1638. (LabourRequestIndexDepartmentList)
  1639. .toString(): LabourRequestIndexDepartmentList.fromJson,
  1640. (LabourRequestIndexStatusList).toString(): LabourRequestIndexStatusList
  1641. .fromJson,
  1642. (LabourRequestListEntity).toString(): LabourRequestListEntity.fromJson,
  1643. (LabourRequestListRows).toString(): LabourRequestListRows.fromJson,
  1644. (LabourRequestWorkFlowEntity).toString(): LabourRequestWorkFlowEntity
  1645. .fromJson,
  1646. (LabourRequestWorkFlowRecords).toString(): LabourRequestWorkFlowRecords
  1647. .fromJson,
  1648. (LabourReviewListEntity).toString(): LabourReviewListEntity.fromJson,
  1649. (LabourReviewListRows).toString(): LabourReviewListRows.fromJson,
  1650. (LabourReviewStatusEntity).toString(): LabourReviewStatusEntity.fromJson,
  1651. (LabourReviewStatusRecords).toString(): LabourReviewStatusRecords.fromJson,
  1652. (PositionTableEntity).toString(): PositionTableEntity.fromJson,
  1653. (PositionTableRows).toString(): PositionTableRows.fromJson,
  1654. (ReviseIndexSGEntity).toString(): ReviseIndexSGEntity.fromJson,
  1655. (ReviseIndexSGStatusList).toString(): ReviseIndexSGStatusList.fromJson,
  1656. (ReviseListSGEntity).toString(): ReviseListSGEntity.fromJson,
  1657. (ReviseListSGRows).toString(): ReviseListSGRows.fromJson,
  1658. (ReviseLogSGEntity).toString(): ReviseLogSGEntity.fromJson,
  1659. (ReviseLogSGRecords).toString(): ReviseLogSGRecords.fromJson,
  1660. (ReviseLogSGRecordsContent).toString(): ReviseLogSGRecordsContent.fromJson,
  1661. (ReviseLogSGRecordsOption).toString(): ReviseLogSGRecordsOption.fromJson,
  1662. (SGAttendanceReviewOptionEntity).toString(): SGAttendanceReviewOptionEntity
  1663. .fromJson,
  1664. (SGAttendanceReviewTableEntity).toString(): SGAttendanceReviewTableEntity
  1665. .fromJson,
  1666. (SGAttendanceReviewTableRows).toString(): SGAttendanceReviewTableRows
  1667. .fromJson,
  1668. (SGAttendanceReviewTableRowsCheck)
  1669. .toString(): SGAttendanceReviewTableRowsCheck.fromJson,
  1670. (SGAttendanceReviewWorkflowEntity)
  1671. .toString(): SGAttendanceReviewWorkflowEntity.fromJson,
  1672. (SGAttendanceReviewWorkflowRow).toString(): SGAttendanceReviewWorkflowRow
  1673. .fromJson,
  1674. (SGAttendanceReviewWorkflowRecords)
  1675. .toString(): SGAttendanceReviewWorkflowRecords.fromJson,
  1676. (SGDashboardEntity).toString(): SGDashboardEntity.fromJson,
  1677. (SGDashboardAgencyList).toString(): SGDashboardAgencyList.fromJson,
  1678. (SGDashboardAgencyListDays).toString(): SGDashboardAgencyListDays.fromJson,
  1679. (SGLabourRequestAddOptionEntity).toString(): SGLabourRequestAddOptionEntity
  1680. .fromJson,
  1681. (LabourRequestAgencyEntity).toString(): LabourRequestAgencyEntity.fromJson,
  1682. (SGLabourRequestDetailEntity).toString(): SGLabourRequestDetailEntity
  1683. .fromJson,
  1684. (SGLabourRequestDetailLabReq).toString(): SGLabourRequestDetailLabReq
  1685. .fromJson,
  1686. (SGLabourRequestOptionEntity).toString(): SGLabourRequestOptionEntity
  1687. .fromJson,
  1688. (SGLabourRequestTableEntity).toString(): SGLabourRequestTableEntity
  1689. .fromJson,
  1690. (SGLabourRequestTableRows).toString(): SGLabourRequestTableRows.fromJson,
  1691. (SGLabourRequestWorlFlowEntity).toString(): SGLabourRequestWorlFlowEntity
  1692. .fromJson,
  1693. (SGLabourRequestWorlFlowRow).toString(): SGLabourRequestWorlFlowRow
  1694. .fromJson,
  1695. (SGLabourRequestWorlFlowRecords).toString(): SGLabourRequestWorlFlowRecords
  1696. .fromJson,
  1697. (SGLabourReviewOptionEntity).toString(): SGLabourReviewOptionEntity
  1698. .fromJson,
  1699. (SGLabourReviewTableEntity).toString(): SGLabourReviewTableEntity.fromJson,
  1700. (SGLabourReviewTableRows).toString(): SGLabourReviewTableRows.fromJson,
  1701. (SignInSignOutEntity).toString(): SignInSignOutEntity.fromJson,
  1702. (SignInSignOutRows).toString(): SignInSignOutRows.fromJson,
  1703. (StaffDetailEntity).toString(): StaffDetailEntity.fromJson,
  1704. (StaffDetailSGEntity).toString(): StaffDetailSGEntity.fromJson,
  1705. (StaffDetailSGReviews).toString(): StaffDetailSGReviews.fromJson,
  1706. (StaffDetailSGReviewsReviews).toString(): StaffDetailSGReviewsReviews
  1707. .fromJson,
  1708. (StaffJobHistorySGEntity).toString(): StaffJobHistorySGEntity.fromJson,
  1709. (StaffJobHistorySGRows).toString(): StaffJobHistorySGRows.fromJson,
  1710. (StaffLabourHistoryEntity).toString(): StaffLabourHistoryEntity.fromJson,
  1711. (StaffLabourHistoryRows).toString(): StaffLabourHistoryRows.fromJson,
  1712. (StaffLabourHistoryRowsSecurityIn)
  1713. .toString(): StaffLabourHistoryRowsSecurityIn.fromJson,
  1714. (StaffLabourHistoryRowsSecurityOut)
  1715. .toString(): StaffLabourHistoryRowsSecurityOut.fromJson,
  1716. (StaffLabourHistoryRowsWorkIn).toString(): StaffLabourHistoryRowsWorkIn
  1717. .fromJson,
  1718. (StaffLabourHistoryRowsWorkOut).toString(): StaffLabourHistoryRowsWorkOut
  1719. .fromJson,
  1720. (StaffRemarkHistoryEntity).toString(): StaffRemarkHistoryEntity.fromJson,
  1721. (StaffRemarkHistoryRows).toString(): StaffRemarkHistoryRows.fromJson,
  1722. (StaffReportVNEntity).toString(): StaffReportVNEntity.fromJson,
  1723. (StaffRequestReportEntity).toString(): StaffRequestReportEntity.fromJson,
  1724. (StaffReviewHistorySGEntity).toString(): StaffReviewHistorySGEntity
  1725. .fromJson,
  1726. (StaffReviewHistorySGReviews).toString(): StaffReviewHistorySGReviews
  1727. .fromJson,
  1728. (SwitchProjectEntity).toString(): SwitchProjectEntity.fromJson,
  1729. (SwitchProjectUserList).toString(): SwitchProjectUserList.fromJson,
  1730. (THAppliedEditEntity).toString(): THAppliedEditEntity.fromJson,
  1731. (THAppliedEditApplied).toString(): THAppliedEditApplied.fromJson,
  1732. (THAppliedEmployeeEntity).toString(): THAppliedEmployeeEntity.fromJson,
  1733. (THAppliedEmployeeRows).toString(): THAppliedEmployeeRows.fromJson,
  1734. (THAppliedIndexEntity).toString(): THAppliedIndexEntity.fromJson,
  1735. (THAppliedIndexJob).toString(): THAppliedIndexJob.fromJson,
  1736. (THAppliedTableEntity).toString(): THAppliedTableEntity.fromJson,
  1737. (THAppliedTableRows).toString(): THAppliedTableRows.fromJson,
  1738. (THAppliedTableCheckInOut).toString(): THAppliedTableCheckInOut.fromJson,
  1739. (THEmployeeDetailEntity).toString(): THEmployeeDetailEntity.fromJson,
  1740. (THEmployeeDetailStaff).toString(): THEmployeeDetailStaff.fromJson,
  1741. (THEmployeeDetailReviews).toString(): THEmployeeDetailReviews.fromJson,
  1742. (THEmployeeRemarksEntity).toString(): THEmployeeRemarksEntity.fromJson,
  1743. (THEmployeeRemarksReviews).toString(): THEmployeeRemarksReviews.fromJson,
  1744. (THOAAttachmentEntity).toString(): THOAAttachmentEntity.fromJson,
  1745. (THOAAttachmentRows).toString(): THOAAttachmentRows.fromJson,
  1746. (THOALabourDetailEntity).toString(): THOALabourDetailEntity.fromJson,
  1747. (THOALabourDetailLabourRequest).toString(): THOALabourDetailLabourRequest
  1748. .fromJson,
  1749. (THOALabourReviewTableEntity).toString(): THOALabourReviewTableEntity
  1750. .fromJson,
  1751. (THOALabourReviewTableRows).toString(): THOALabourReviewTableRows.fromJson,
  1752. (THOALabourTableEntity).toString(): THOALabourTableEntity.fromJson,
  1753. (THOALabourTableRows).toString(): THOALabourTableRows.fromJson,
  1754. (THUploadFileEntity).toString(): THUploadFileEntity.fromJson,
  1755. (UKAttendanceEntity).toString(): UKAttendanceEntity.fromJson,
  1756. (UKAttendanceRows).toString(): UKAttendanceRows.fromJson,
  1757. (UKAttendanceInOut).toString(): UKAttendanceInOut.fromJson,
  1758. (UKReportAttendanceEntity).toString(): UKReportAttendanceEntity.fromJson,
  1759. (UKReportAttendanceRows).toString(): UKReportAttendanceRows.fromJson,
  1760. (UKReportLabourEntity).toString(): UKReportLabourEntity.fromJson,
  1761. (UKReportLabourRows).toString(): UKReportLabourRows.fromJson,
  1762. (UKReportWorkingHoursEntity).toString(): UKReportWorkingHoursEntity
  1763. .fromJson,
  1764. (UKReportWorkingHoursRows).toString(): UKReportWorkingHoursRows.fromJson,
  1765. (UKSecurityAttendanceEntity).toString(): UKSecurityAttendanceEntity
  1766. .fromJson,
  1767. (UKSecurityAttendanceRows).toString(): UKSecurityAttendanceRows.fromJson,
  1768. (UKSecurityInOut).toString(): UKSecurityInOut.fromJson,
  1769. (UKSecurityAttendanceOptionEntity)
  1770. .toString(): UKSecurityAttendanceOptionEntity.fromJson,
  1771. (UKSecurityAttendanceOptionFilter)
  1772. .toString(): UKSecurityAttendanceOptionFilter.fromJson,
  1773. (UkAttendanceReviewEntity).toString(): UkAttendanceReviewEntity.fromJson,
  1774. (UkAttendanceReviewRows).toString(): UkAttendanceReviewRows.fromJson,
  1775. (UkAttendanceReviewRemarkEntity).toString(): UkAttendanceReviewRemarkEntity
  1776. .fromJson,
  1777. (UkJobAppliedReviseAddDetailEntity)
  1778. .toString(): UkJobAppliedReviseAddDetailEntity.fromJson,
  1779. (UkJobAppliedReviseAddDetailApplied)
  1780. .toString(): UkJobAppliedReviseAddDetailApplied.fromJson,
  1781. (UkJobAppliedReviseEditDetailEntity)
  1782. .toString(): UkJobAppliedReviseEditDetailEntity.fromJson,
  1783. (UkJobAppliedReviseEditDetailApplied)
  1784. .toString(): UkJobAppliedReviseEditDetailApplied.fromJson,
  1785. (UkJobAppliedReviseEditDetailRevise)
  1786. .toString(): UkJobAppliedReviseEditDetailRevise.fromJson,
  1787. (UkJobAppliedReviseEditDetailReviseApplied)
  1788. .toString(): UkJobAppliedReviseEditDetailReviseApplied.fromJson,
  1789. (UkJobAppliedReviseInfoEntity).toString(): UkJobAppliedReviseInfoEntity
  1790. .fromJson,
  1791. (UkJobAppliedReviseInfoRows).toString(): UkJobAppliedReviseInfoRows
  1792. .fromJson,
  1793. (UkJobAppliedReviseLogEntity).toString(): UkJobAppliedReviseLogEntity
  1794. .fromJson,
  1795. (UkJobAppliedReviseLogRecords).toString(): UkJobAppliedReviseLogRecords
  1796. .fromJson,
  1797. (UkJobAppliedReviseLogRecordsContent)
  1798. .toString(): UkJobAppliedReviseLogRecordsContent.fromJson,
  1799. (UkJobAppliedReviseLogRecordsContentReviseHours)
  1800. .toString(): UkJobAppliedReviseLogRecordsContentReviseHours.fromJson,
  1801. (UkJobAppliedReviseLogRecordsContentStatus)
  1802. .toString(): UkJobAppliedReviseLogRecordsContentStatus.fromJson,
  1803. (UkJobAppliedReviseLogRecordsContentReason)
  1804. .toString(): UkJobAppliedReviseLogRecordsContentReason.fromJson,
  1805. (UkJobAppliedStaffListEntity).toString(): UkJobAppliedStaffListEntity
  1806. .fromJson,
  1807. (UkJobAppliedStaffListRows).toString(): UkJobAppliedStaffListRows.fromJson,
  1808. (UkJobAppliedStaffListRowsSecurityIn)
  1809. .toString(): UkJobAppliedStaffListRowsSecurityIn.fromJson,
  1810. (UkJobAppliedStaffListRowsSecurityOut)
  1811. .toString(): UkJobAppliedStaffListRowsSecurityOut.fromJson,
  1812. (UkJobAppliedStaffListRowsWorkIn)
  1813. .toString(): UkJobAppliedStaffListRowsWorkIn.fromJson,
  1814. (UkJobAppliedStaffListRowsWorkOut)
  1815. .toString(): UkJobAppliedStaffListRowsWorkOut.fromJson,
  1816. (UkJobListAppliedStaffSearchEntity)
  1817. .toString(): UkJobListAppliedStaffSearchEntity.fromJson,
  1818. (UkJobListAppliedStaffSearchRows)
  1819. .toString(): UkJobListAppliedStaffSearchRows.fromJson,
  1820. (UkJobTemplateDetailBySelectTitleEntity)
  1821. .toString(): UkJobTemplateDetailBySelectTitleEntity.fromJson,
  1822. (UkLabReqShowTemplateEntity).toString(): UkLabReqShowTemplateEntity
  1823. .fromJson,
  1824. (UkLabourRequestDetailEntity).toString(): UkLabourRequestDetailEntity
  1825. .fromJson,
  1826. (UkLabourRequestDetailCertificateList)
  1827. .toString(): UkLabourRequestDetailCertificateList.fromJson,
  1828. (UkLabourRequestDetailVehicleList)
  1829. .toString(): UkLabourRequestDetailVehicleList.fromJson,
  1830. (UkLabourRequestDetailChallenge25List)
  1831. .toString(): UkLabourRequestDetailChallenge25List.fromJson,
  1832. (UkLabourRequestDetailLocationList)
  1833. .toString(): UkLabourRequestDetailLocationList.fromJson,
  1834. (UkLabourRequestDetailTemplateList)
  1835. .toString(): UkLabourRequestDetailTemplateList.fromJson,
  1836. (UkLabourRequestDetailDepartmentList)
  1837. .toString(): UkLabourRequestDetailDepartmentList.fromJson,
  1838. (UkLabourRequestDetailChargeList)
  1839. .toString(): UkLabourRequestDetailChargeList.fromJson,
  1840. (UkLabourRequestDetailEmploymentList)
  1841. .toString(): UkLabourRequestDetailEmploymentList.fromJson,
  1842. (UkLabourRequestPreselectAddstaffListEntity)
  1843. .toString(): UkLabourRequestPreselectAddstaffListEntity.fromJson,
  1844. (UkLabourRequestPreselectAddstaffListRows)
  1845. .toString(): UkLabourRequestPreselectAddstaffListRows.fromJson,
  1846. (UkLabourRequestPreselectedListEntity)
  1847. .toString(): UkLabourRequestPreselectedListEntity.fromJson,
  1848. (UkLabourRequestPreselectedListRows)
  1849. .toString(): UkLabourRequestPreselectedListRows.fromJson,
  1850. (UkLabourRequestReviewDetailEntity)
  1851. .toString(): UkLabourRequestReviewDetailEntity.fromJson,
  1852. (UkLabourRequestReviewDetailOrder)
  1853. .toString(): UkLabourRequestReviewDetailOrder.fromJson,
  1854. (UkLabourRequestReviewDetailOrderRequest)
  1855. .toString(): UkLabourRequestReviewDetailOrderRequest.fromJson,
  1856. (UkLabourRequestReviewDetailOrderRecords)
  1857. .toString(): UkLabourRequestReviewDetailOrderRecords.fromJson,
  1858. (UkLabourRequestReviewDetailRecords)
  1859. .toString(): UkLabourRequestReviewDetailRecords.fromJson,
  1860. (UkLabourRequestReviewListEntity)
  1861. .toString(): UkLabourRequestReviewListEntity.fromJson,
  1862. (UkLabourRequestReviewListRows).toString(): UkLabourRequestReviewListRows
  1863. .fromJson,
  1864. (UkLabourRequestTableEntity).toString(): UkLabourRequestTableEntity
  1865. .fromJson,
  1866. (UkLabourRequestTableRows).toString(): UkLabourRequestTableRows.fromJson,
  1867. (UkLabourReviewStatusEntity).toString(): UkLabourReviewStatusEntity
  1868. .fromJson,
  1869. (UkLabourReviewStatusRow).toString(): UkLabourReviewStatusRow.fromJson,
  1870. (UkLabourReviewStatusRecords).toString(): UkLabourReviewStatusRecords
  1871. .fromJson,
  1872. (UkReportCasualEntity).toString(): UkReportCasualEntity.fromJson,
  1873. (UkReportCasualRows).toString(): UkReportCasualRows.fromJson,
  1874. (UkReportCasualTotal).toString(): UkReportCasualTotal.fromJson,
  1875. (UkReportCasualPayEntity).toString(): UkReportCasualPayEntity.fromJson,
  1876. (UkReportCasualPayRows).toString(): UkReportCasualPayRows.fromJson,
  1877. (UkReportCasualPayTotal).toString(): UkReportCasualPayTotal.fromJson,
  1878. (UkReportOutletEntity).toString(): UkReportOutletEntity.fromJson,
  1879. (UkReportOutletRequestList).toString(): UkReportOutletRequestList.fromJson,
  1880. (UkStaffDetailEntity).toString(): UkStaffDetailEntity.fromJson,
  1881. (UkStaffDetailCertificates).toString(): UkStaffDetailCertificates.fromJson,
  1882. (UkStaffLabourHistoryEntity).toString(): UkStaffLabourHistoryEntity
  1883. .fromJson,
  1884. (UkStaffLabourHistoryRows).toString(): UkStaffLabourHistoryRows.fromJson,
  1885. (UkStaffLabourHistoryRowsSecurityIn)
  1886. .toString(): UkStaffLabourHistoryRowsSecurityIn.fromJson,
  1887. (UkStaffLabourHistoryRowsSecurityOut)
  1888. .toString(): UkStaffLabourHistoryRowsSecurityOut.fromJson,
  1889. (UkStaffLabourHistoryRowsWorkIn).toString(): UkStaffLabourHistoryRowsWorkIn
  1890. .fromJson,
  1891. (UkStaffLabourHistoryRowsWorkOut)
  1892. .toString(): UkStaffLabourHistoryRowsWorkOut.fromJson,
  1893. (UkTemplateDetailEntity).toString(): UkTemplateDetailEntity.fromJson,
  1894. (UkTemplateDetailRow).toString(): UkTemplateDetailRow.fromJson,
  1895. (UkTemplateDetailTitleList).toString(): UkTemplateDetailTitleList.fromJson,
  1896. (UkTemplateDetailCertificateList)
  1897. .toString(): UkTemplateDetailCertificateList.fromJson,
  1898. (UkTemplateDetailVehicleList).toString(): UkTemplateDetailVehicleList
  1899. .fromJson,
  1900. (UkTemplateDetailChallenge25List)
  1901. .toString(): UkTemplateDetailChallenge25List.fromJson,
  1902. (UkTemplateDetailIndexEntity).toString(): UkTemplateDetailIndexEntity
  1903. .fromJson,
  1904. (UkTemplateDetailIndexCertificateList)
  1905. .toString(): UkTemplateDetailIndexCertificateList.fromJson,
  1906. (UkTemplateDetailIndexVehicleList)
  1907. .toString(): UkTemplateDetailIndexVehicleList.fromJson,
  1908. (UkTemplateDetailIndexChallenge25List)
  1909. .toString(): UkTemplateDetailIndexChallenge25List.fromJson,
  1910. (UkTemplateTableEntity).toString(): UkTemplateTableEntity.fromJson,
  1911. (UkTemplateTableRows).toString(): UkTemplateTableRows.fromJson,
  1912. (UkTemplateTitleOptionEntity).toString(): UkTemplateTitleOptionEntity
  1913. .fromJson,
  1914. (ServerTime).toString(): ServerTime.fromJson,
  1915. };
  1916. bool containsKey(String type) {
  1917. return convertFuncMap.containsKey(type);
  1918. }
  1919. JsonConvertFunction? operator [](String key) {
  1920. return convertFuncMap[key];
  1921. }
  1922. }