| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- package com.xcgl.reports.dto;
- import org.jeecgframework.poi.excel.annotation.Excel;
- public class ActivitiOvertimeSumDto {
- @Excel(name="员工姓名",width = 30)
- private String realName;
-
- private String id;
-
- @Excel(name="月度",width = 30)
- private String month;
-
- private String day;
-
- @Excel(name="逾期数量",width = 30)
- private int overtimetotal;
-
- private String username;
- public String getRealName() {
- return realName;
- }
- public void setRealName(String realName) {
- this.realName = realName;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getMonth() {
- return month;
- }
- public void setMonth(String month) {
- this.month = month;
- }
- public String getDay() {
- return day;
- }
- public void setDay(String day) {
- this.day = day;
- }
- public int getOvertimetotal() {
- return overtimetotal;
- }
- public void setOvertimetotal(int overtimetotal) {
- this.overtimetotal = overtimetotal;
- }
- public String getUsername() {
- return username;
- }
- public void setUsername(String username) {
- this.username = username;
- }
- }
|