attendence records, extra hours , rewards and punishment funnctionality have been added
This commit is contained in:
16
lib/domain/models/overtime_model.dart
Normal file
16
lib/domain/models/overtime_model.dart
Normal file
@@ -0,0 +1,16 @@
|
||||
import 'finance_record.dart';
|
||||
|
||||
class OvertimeModel extends FinanceRecord {
|
||||
final double hours;
|
||||
final double hourlyRateAtTheTime;
|
||||
final double totalAmount;
|
||||
|
||||
OvertimeModel({
|
||||
required super.id,
|
||||
required super.employeeId,
|
||||
super.date,
|
||||
required this.hours,
|
||||
required this.hourlyRateAtTheTime,
|
||||
required this.totalAmount,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user