| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package com.xcgl.reports.dto;
- import java.util.Date;
- import org.jeecgframework.poi.excel.annotation.Excel;
- public class ActivitiOvertimeDto {
- @Excel(name="员工姓名",width = 20)
- private String realName;
-
- @Excel(name="签报分类",width = 70)
- private String title;
-
- @Excel(name="签报发起项目处",width = 30)
- private String departname;
-
- @Excel(name="签报提交时间",width = 30,format = "yyyy-MM-dd hh:mm:ss")
- private Date starttime;
-
- @Excel(name="到当前审批人的开始时间",width = 30,format = "yyyy-MM-dd hh:mm:ss")
- private Date ustarttime;
-
- private Date shouldDoneTime;
- public String getRealName() {
- return realName;
- }
- public void setRealName(String realName) {
- this.realName = realName;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public Date getShouldDoneTime() {
- return shouldDoneTime;
- }
- public void setShouldDoneTime(Date shouldDoneTime) {
- this.shouldDoneTime = shouldDoneTime;
- }
- public String getDepartname() {
- return departname;
- }
- public void setDepartname(String departname) {
- this.departname = departname;
- }
- public Date getStarttime() {
- return starttime;
- }
- public void setStarttime(Date starttime) {
- this.starttime = starttime;
- }
-
- public Date getUstarttime() {
- return ustarttime;
- }
- public void setUstarttime(Date ustarttime) {
- this.ustarttime = ustarttime;
- }
- }
|