TimeTable constructor

TimeTable({
  1. int? timeTableId,
  2. String? name,
  3. String? onDutyTime,
  4. String? offDutyTime,
  5. int? lateTime,
  6. int? leavedEarly,
  7. String? beginningIn,
  8. String? endingIn,
  9. String? beginingOut,
  10. String? endingOut,
  11. int? countWork,
  12. int? countMinute,
  13. String? note,
  14. String? userAdd,
  15. String? userEdit,
  16. String? dateAdd,
  17. String? dateEdit,
  18. int? timetableRangeId,
})

Implementation

TimeTable({
  this.timeTableId,
  this.name,
  this.onDutyTime,
  this.offDutyTime,
  this.lateTime,
  this.leavedEarly,
  this.beginningIn,
  this.endingIn,
  this.beginingOut,
  this.endingOut,
  this.countWork,
  this.countMinute,
  this.note,
  this.userAdd,
  this.userEdit,
  this.dateAdd,
  this.dateEdit,
  this.timetableRangeId,
});