Commit 8acd040a authored by 姬鋆屾's avatar 姬鋆屾
parents 25048b0d bcd09ec4
...@@ -223,6 +223,8 @@ public class AttendanceStatEntity extends AttendanceStatVo { ...@@ -223,6 +223,8 @@ public class AttendanceStatEntity extends AttendanceStatVo {
* 手机号码 * 手机号码
*/ */
private String phoneNumer; private String phoneNumer;
@Excel(name = "应到天数")
private Integer workDays;
/** /**
* 出勤天数 * 出勤天数
*/ */
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
s.deptId, s.deptId,
s.deptName, s.deptName,
s.phoneNumer, s.phoneNumer,
count(1) as workDays,
ROUND(IFNULL(sum(s.goTimes),0)/count(1),4) as attendanceRate, ROUND(IFNULL(sum(s.goTimes),0)/count(1),4) as attendanceRate,
sum(s.goTimes) AS goTimes, sum(s.goTimes) AS goTimes,
sum(s.morningTimes) AS morningTimes, sum(s.morningTimes) AS morningTimes,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment