AtAttendanceResultForOpenVo.php 887 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. /**
  3. * 打卡结果list
  4. * @author auto create
  5. */
  6. class AtAttendanceResultForOpenVo
  7. {
  8. /**
  9. * 打卡类型 上班还是下班
  10. **/
  11. public $check_type;
  12. /**
  13. * 班次id
  14. **/
  15. public $class_id;
  16. /**
  17. * 考勤组id
  18. **/
  19. public $group_id;
  20. /**
  21. * 定位方法
  22. **/
  23. public $location_method;
  24. /**
  25. * 定位结果
  26. **/
  27. public $location_result;
  28. /**
  29. * 外勤备注
  30. **/
  31. public $outside_remark;
  32. /**
  33. * 标准打卡时间
  34. **/
  35. public $plan_check_time;
  36. /**
  37. * 排班id
  38. **/
  39. public $plan_id;
  40. /**
  41. * 审批单id
  42. **/
  43. public $proc_inst_id;
  44. /**
  45. * 打卡流水id
  46. **/
  47. public $record_id;
  48. /**
  49. * 打卡来源
  50. **/
  51. public $source_type;
  52. /**
  53. * 打卡的时间结果
  54. **/
  55. public $time_result;
  56. /**
  57. * 用户打卡地址
  58. **/
  59. public $user_address;
  60. /**
  61. * 用户打卡时间
  62. **/
  63. public $user_check_time;
  64. }
  65. ?>