2023-09-15 16:04:11 +08:00
|
|
|
|
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
|
|
|
|
|
|
import 'checkingInSetHolidays_entity.dart';
|
|
|
|
|
|
|
|
|
|
class CheckingInSetHolidaysState{
|
|
|
|
|
|
|
|
|
|
CheckingInSetHolidaysState() {
|
|
|
|
|
Map map = Get.arguments;
|
2024-06-07 10:53:24 +08:00
|
|
|
companyId.value = map['companyId'];
|
2023-09-15 16:04:11 +08:00
|
|
|
}
|
2024-06-07 10:53:24 +08:00
|
|
|
final RxString companyId = ''.obs;
|
|
|
|
|
final RxString mouth = ''.obs;
|
|
|
|
|
final RxInt selectYear = DateTime.now().year.obs;
|
|
|
|
|
final RxList<HolidaysMonthListData> holidaysListData = <HolidaysMonthListData>[].obs;
|
2023-09-15 16:04:11 +08:00
|
|
|
|
2024-01-23 17:48:06 +08:00
|
|
|
}
|