ClockOnDto.java 976 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package com.boman.domain.dto;
  2. import lombok.Data;
  3. /**
  4. * @author shiqian
  5. * @date 2021年06月16日 10:12
  6. **/
  7. public class ClockOnDto {
  8. /** 1(上班打卡) 2(下班打卡) **/
  9. private int type;
  10. /** attendance_table 考勤表 **/
  11. private String tableName;
  12. /** 经度**/
  13. private String longitude;
  14. /** 纬度 **/
  15. private String latitude;
  16. public int getType() {
  17. return type;
  18. }
  19. public void setType(int type) {
  20. this.type = type;
  21. }
  22. public String getTableName() {
  23. return tableName;
  24. }
  25. public void setTableName(String tableName) {
  26. this.tableName = tableName;
  27. }
  28. public String getLongitude() {
  29. return longitude;
  30. }
  31. public void setLongitude(String longitude) {
  32. this.longitude = longitude;
  33. }
  34. public String getLatitude() {
  35. return latitude;
  36. }
  37. public void setLatitude(String latitude) {
  38. this.latitude = latitude;
  39. }
  40. }