ActivitiOvertimeDto.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package com.xcgl.reports.dto;
  2. import java.util.Date;
  3. import org.jeecgframework.poi.excel.annotation.Excel;
  4. public class ActivitiOvertimeDto {
  5. @Excel(name="员工姓名",width = 20)
  6. private String realName;
  7. @Excel(name="签报分类",width = 70)
  8. private String title;
  9. @Excel(name="签报发起项目处",width = 30)
  10. private String departname;
  11. @Excel(name="签报提交时间",width = 30,format = "yyyy-MM-dd hh:mm:ss")
  12. private Date starttime;
  13. @Excel(name="到当前审批人的开始时间",width = 30,format = "yyyy-MM-dd hh:mm:ss")
  14. private Date ustarttime;
  15. private Date shouldDoneTime;
  16. public String getRealName() {
  17. return realName;
  18. }
  19. public void setRealName(String realName) {
  20. this.realName = realName;
  21. }
  22. public String getTitle() {
  23. return title;
  24. }
  25. public void setTitle(String title) {
  26. this.title = title;
  27. }
  28. public Date getShouldDoneTime() {
  29. return shouldDoneTime;
  30. }
  31. public void setShouldDoneTime(Date shouldDoneTime) {
  32. this.shouldDoneTime = shouldDoneTime;
  33. }
  34. public String getDepartname() {
  35. return departname;
  36. }
  37. public void setDepartname(String departname) {
  38. this.departname = departname;
  39. }
  40. public Date getStarttime() {
  41. return starttime;
  42. }
  43. public void setStarttime(Date starttime) {
  44. this.starttime = starttime;
  45. }
  46. public Date getUstarttime() {
  47. return ustarttime;
  48. }
  49. public void setUstarttime(Date ustarttime) {
  50. this.ustarttime = ustarttime;
  51. }
  52. }