OutPublicStatistics.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package com.goafanti.weChat.bo;
  2. import com.goafanti.common.utils.excel.Excel;
  3. public class OutPublicStatistics {
  4. @Excel(name = "公出人员")
  5. private String name;
  6. private String aid;
  7. @Excel(name = "非公出协单次数")
  8. private Integer xds;
  9. @Excel(name = "公出次数")
  10. private Integer tg;
  11. @Excel(name = "打卡次数")
  12. private Integer dk;
  13. @Excel(name = "总时长")
  14. private Double duration;
  15. @Excel(name = "未审核次数")
  16. private Integer wsh;
  17. @Excel(name = "驳回次数")
  18. private Integer bh;
  19. public Integer getXds() {
  20. return xds;
  21. }
  22. public void setXds(Integer xds) {
  23. this.xds = xds;
  24. }
  25. public Integer getDk() {
  26. return dk;
  27. }
  28. public void setDk(Integer dk) {
  29. this.dk = dk;
  30. }
  31. public Integer getBh() {
  32. return bh;
  33. }
  34. public void setBh(Integer bh) {
  35. this.bh = bh;
  36. }
  37. public Integer getWsh() {
  38. return wsh;
  39. }
  40. public void setWsh(Integer wsh) {
  41. this.wsh = wsh;
  42. }
  43. public Integer getTg() {
  44. return tg;
  45. }
  46. public void setTg(Integer tg) {
  47. this.tg = tg;
  48. }
  49. public String getName() {
  50. return name;
  51. }
  52. public void setName(String name) {
  53. this.name = name;
  54. }
  55. public Double getDuration() {
  56. return duration;
  57. }
  58. public void setDuration(Double duration) {
  59. this.duration = duration;
  60. }
  61. public String getAid() {
  62. return aid;
  63. }
  64. public void setAid(String aid) {
  65. this.aid = aid;
  66. }
  67. }