Commit a009fd63 authored by 赵啸非's avatar 赵啸非

Merge remote-tracking branch 'origin/master'

parents 6c18fb85 7596b3ef
...@@ -23,7 +23,7 @@ public class AttendanceStatEntity extends AttendanceStatVo { ...@@ -23,7 +23,7 @@ public class AttendanceStatEntity extends AttendanceStatVo {
/** /**
* 窗口类别 * 窗口类别
*/ */
@Excel(name = "窗口类别") //@Excel(name = "窗口类别")
private String windowCategory; private String windowCategory;
/** /**
* 员工ID * 员工ID
...@@ -34,6 +34,15 @@ public class AttendanceStatEntity extends AttendanceStatVo { ...@@ -34,6 +34,15 @@ public class AttendanceStatEntity extends AttendanceStatVo {
*/ */
@Excel(name = "员工姓名") @Excel(name = "员工姓名")
private String staffName; private String staffName;
/**
* 所属大厅
*/
private Long salaId;
/**
* 所属大厅名称
*/
@Excel(name = "所属大厅")
private String salaName;
/** /**
* 所属部门 * 所属部门
*/ */
...@@ -241,15 +250,7 @@ public class AttendanceStatEntity extends AttendanceStatVo { ...@@ -241,15 +250,7 @@ public class AttendanceStatEntity extends AttendanceStatVo {
*/ */
@Excel(name = "陪产假") @Excel(name = "陪产假")
private BigDecimal paternityLeaveDays; private BigDecimal paternityLeaveDays;
/**
* 所属大厅
*/
private Long salaId;
/**
* 所属大厅名称
*/
@Excel(name = "所属大厅")
private String salaName;
@Override @Override
public int hashCode() { public int hashCode() {
......
...@@ -64,10 +64,12 @@ ...@@ -64,10 +64,12 @@
</foreach> </foreach>
</if> </if>
GROUP BY GROUP BY
s.staffId, s.salaId,
s.staffName, s.salaName,
s.deptId, s.deptId,
s.deptName, s.deptName,
s.staffId,
s.staffName,
s.phoneNumer s.phoneNumer
) AS a ) AS a
</select> </select>
...@@ -133,10 +135,12 @@ ...@@ -133,10 +135,12 @@
</foreach> </foreach>
</if> </if>
GROUP BY GROUP BY
s.staffId, s.salaId,
s.staffName, s.salaName,
s.deptId, s.deptId,
s.deptName, s.deptName,
s.staffId,
s.staffName,
s.phoneNumer s.phoneNumer
) AS a ) AS a
</select> </select>
......
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