123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- import 'package:domain/generated/json/base/json_convert_content.dart';
- import 'package:domain/entity/response/attendance_review_entity.dart';
- AttendanceReviewEntity $AttendanceReviewEntityFromJson(Map<String, dynamic> json) {
- final AttendanceReviewEntity attendanceReviewEntity = AttendanceReviewEntity();
- final int? total = jsonConvert.convert<int>(json['total']);
- if (total != null) {
- attendanceReviewEntity.total = total;
- }
- final List<AttendanceReviewRows>? rows = (json['rows'] as List<dynamic>?)?.map(
- (e) => jsonConvert.convert<AttendanceReviewRows>(e) as AttendanceReviewRows).toList();
- if (rows != null) {
- attendanceReviewEntity.rows = rows;
- }
- return attendanceReviewEntity;
- }
- Map<String, dynamic> $AttendanceReviewEntityToJson(AttendanceReviewEntity entity) {
- final Map<String, dynamic> data = <String, dynamic>{};
- data['total'] = entity.total;
- data['rows'] = entity.rows.map((v) => v.toJson()).toList();
- return data;
- }
- extension AttendanceReviewEntityExtension on AttendanceReviewEntity {
- AttendanceReviewEntity copyWith({
- int? total,
- List<AttendanceReviewRows>? rows,
- }) {
- return AttendanceReviewEntity()
- ..total = total ?? this.total
- ..rows = rows ?? this.rows;
- }
- }
- AttendanceReviewRows $AttendanceReviewRowsFromJson(Map<String, dynamic> json) {
- final AttendanceReviewRows attendanceReviewRows = AttendanceReviewRows();
- final String? recordId = jsonConvert.convert<String>(json['record_id']);
- if (recordId != null) {
- attendanceReviewRows.recordId = recordId;
- }
- final String? orderId = jsonConvert.convert<String>(json['order_id']);
- if (orderId != null) {
- attendanceReviewRows.orderId = orderId;
- }
- final String? appliedId = jsonConvert.convert<String>(json['applied_id']);
- if (appliedId != null) {
- attendanceReviewRows.appliedId = appliedId;
- }
- final String? staffName = jsonConvert.convert<String>(json['staff_name']);
- if (staffName != null) {
- attendanceReviewRows.staffName = staffName;
- }
- final String? jobTitle = jsonConvert.convert<String>(json['job_title']);
- if (jobTitle != null) {
- attendanceReviewRows.jobTitle = jobTitle;
- }
- final String? departmentName = jsonConvert.convert<String>(json['department_name']);
- if (departmentName != null) {
- attendanceReviewRows.departmentName = departmentName;
- }
- final String? jobTime = jsonConvert.convert<String>(json['job_time']);
- if (jobTime != null) {
- attendanceReviewRows.jobTime = jobTime;
- }
- final String? statusShow = jsonConvert.convert<String>(json['status_show']);
- if (statusShow != null) {
- attendanceReviewRows.statusShow = statusShow;
- }
- final String? adjustShow = jsonConvert.convert<String>(json['adjust_show']);
- if (adjustShow != null) {
- attendanceReviewRows.adjustShow = adjustShow;
- }
- final String? totalShow = jsonConvert.convert<String>(json['total_show']);
- if (totalShow != null) {
- attendanceReviewRows.totalShow = totalShow;
- }
- final String? clockIn = jsonConvert.convert<String>(json['clock_in']);
- if (clockIn != null) {
- attendanceReviewRows.clockIn = clockIn;
- }
- final int? inClass = jsonConvert.convert<int>(json['in_class']);
- if (inClass != null) {
- attendanceReviewRows.inClass = inClass;
- }
- final String? clockOut = jsonConvert.convert<String>(json['clock_out']);
- if (clockOut != null) {
- attendanceReviewRows.clockOut = clockOut;
- }
- final int? outClass = jsonConvert.convert<int>(json['out_class']);
- if (outClass != null) {
- attendanceReviewRows.outClass = outClass;
- }
- final String? createdAt = jsonConvert.convert<String>(json['created_at']);
- if (createdAt != null) {
- attendanceReviewRows.createdAt = createdAt;
- }
- final int? hasReason = jsonConvert.convert<int>(json['has_reason']);
- if (hasReason != null) {
- attendanceReviewRows.hasReason = hasReason;
- }
- final bool? isSelected = jsonConvert.convert<bool>(json['isSelected']);
- if (isSelected != null) {
- attendanceReviewRows.isSelected = isSelected;
- }
- return attendanceReviewRows;
- }
- Map<String, dynamic> $AttendanceReviewRowsToJson(AttendanceReviewRows entity) {
- final Map<String, dynamic> data = <String, dynamic>{};
- data['record_id'] = entity.recordId;
- data['order_id'] = entity.orderId;
- data['applied_id'] = entity.appliedId;
- data['staff_name'] = entity.staffName;
- data['job_title'] = entity.jobTitle;
- data['department_name'] = entity.departmentName;
- data['job_time'] = entity.jobTime;
- data['status_show'] = entity.statusShow;
- data['adjust_show'] = entity.adjustShow;
- data['total_show'] = entity.totalShow;
- data['clock_in'] = entity.clockIn;
- data['in_class'] = entity.inClass;
- data['clock_out'] = entity.clockOut;
- data['out_class'] = entity.outClass;
- data['created_at'] = entity.createdAt;
- data['has_reason'] = entity.hasReason;
- data['isSelected'] = entity.isSelected;
- return data;
- }
- extension AttendanceReviewRowsExtension on AttendanceReviewRows {
- AttendanceReviewRows copyWith({
- String? recordId,
- String? orderId,
- String? appliedId,
- String? staffName,
- String? jobTitle,
- String? departmentName,
- String? jobTime,
- String? statusShow,
- String? adjustShow,
- String? totalShow,
- String? clockIn,
- int? inClass,
- String? clockOut,
- int? outClass,
- String? createdAt,
- int? hasReason,
- bool? isSelected,
- }) {
- return AttendanceReviewRows()
- ..recordId = recordId ?? this.recordId
- ..orderId = orderId ?? this.orderId
- ..appliedId = appliedId ?? this.appliedId
- ..staffName = staffName ?? this.staffName
- ..jobTitle = jobTitle ?? this.jobTitle
- ..departmentName = departmentName ?? this.departmentName
- ..jobTime = jobTime ?? this.jobTime
- ..statusShow = statusShow ?? this.statusShow
- ..adjustShow = adjustShow ?? this.adjustShow
- ..totalShow = totalShow ?? this.totalShow
- ..clockIn = clockIn ?? this.clockIn
- ..inClass = inClass ?? this.inClass
- ..clockOut = clockOut ?? this.clockOut
- ..outClass = outClass ?? this.outClass
- ..createdAt = createdAt ?? this.createdAt
- ..hasReason = hasReason ?? this.hasReason
- ..isSelected = isSelected ?? this.isSelected;
- }
- }
|